diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f605270..9748a434 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 ### Changed diff --git a/SandboxiePlus/SandMan/Views/SbieView.cpp b/SandboxiePlus/SandMan/Views/SbieView.cpp index 1c1d20f5..d3af63ce 100644 --- a/SandboxiePlus/SandMan/Views/SbieView.cpp +++ b/SandboxiePlus/SandMan/Views/SbieView.cpp @@ -1368,7 +1368,7 @@ void CSbieView::OnSandBoxAction(QAction* Action, const QList& SandB if (I->first == "FileRootPath" && !I->second.toUpper().contains("%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()) break; }