File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
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
5
9
6
10
## [ 0.8.7 / 5.50.7] - 2021-07-10
7
11
Original file line number Diff line number Diff line change @@ -1279,7 +1279,7 @@ SB_STATUS CSbieAPI::UpdateProcesses(bool bKeep)
1279
1279
1280
1280
foreach (const CSandBoxPtr& pBox, m_SandBoxes)
1281
1281
{
1282
- bool WasBoxClosed = pBox->m_ActiveProcessCount > 0 && pBox->GetProcessList ().count ();
1282
+ bool WasBoxClosed = pBox->m_ActiveProcessCount > 0 && pBox->GetProcessList ().count () == 0 ;
1283
1283
pBox->m_ActiveProcessCount = pBox->GetProcessList ().count ();
1284
1284
if (WasBoxClosed) {
1285
1285
pBox->CloseBox ();
Original file line number Diff line number Diff line change 3
3
#define VERSION_MJR 0
4
4
#define VERSION_MIN 8
5
5
#define VERSION_REV 7
6
- #define VERSION_UPD 0
6
+ #define VERSION_UPD 2
7
7
8
8
#ifndef STR
9
9
#define STR2 (X ) #X
You can’t perform that action at this time.
0 commit comments