1.3.4
This commit is contained in:
parent
a328b42aed
commit
e5d1fab9ed
11
CHANGELOG.md
11
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue