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-??
|
||||
|
||||
### Added
|
||||
- added option to disable box clean up on start [#2553](https://github.com/sandboxie-plus/Sandboxie/issues/2553)
|
||||
|
||||
### 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
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -1808,17 +1808,20 @@ void CSandMan::OnStatusChanged()
|
|||
theAPI->CreateBox(DefaultBox);
|
||||
}
|
||||
|
||||
if (theConf->GetBool("Options/CleanUpOnStart", false)) {
|
||||
|
||||
//
|
||||
// clean up Auto Delete boxes after reboot
|
||||
//
|
||||
|
||||
theAPI->UpdateProcesses(false, ShowAllSessions());
|
||||
|
||||
foreach(const CSandBoxPtr& pBox, AllBoxes) {
|
||||
if(pBox->GetActiveProcessCount() == 0)
|
||||
foreach(const CSandBoxPtr & pBox, AllBoxes) {
|
||||
if (pBox->GetActiveProcessCount() == 0)
|
||||
OnBoxClosed(pBox);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (isVisible())
|
||||
CheckSupport();
|
||||
|
|
Loading…
Reference in New Issue