mirror of
https://github.com/ONLYOFFICE/desktop-apps.git
synced 2026-02-10 18:05:16 +08:00
Merge branch hotfix/v9.2.1 into master
This commit is contained in:
@ -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 \
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user