Skip to content

Commit 362182c

Browse files
committed
1 parent c2f38e0 commit 362182c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.8.7b / 5.50.7] - 2021-07-11
6+
7+
### Fixed
8+
- fixed issue with boxes that head auto delete acticated introduced in the previouse build
59

610
## [0.8.7 / 5.50.7] - 2021-07-10
711

SandboxiePlus/QSbieAPI/SbieAPI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,7 @@ SB_STATUS CSbieAPI::UpdateProcesses(bool bKeep)
12791279

12801280
foreach(const CSandBoxPtr& pBox, m_SandBoxes)
12811281
{
1282-
bool WasBoxClosed = pBox->m_ActiveProcessCount > 0 && pBox->GetProcessList().count();
1282+
bool WasBoxClosed = pBox->m_ActiveProcessCount > 0 && pBox->GetProcessList().count() == 0;
12831283
pBox->m_ActiveProcessCount = pBox->GetProcessList().count();
12841284
if (WasBoxClosed) {
12851285
pBox->CloseBox();

SandboxiePlus/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#define VERSION_MJR 0
44
#define VERSION_MIN 8
55
#define VERSION_REV 7
6-
#define VERSION_UPD 0
6+
#define VERSION_UPD 2
77

88
#ifndef STR
99
#define STR2(X) #X

0 commit comments

Comments
 (0)