Merge branch hotfix/v9.2.1 into master

This commit is contained in:
papacarlo
2025-12-25 10:58:41 +00:00
3 changed files with 8 additions and 2 deletions

View File

@ -317,7 +317,7 @@ deb/build/package.config :
mkdir -p $(@D) && echo "package = deb" > $@
$(DEB) : build $(DEB_DEPS)
cd deb/build && dpkg-buildpackage -b -uc -us
cd deb/build && dpkg-buildpackage -b -uc -us -a$(DEB_ARCH)
$(RPM_SUSE) : build rpm-suse/$(PACKAGE_NAME).spec
cd rpm-suse && rpmbuild -bb \

View File

@ -88,7 +88,7 @@ begin
upgradecode := '{DC9BAE42-810B-423A-9E25-E4073F1C7B00}'; //arm64
Result := msiproductupgrade(upgradecode, '14.0.0.0');
Result := msiproductupgrade(upgradecode, '14.32.31332.0');
#else
#ifndef _WIN_XP

View File

@ -112,6 +112,12 @@ void CMainWindowImpl::refreshAboutVersion()
# elif defined(_M_IX86)
_json_obj["arch"] = "x86";
# endif
#else
# if defined(__aarch64__)
_json_obj["arch"] = "arm64";
# elif defined(__x86_64__)
_json_obj["arch"] = "x64";
# endif
#endif
_json_obj["edition"] = _license;