giuspen left a comment (geany/geany-plugins#1466) Hello @techee it is certainly possible to revert a package to a previous version, in fact I have a section of the script of my other project dedicated to it as from time to time it has happened that the latest version of something was causing trouble. The script I am referring to is https://github.com/giuspen/cherrytree/blob/397a0fded658d9a2fec6261f8604100c9c5d7a2e/scripts/msys2_prepare_standalone.sh#L19 and the command to downgrade for geany, that is using mingw64 and not ucrt64: ``` DOWNGRADE_PACKAGE_LOCATION="https://repo.msys2.org/mingw/mingw64" DOWNGRADE_PACKAGE_NAME=""
if [ -n "${DOWNGRADE_PACKAGE_NAME}" ] then wget "${DOWNGRADE_PACKAGE_LOCATION}/${DOWNGRADE_PACKAGE_NAME}" pacman -U --noconfirm ${DOWNGRADE_PACKAGE_NAME} fi ``` Available packages in https://repo.msys2.org/mingw/mingw64/ for cairo: mingw-w64-x86_64-cairo-1.18.0-1-any.pkg.tar.zst mingw-w64-x86_64-cairo-1.18.0-2-any.pkg.tar.zst mingw-w64-x86_64-cairo-1.18.0-3-any.pkg.tar.zst mingw-w64-x86_64-cairo-1.18.2-1-any.pkg.tar.zst mingw-w64-x86_64-cairo-1.18.2-2-any.pkg.tar.zst mingw-w64-x86_64-cairo-1.18.4-1-any.pkg.tar.zst mingw-w64-x86_64-cairo-1.18.4-2-any.pkg.tar.zst -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/issues/1466#issuecomment-3033442975 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany-plugins/issues/1466/3033442...@github.com>