This commit is contained in:
parent
c2f38e0840
commit
362182c40e
|
@ -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
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue