From 370b1401693ff0795047e997cf6901a27565b528 Mon Sep 17 00:00:00 2001 From: DavidXanatos Date: Wed, 21 Sep 2022 11:54:58 +0200 Subject: [PATCH] 1.3.5 --- CHANGELOG.md | 8 ++++++++ Sandboxie/common/my_version.h | 4 ++-- SandboxiePlus/SandMan/Views/SbieView.cpp | 6 ++++-- SandboxiePlus/SandMan/Views/SbieView.h | 2 +- SandboxiePlus/version.h | 2 +- 5 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cb0afdb..852dbbb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). +## [1.3.5 / 5.58.5] - 2022-09-19 + +### Fixed +- fixed issues with stale data in Sandboxie-Plus.ini [#2248](https://github.com/sandboxie-plus/Sandboxie/pull/2248) (thanks okrc) +- fixed issue with dummy manifests [#2252](https://github.com/sandboxie-plus/Sandboxie/issues/2252) + + + ## [1.3.4 / 5.58.4] - 2022-09-19 diff --git a/Sandboxie/common/my_version.h b/Sandboxie/common/my_version.h index f83a3c72..efb1dd58 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,58,4 -#define MY_VERSION_STRING "5.58.4" +#define MY_VERSION_BINARY 5,58,5 +#define MY_VERSION_STRING "5.58.5" #define MY_VERSION_COMPAT "5.58.0" // this refers to the driver ABI compatibility // These #defines are used by either Resource Compiler or NSIS installer diff --git a/SandboxiePlus/SandMan/Views/SbieView.cpp b/SandboxiePlus/SandMan/Views/SbieView.cpp index 563b29ee..79e46f67 100644 --- a/SandboxiePlus/SandMan/Views/SbieView.cpp +++ b/SandboxiePlus/SandMan/Views/SbieView.cpp @@ -1725,10 +1725,12 @@ void CSbieView::ReloadUserConfig() ClearUserUIConfig(); } -void CSbieView::ClearUserUIConfig(const QMap AllBoxes) { +void CSbieView::ClearUserUIConfig(const QMap AllBoxes) +{ if (!AllBoxes.isEmpty()) { - for (auto I = m_Groups.begin(); I != m_Groups.end(); ++I) { + for (auto I = m_Groups.begin(); I != m_Groups.end(); ++I) + { QStringList Temp = I.value(); foreach(QString Name, I.value()) { if (AllBoxes.contains(Name.toLower()) || m_Groups.keys().contains(Name)) diff --git a/SandboxiePlus/SandMan/Views/SbieView.h b/SandboxiePlus/SandMan/Views/SbieView.h index 98a0e456..937e3239 100644 --- a/SandboxiePlus/SandMan/Views/SbieView.h +++ b/SandboxiePlus/SandMan/Views/SbieView.h @@ -40,7 +40,7 @@ public slots: void Clear(); void Refresh(); void ReloadUserConfig(); - void ClearUserUIConfig(QMap AllBoxes = QMap()); + void ClearUserUIConfig(const QMap AllBoxes = QMap()); void SaveUserConfig(); private slots: diff --git a/SandboxiePlus/version.h b/SandboxiePlus/version.h index d6fa59ef..ef0f2a90 100644 --- a/SandboxiePlus/version.h +++ b/SandboxiePlus/version.h @@ -2,7 +2,7 @@ #define VERSION_MJR 1 #define VERSION_MIN 3 -#define VERSION_REV 4 +#define VERSION_REV 5 #define VERSION_UPD 0 #ifndef STR