This commit is contained in:
DavidXanatos 2022-12-22 19:15:37 +01:00
parent 18f9354d54
commit 29edfc5ae6
3 changed files with 10 additions and 1 deletions

View File

@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.6.3a / 5.61.3] - 2022-12-??
### Fixed
- fixed issue with auto delete box on sandman start [#2555](https://github.com/sandboxie-plus/Sandboxie/issues/2555)
## [1.6.3 / 5.61.3] - 2022-12-21
@ -11,6 +16,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- improved Network Location Awareness template
## [1.6.2b / 5.61.2] - 2022-12-21
### Fixed

View File

@ -1812,6 +1812,8 @@ void CSandMan::OnStatusChanged()
// clean up Auto Delete boxes after reboot
//
theAPI->UpdateProcesses(false, ShowAllSessions());
foreach(const CSandBoxPtr& pBox, AllBoxes) {
if(pBox->GetActiveProcessCount() == 0)
OnBoxClosed(pBox);
@ -1851,6 +1853,7 @@ void CSandMan::OnStatusChanged()
m_pRunBoxed->setEnabled(isConnected);
m_pNewBox->setEnabled(isConnected);
m_pNewGroup->setEnabled(isConnected);
m_pImportBox->setEnabled(isConnected);
m_pEmptyAll->setEnabled(isConnected);
m_pDisableForce->setEnabled(isConnected);
m_pDisableForce2->setEnabled(isConnected);

View File

@ -3,7 +3,7 @@
#define VERSION_MJR 1
#define VERSION_MIN 6
#define VERSION_REV 3
#define VERSION_UPD 0
#define VERSION_UPD 1
#ifndef STR
#define STR2(X) #X