Skip to content

Commit

Permalink
1.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Aug 25, 2023
1 parent 354085f commit 94c3f5e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).



## [1.11.1 / 5.66.1] - 2023-08-??

### Changed
- changed the new optin layout to now be the default for non vintage views (can be changed back in the settings)



## [1.11.0 / 5.66.0] - 2023-08-25

### Added
Expand Down
4 changes: 2 additions & 2 deletions Sandboxie/common/my_version.h
Expand Up @@ -21,8 +21,8 @@
#ifndef _MY_VERSION_H
#define _MY_VERSION_H

#define MY_VERSION_BINARY 5,66,0
#define MY_VERSION_STRING "5.66.0"
#define MY_VERSION_BINARY 5,66,1
#define MY_VERSION_STRING "5.66.1"
#define MY_ABI_VERSION 0x56500

// These #defines are used by either Resource Compiler or NSIS installer
Expand Down
2 changes: 1 addition & 1 deletion SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
Expand Up @@ -257,7 +257,7 @@ COptionsWindow::COptionsWindow(const QSharedPointer<CSbieIni>& pBox, const QStri
int iViewMode = theConf->GetInt("Options/ViewMode", 1);
int iOptionLayout = theConf->GetInt("Options/NewConfigLayout", 2);
if (iOptionLayout == 2)
iOptionLayout = 0;// iViewMode != 2 ? 1 : 0;
iOptionLayout = iViewMode != 2 ? 1 : 0;

if ((QGuiApplication::queryKeyboardModifiers() & Qt::AltModifier) != 0)
iOptionLayout = !iOptionLayout;
Expand Down
2 changes: 1 addition & 1 deletion SandboxiePlus/version.h
Expand Up @@ -2,7 +2,7 @@

#define VERSION_MJR 1
#define VERSION_MIN 11
#define VERSION_REV 0
#define VERSION_REV 1
#define VERSION_UPD 0

#ifndef STR
Expand Down

0 comments on commit 94c3f5e

Please sign in to comment.