Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: GitHub noreply@github.com Date: Sun, 09 Jun 2024 11:27:15 UTC Commit: 299168eaccc185bea584dcab72c8d076a2b171ac https://github.com/geany/geany-plugins/commit/299168eaccc185bea584dcab72c8d0...
Log Message: ----------- Windows: Compile GLib schemas after installation (#1352)
We need Geany 2.1 to have the "glib-compile-schemas" command to be installed.
Modified Paths: -------------- build/geany-plugins.nsi build/gtk-bundle-from-msys2.sh
Modified: build/geany-plugins.nsi 4 lines changed, 3 insertions(+), 1 deletions(-) =================================================================== @@ -41,7 +41,7 @@ Unicode true !define PRODUCT_DIR_REGKEY "Software\Geany-Plugins" !define GEANY_DIR_REGKEY "Software\Geany" ; Geany version should be major.minor only (patch level is ignored for version checking) -!define REQUIRED_GEANY_VERSION "2.0" +!define REQUIRED_GEANY_VERSION "2.1"
;;;;;;;;;;;;;;;;;;;;; ; Version resource ; @@ -152,6 +152,8 @@ Section "Dependencies" SEC04 SectionEnd
Section -Post + Exec '"$INSTDIR\bin\glib-compile-schemas.exe" "$INSTDIR\share\glib-2.0\schemas"' + WriteUninstaller "$INSTDIR\uninst-plugins.exe" WriteRegStr SHCTX "${PRODUCT_DIR_REGKEY}" Path "$INSTDIR" ${if} $Answer == "yes" ; if user is admin
Modified: build/gtk-bundle-from-msys2.sh 1 lines changed, 0 insertions(+), 1 deletions(-) =================================================================== @@ -253,7 +253,6 @@ cleanup_unnecessary_files() { rm -rf share/emacs rm -rf share/GConf rm -rf share/gir-1.0 - rm -rf share/glib-2.0 rm -rf share/gnupg rm -rf share/gtk-doc rm -rf share/info
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).