This commit is contained in:
DavidXanatos 2022-09-21 11:54:58 +02:00
parent 610fa2672a
commit 370b140169
5 changed files with 16 additions and 6 deletions

View File

@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.3.5 / 5.58.5] - 2022-09-19
### Fixed
- fixed issues with stale data in Sandboxie-Plus.ini [#2248](https://github.com/sandboxie-plus/Sandboxie/pull/2248) (thanks okrc)
- fixed issue with dummy manifests [#2252](https://github.com/sandboxie-plus/Sandboxie/issues/2252)
## [1.3.4 / 5.58.4] - 2022-09-19

View File

@ -21,8 +21,8 @@
#ifndef _MY_VERSION_H
#define _MY_VERSION_H
#define MY_VERSION_BINARY 5,58,4
#define MY_VERSION_STRING "5.58.4"
#define MY_VERSION_BINARY 5,58,5
#define MY_VERSION_STRING "5.58.5"
#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

View File

@ -1725,10 +1725,12 @@ void CSbieView::ReloadUserConfig()
ClearUserUIConfig();
}
void CSbieView::ClearUserUIConfig(const QMap<QString, CSandBoxPtr> AllBoxes) {
void CSbieView::ClearUserUIConfig(const QMap<QString, CSandBoxPtr> AllBoxes)
{
if (!AllBoxes.isEmpty())
{
for (auto I = m_Groups.begin(); I != m_Groups.end(); ++I) {
for (auto I = m_Groups.begin(); I != m_Groups.end(); ++I)
{
QStringList Temp = I.value();
foreach(QString Name, I.value()) {
if (AllBoxes.contains(Name.toLower()) || m_Groups.keys().contains(Name))

View File

@ -40,7 +40,7 @@ public slots:
void Clear();
void Refresh();
void ReloadUserConfig();
void ClearUserUIConfig(QMap<QString, CSandBoxPtr> AllBoxes = QMap<QString, CSandBoxPtr>());
void ClearUserUIConfig(const QMap<QString, CSandBoxPtr> AllBoxes = QMap<QString, CSandBoxPtr>());
void SaveUserConfig();
private slots:

View File

@ -2,7 +2,7 @@
#define VERSION_MJR 1
#define VERSION_MIN 3
#define VERSION_REV 4
#define VERSION_REV 5
#define VERSION_UPD 0
#ifndef STR