From 362182c40e3ad4c5ed3c093cd7ac108d47e77ba5 Mon Sep 17 00:00:00 2001 From: DavidXanatos Date: Sun, 11 Jul 2021 08:58:07 +0200 Subject: [PATCH] --- CHANGELOG.md | 4 ++++ SandboxiePlus/QSbieAPI/SbieAPI.cpp | 2 +- SandboxiePlus/version.h | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9546d1b8..2648e07c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.8.7b / 5.50.7] - 2021-07-11 + +### Fixed +- fixed issue with boxes that head auto delete acticated introduced in the previouse build ## [0.8.7 / 5.50.7] - 2021-07-10 diff --git a/SandboxiePlus/QSbieAPI/SbieAPI.cpp b/SandboxiePlus/QSbieAPI/SbieAPI.cpp index 886b66e7..0751c622 100644 --- a/SandboxiePlus/QSbieAPI/SbieAPI.cpp +++ b/SandboxiePlus/QSbieAPI/SbieAPI.cpp @@ -1279,7 +1279,7 @@ SB_STATUS CSbieAPI::UpdateProcesses(bool bKeep) foreach(const CSandBoxPtr& pBox, m_SandBoxes) { - bool WasBoxClosed = pBox->m_ActiveProcessCount > 0 && pBox->GetProcessList().count(); + bool WasBoxClosed = pBox->m_ActiveProcessCount > 0 && pBox->GetProcessList().count() == 0; pBox->m_ActiveProcessCount = pBox->GetProcessList().count(); if (WasBoxClosed) { pBox->CloseBox(); diff --git a/SandboxiePlus/version.h b/SandboxiePlus/version.h index ad40b460..8fefea5d 100644 --- a/SandboxiePlus/version.h +++ b/SandboxiePlus/version.h @@ -3,7 +3,7 @@ #define VERSION_MJR 0 #define VERSION_MIN 8 #define VERSION_REV 7 -#define VERSION_UPD 0 +#define VERSION_UPD 2 #ifndef STR #define STR2(X) #X