1.12.7
This commit is contained in:
parent
9502cc9ff4
commit
c87dd13349
|
@ -4,6 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [1.12.7 / 5.67.7] - 2024-01-??
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Make Duplicate Box Config keep the order of the original box configuration [#3523](https://github.com/sandboxie-plus/Sandboxie/issues/3523)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [1.12.6 / 5.67.6] - 2024-01-02
|
## [1.12.6 / 5.67.6] - 2024-01-02
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -1368,7 +1368,7 @@ void CSbieView::OnSandBoxAction(QAction* Action, const QList<CSandBoxPtr>& SandB
|
||||||
if (I->first == "FileRootPath" && !I->second.toUpper().contains("%SANDBOX%"))
|
if (I->first == "FileRootPath" && !I->second.toUpper().contains("%SANDBOX%"))
|
||||||
continue; // skip the FileRootPath if it does not contain a %SANDBOX%
|
continue; // skip the FileRootPath if it does not contain a %SANDBOX%
|
||||||
|
|
||||||
Status = theAPI->SbieIniSet(Name, I->first, I->second, CSbieAPI::eIniInsert, false);
|
Status = theAPI->SbieIniSet(Name, I->first, I->second, CSbieAPI::eIniAppend, false);
|
||||||
if (Status.IsError())
|
if (Status.IsError())
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue