Skip to content

Commit 94c3f5e

Browse files
committed
1.11.1
1 parent 354085f commit 94c3f5e

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55

66

7+
## [1.11.1 / 5.66.1] - 2023-08-??
8+
9+
### Changed
10+
- changed the new optin layout to now be the default for non vintage views (can be changed back in the settings)
11+
12+
13+
714
## [1.11.0 / 5.66.0] - 2023-08-25
815

916
### Added

Sandboxie/common/my_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
#ifndef _MY_VERSION_H
2222
#define _MY_VERSION_H
2323

24-
#define MY_VERSION_BINARY 5,66,0
25-
#define MY_VERSION_STRING "5.66.0"
24+
#define MY_VERSION_BINARY 5,66,1
25+
#define MY_VERSION_STRING "5.66.1"
2626
#define MY_ABI_VERSION 0x56500
2727

2828
// These #defines are used by either Resource Compiler or NSIS installer

SandboxiePlus/SandMan/Windows/OptionsWindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ COptionsWindow::COptionsWindow(const QSharedPointer<CSbieIni>& pBox, const QStri
257257
int iViewMode = theConf->GetInt("Options/ViewMode", 1);
258258
int iOptionLayout = theConf->GetInt("Options/NewConfigLayout", 2);
259259
if (iOptionLayout == 2)
260-
iOptionLayout = 0;// iViewMode != 2 ? 1 : 0;
260+
iOptionLayout = iViewMode != 2 ? 1 : 0;
261261

262262
if ((QGuiApplication::queryKeyboardModifiers() & Qt::AltModifier) != 0)
263263
iOptionLayout = !iOptionLayout;

SandboxiePlus/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#define VERSION_MJR 1
44
#define VERSION_MIN 11
5-
#define VERSION_REV 0
5+
#define VERSION_REV 1
66
#define VERSION_UPD 0
77

88
#ifndef STR

0 commit comments

Comments
 (0)