Skip to content

Commit

Permalink
1.15.6
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Jan 27, 2025
1 parent d7315b9 commit bee78fc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).


## [1.15.6 / 5.70.6] - 2025-01-?

### Fixed
- Sandboxie-Plus data folder did not always work properly



## [1.15.5 / 5.70.5] - 2025-01-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion Sandboxie/common/my_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#define VERSION_MJR 5
#define VERSION_MIN 70
#define VERSION_REV 5
#define VERSION_REV 6
#define VERSION_UPD 0

#if VERSION_UPD > 0
Expand Down
3 changes: 2 additions & 1 deletion SandboxiePlus/SandMan/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ int main(int argc, char *argv[])
QString ConfDir = AppDir + "\\PlusData";
if(!QFile::exists(ConfDir))
ConfDir = AppDir;
else // todo: Remove import at some later point

// todo: Remove import at some later point
{
QStringList dirs = QStandardPaths::standardLocations(QStandardPaths::GenericDataLocation);
if (dirs.count() > 2) { // Note: last 2 are AppDir and AppDir/data
Expand Down
4 changes: 2 additions & 2 deletions SandboxiePlus/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#define VERSION_MJR 1
#define VERSION_MIN 15
#define VERSION_REV 5
#define VERSION_REV 6
#define VERSION_UPD 0

#ifndef STR
Expand All @@ -20,5 +20,5 @@

#define MY_PRODUCT_NAME_STRING "Sandboxie-Plus"
#define MY_COMPANY_NAME_STRING "sandboxie-plus.com"
#define MY_COPYRIGHT_STRING "Copyright (C) 2020-2024 by David Xanatos (xanasoft.com)"
#define MY_COPYRIGHT_STRING "Copyright (C) 2020-2025 by David Xanatos (xanasoft.com)"

0 comments on commit bee78fc

Please sign in to comment.