diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cbc5b0c..acf42781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/). + +## [1.3.4 / 5.58.4] - 2022-09-?? + +### Added + +### Fixed +- fixed issue with default box not being detected on start [#2195](https://github.com/sandboxie-plus/Sandboxie/issues/2195) + + + + ## [1.3.3 / 5.58.3] - 2022-09-12 ### Added diff --git a/Sandboxie/common/my_version.h b/Sandboxie/common/my_version.h index cd3c9ace..f83a3c72 100644 --- a/Sandboxie/common/my_version.h +++ b/Sandboxie/common/my_version.h @@ -21,8 +21,8 @@ #ifndef _MY_VERSION_H #define _MY_VERSION_H -#define MY_VERSION_BINARY 5,58,3 -#define MY_VERSION_STRING "5.58.3" +#define MY_VERSION_BINARY 5,58,4 +#define MY_VERSION_STRING "5.58.4" #define MY_VERSION_COMPAT "5.58.0" // this refers to the driver ABI compatibility // These #defines are used by either Resource Compiler or NSIS installer diff --git a/SandboxiePlus/QSbieAPI/SbieAPI.cpp b/SandboxiePlus/QSbieAPI/SbieAPI.cpp index a8bcffca..6e9558be 100644 --- a/SandboxiePlus/QSbieAPI/SbieAPI.cpp +++ b/SandboxiePlus/QSbieAPI/SbieAPI.cpp @@ -1138,7 +1138,7 @@ quint32 CSbieAPI::GetSessionID() const SB_STATUS CSbieAPI::ReloadBoxes(bool bForceUpdate) { - if (bForceUpdate || (!m_bBoxesDirty && !m_IniWatcher.files().isEmpty())) + if (!bForceUpdate && !m_bBoxesDirty && !m_IniWatcher.files().isEmpty()) return SB_OK; m_bBoxesDirty = false; diff --git a/SandboxiePlus/version.h b/SandboxiePlus/version.h index 182bfe4a..d6fa59ef 100644 --- a/SandboxiePlus/version.h +++ b/SandboxiePlus/version.h @@ -2,7 +2,7 @@ #define VERSION_MJR 1 #define VERSION_MIN 3 -#define VERSION_REV 3 +#define VERSION_REV 4 #define VERSION_UPD 0 #ifndef STR