Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Jul 11, 2021
1 parent c2f38e0 commit 362182c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion SandboxiePlus/QSbieAPI/SbieAPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion SandboxiePlus/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 362182c

Please sign in to comment.