1.5.2
This commit is contained in:
parent
5ca845def1
commit
8d80d03bf5
|
@ -25,7 +25,7 @@ UninstallDisplayIcon={app}\SandMan.exe
|
|||
OutputBaseFilename={#MyAppName}-{#MyAppArch}-v{#MyAppVersion}
|
||||
Compression=lzma
|
||||
ArchitecturesAllowed={#MyAppArch}
|
||||
ArchitecturesInstallIn64BitMode=x64
|
||||
ArchitecturesInstallIn64BitMode=x64 arm64
|
||||
AllowNoIcons=yes
|
||||
AlwaysRestart=no
|
||||
LicenseFile=.\license.txt
|
||||
|
|
|
@ -35,6 +35,6 @@ Sandboxie-Plus is made up of the following components, governed under various li
|
|||
* QSbieAPI is a standalone reimplementation of Sandboxie’s API using IPC mechanisms to communicate with Sandboxie’s core components, licensed under the LGPL.
|
||||
* Sandboxie core components, licensed under the GPL v3.
|
||||
* MiscHelpers is a generic Qt-based helper library, licensed under the LGPL.
|
||||
* The Qt Framework, which is licensed under the LGPL.
|
||||
* The Qt Framework, is licensed under the LGPL.
|
||||
* UglobalHotkey is an extension for Qt framework, which implements global hotkeys functionality and is in the Public Domain.
|
||||
* QtSingleApp is a Qt Solutions component that provides support for applications that can be only started once per user, BSD-licensed.
|
||||
|
|
|
@ -238,7 +238,9 @@ BOOLEAN CUpdater::QueryUpdateData(UPDATER_DATA* Context)
|
|||
JSONObject jsonRoot;
|
||||
|
||||
Path.Format(L"/update.php?software=sandboxie&version=%S&system=windows-%d.%d.%d-%s&language=%d&auto=%s", MY_VERSION_STRING,
|
||||
#ifdef _WIN64
|
||||
#ifdef _M_ARM64
|
||||
m_osvi.dwMajorVersion, m_osvi.dwMinorVersion, m_osvi.dwBuildNumber, L"ARM64",
|
||||
#elif _WIN64
|
||||
m_osvi.dwMajorVersion, m_osvi.dwMinorVersion, m_osvi.dwBuildNumber, L"x86_64",
|
||||
#else
|
||||
m_osvi.dwMajorVersion, m_osvi.dwMinorVersion, m_osvi.dwBuildNumber, L"i386",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Copyright 2020 – 2021 David Xanatos (xanasoft.com)
|
||||
Copyright 2020 – 2022 David Xanatos (xanasoft.com)
|
||||
Copyright 2004 – 2020 Sandboxie Holdings, LLC
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
|
|
Loading…
Reference in New Issue