1.6.3a
This commit is contained in:
parent
29edfc5ae6
commit
bc48de371e
|
@ -6,10 +6,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
## [1.6.3a / 5.61.3] - 2022-12-??
|
## [1.6.3a / 5.61.3] - 2022-12-??
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- added option to disable box clean up on start [#2553](https://github.com/sandboxie-plus/Sandboxie/issues/2553)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- fixed issue with auto delete box on sandman start [#2555](https://github.com/sandboxie-plus/Sandboxie/issues/2555)
|
- 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
|
## [1.6.3 / 5.61.3] - 2022-12-21
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -1808,15 +1808,18 @@ void CSandMan::OnStatusChanged()
|
||||||
theAPI->CreateBox(DefaultBox);
|
theAPI->CreateBox(DefaultBox);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
if (theConf->GetBool("Options/CleanUpOnStart", false)) {
|
||||||
// clean up Auto Delete boxes after reboot
|
|
||||||
//
|
|
||||||
|
|
||||||
theAPI->UpdateProcesses(false, ShowAllSessions());
|
//
|
||||||
|
// clean up Auto Delete boxes after reboot
|
||||||
|
//
|
||||||
|
|
||||||
foreach(const CSandBoxPtr& pBox, AllBoxes) {
|
theAPI->UpdateProcesses(false, ShowAllSessions());
|
||||||
if(pBox->GetActiveProcessCount() == 0)
|
|
||||||
OnBoxClosed(pBox);
|
foreach(const CSandBoxPtr & pBox, AllBoxes) {
|
||||||
|
if (pBox->GetActiveProcessCount() == 0)
|
||||||
|
OnBoxClosed(pBox);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue