From 94c3f5e35bf9e7c993557f2c9d4e6e5129e9d1df Mon Sep 17 00:00:00 2001 From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com> Date: Fri, 25 Aug 2023 09:51:08 +0200 Subject: [PATCH] 1.11.1 --- CHANGELOG.md | 7 +++++++ Sandboxie/common/my_version.h | 4 ++-- SandboxiePlus/SandMan/Windows/OptionsWindow.cpp | 2 +- SandboxiePlus/version.h | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa85b233..04892fc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). +## [1.11.1 / 5.66.1] - 2023-08-?? + +### Changed +- changed the new optin layout to now be the default for non vintage views (can be changed back in the settings) + + + ## [1.11.0 / 5.66.0] - 2023-08-25 ### Added diff --git a/Sandboxie/common/my_version.h b/Sandboxie/common/my_version.h index 3248035d..f56a863f 100644 --- a/Sandboxie/common/my_version.h +++ b/Sandboxie/common/my_version.h @@ -21,8 +21,8 @@ #ifndef _MY_VERSION_H #define _MY_VERSION_H -#define MY_VERSION_BINARY 5,66,0 -#define MY_VERSION_STRING "5.66.0" +#define MY_VERSION_BINARY 5,66,1 +#define MY_VERSION_STRING "5.66.1" #define MY_ABI_VERSION 0x56500 // These #defines are used by either Resource Compiler or NSIS installer diff --git a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp index 2905e2f9..20559ec8 100644 --- a/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp +++ b/SandboxiePlus/SandMan/Windows/OptionsWindow.cpp @@ -257,7 +257,7 @@ COptionsWindow::COptionsWindow(const QSharedPointer& pBox, const QStri int iViewMode = theConf->GetInt("Options/ViewMode", 1); int iOptionLayout = theConf->GetInt("Options/NewConfigLayout", 2); if (iOptionLayout == 2) - iOptionLayout = 0;// iViewMode != 2 ? 1 : 0; + iOptionLayout = iViewMode != 2 ? 1 : 0; if ((QGuiApplication::queryKeyboardModifiers() & Qt::AltModifier) != 0) iOptionLayout = !iOptionLayout; diff --git a/SandboxiePlus/version.h b/SandboxiePlus/version.h index 849c283b..71573b07 100644 --- a/SandboxiePlus/version.h +++ b/SandboxiePlus/version.h @@ -2,7 +2,7 @@ #define VERSION_MJR 1 #define VERSION_MIN 11 -#define VERSION_REV 0 +#define VERSION_REV 1 #define VERSION_UPD 0 #ifndef STR