From d458b242eddef8698cedaccf85ac418fb4ef3159 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Fri, 2 Jan 2026 12:50:35 -0300 Subject: [PATCH] meson: Manually fix *DATA_VERSON *PLUGIN_VERSION and *SYSCONF_VERSION for 3.2 This applies the same logic of *DATADIR, *PLUGINDIR and *SYSCONFDIR below. That is because, on the same stable series, minor versions do not coexist. I confirmed that on GIMP 2.8 and 2.10 .exe and .dmg installers from gimp.org. Yet, we don'have anything automated in that regard on the meson.build nor even documented on https://developer.gimp.org/core/maintainer/versioning/. --- meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 36d0f1837a..839fcc8ebb 100644 --- a/meson.build +++ b/meson.build @@ -1597,9 +1597,9 @@ conf.set_quoted('GIMP_APP_VERSION_STRING',gimp_app_version) conf.set_quoted('GIMP_APP_VERSION', gimp_app_version) conf.set_quoted('GIMP_USER_VERSION', gimp_app_version) -conf.set_quoted('GIMP_DATA_VERSION', gimp_app_version) -conf.set_quoted('GIMP_PLUGIN_VERSION', gimp_app_version) -conf.set_quoted('GIMP_SYSCONF_VERSION', gimp_app_version) +conf.set_quoted('GIMP_DATA_VERSION', gimp_api_version) +conf.set_quoted('GIMP_PLUGIN_VERSION', gimp_api_version) +conf.set_quoted('GIMP_SYSCONF_VERSION', gimp_api_version) conf.set_quoted('GIMP_TOOL_VERSION', gimp_app_version) conf.set_quoted('GIMP_PKGCONFIG_VERSION', gimp_api_version)