Skip to content

Commit

Permalink
1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Oct 28, 2022
1 parent 5ca845d commit 8d80d03
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Installer/Sandboxie-Plus.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Installer/license.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 3 additions & 1 deletion Sandboxie/apps/control/Updater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion Sandboxie/install/LICENSE.TXT
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 8d80d03

Please sign in to comment.