1.14.9
This commit is contained in:
parent
3d18461456
commit
947548999f
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -3,13 +3,22 @@ All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [1.14.9 / 5.69.9] - 2024-09-??
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- fixed Exported encrypted archive files cannot be unpacked by Sandboxie [#4229](https://github.com/sandboxie-plus/Sandboxie/issues/4229)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [1.14.8 / 5.69.8] - 2024-09-09
|
## [1.14.8 / 5.69.8] - 2024-09-09
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- allow users to import/export boxes with .zip files
|
- allow users to import/export boxes with .zip files [#4200](https://github.com/sandboxie-plus/Sandboxie/pull/4200)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- fixed a supporter certificate issue
|
- fixed a supporter certificate issue introduced with 1.14.7
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
#define VERSION_MJR 5
|
#define VERSION_MJR 5
|
||||||
#define VERSION_MIN 69
|
#define VERSION_MIN 69
|
||||||
#define VERSION_REV 8
|
#define VERSION_REV 9
|
||||||
#define VERSION_UPD 0
|
#define VERSION_UPD 0
|
||||||
|
|
||||||
#if VERSION_UPD > 0
|
#if VERSION_UPD > 0
|
||||||
|
|
|
@ -239,7 +239,7 @@ void CSandBoxPlus::ExportBoxAsync(const CSbieProgressPtr& pProgress, const QStri
|
||||||
SCompressParams Params;
|
SCompressParams Params;
|
||||||
Params.iLevel = vParams["level"].toInt();
|
Params.iLevel = vParams["level"].toInt();
|
||||||
Params.bSolid = vParams["solid"].toBool();
|
Params.bSolid = vParams["solid"].toBool();
|
||||||
Params.b7z = Info.FormatIndex == 1;
|
Params.b7z = Info.ArchiveExt != "zip";
|
||||||
|
|
||||||
SB_STATUS Status = SB_OK;
|
SB_STATUS Status = SB_OK;
|
||||||
if (!Archive.Update(&Files, true, &Params, &Attributes))
|
if (!Archive.Update(&Files, true, &Params, &Attributes))
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#define VERSION_MJR 1
|
#define VERSION_MJR 1
|
||||||
#define VERSION_MIN 14
|
#define VERSION_MIN 14
|
||||||
#define VERSION_REV 8
|
#define VERSION_REV 9
|
||||||
#define VERSION_UPD 0
|
#define VERSION_UPD 0
|
||||||
|
|
||||||
#ifndef STR
|
#ifndef STR
|
||||||
|
|
Loading…
Reference in New Issue