From c87dd13349b919cb9b9fd169ce78d2a3000769b7 Mon Sep 17 00:00:00 2001 From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com> Date: Sat, 6 Jan 2024 17:52:22 +0100 Subject: [PATCH] 1.12.7 --- CHANGELOG.md | 7 +++++++ SandboxiePlus/SandMan/Views/SbieView.cpp | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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; }