From 29edfc5ae65b67a4e7aa8119771470369aa6d091 Mon Sep 17 00:00:00 2001 From: DavidXanatos Date: Thu, 22 Dec 2022 19:15:37 +0100 Subject: [PATCH] 1.6.3a --- CHANGELOG.md | 6 ++++++ SandboxiePlus/SandMan/SandMan.cpp | 3 +++ SandboxiePlus/version.h | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e22048f2..1ec2deff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). +## [1.6.3a / 5.61.3] - 2022-12-?? + +### Fixed +- fixed issue with auto delete box on sandman start [#2555](https://github.com/sandboxie-plus/Sandboxie/issues/2555) + ## [1.6.3 / 5.61.3] - 2022-12-21 @@ -11,6 +16,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - improved Network Location Awareness template + ## [1.6.2b / 5.61.2] - 2022-12-21 ### Fixed diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp index 138c4c1a..c8e73f1c 100644 --- a/SandboxiePlus/SandMan/SandMan.cpp +++ b/SandboxiePlus/SandMan/SandMan.cpp @@ -1812,6 +1812,8 @@ void CSandMan::OnStatusChanged() // clean up Auto Delete boxes after reboot // + theAPI->UpdateProcesses(false, ShowAllSessions()); + foreach(const CSandBoxPtr& pBox, AllBoxes) { if(pBox->GetActiveProcessCount() == 0) OnBoxClosed(pBox); @@ -1851,6 +1853,7 @@ void CSandMan::OnStatusChanged() m_pRunBoxed->setEnabled(isConnected); m_pNewBox->setEnabled(isConnected); m_pNewGroup->setEnabled(isConnected); + m_pImportBox->setEnabled(isConnected); m_pEmptyAll->setEnabled(isConnected); m_pDisableForce->setEnabled(isConnected); m_pDisableForce2->setEnabled(isConnected); diff --git a/SandboxiePlus/version.h b/SandboxiePlus/version.h index cf3086ab..ad25dd24 100644 --- a/SandboxiePlus/version.h +++ b/SandboxiePlus/version.h @@ -3,7 +3,7 @@ #define VERSION_MJR 1 #define VERSION_MIN 6 #define VERSION_REV 3 -#define VERSION_UPD 0 +#define VERSION_UPD 1 #ifndef STR #define STR2(X) #X