1.12.8
This commit is contained in:
parent
0a2dcc5f4b
commit
0523f27c52
|
@ -4,11 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [1.1x.x / 5.6x.x] - 2024-xx-xx
|
## [1.12.8 / 5.67.8] - 2024-01-xx
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- added Japanese language on Plus UI [#3573](https://github.com/sandboxie-plus/Sandboxie/pull/3573)
|
- added Japanese language on Plus UI [#3573](https://github.com/sandboxie-plus/Sandboxie/pull/3573)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- fixed SBIE2321 Cannot manage device map: [C0000034 / 11] [#2996](https://github.com/sandboxie-plus/Sandboxie/issues/2996)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [1.12.7 / 5.67.7] - 2024-01-10
|
## [1.12.7 / 5.67.7] - 2024-01-10
|
||||||
|
|
|
@ -21,8 +21,8 @@
|
||||||
#ifndef _MY_VERSION_H
|
#ifndef _MY_VERSION_H
|
||||||
#define _MY_VERSION_H
|
#define _MY_VERSION_H
|
||||||
|
|
||||||
#define MY_VERSION_BINARY 5,67,7
|
#define MY_VERSION_BINARY 5,67,8
|
||||||
#define MY_VERSION_STRING "5.67.7"
|
#define MY_VERSION_STRING "5.67.8"
|
||||||
#define MY_ABI_VERSION 0x56700
|
#define MY_ABI_VERSION 0x56700
|
||||||
|
|
||||||
// These #defines are used by either Resource Compiler or NSIS installer
|
// These #defines are used by either Resource Compiler or NSIS installer
|
||||||
|
|
|
@ -4074,9 +4074,6 @@ OpenTruePath:
|
||||||
|
|
||||||
status = __sys_NtOpenDirectoryObject(DirectoryHandle, DesiredAccess, &objattrs);
|
status = __sys_NtOpenDirectoryObject(DirectoryHandle, DesiredAccess, &objattrs);
|
||||||
|
|
||||||
if (PATH_NOT_OPEN(mp_flags) && (status == STATUS_ACCESS_DENIED))
|
|
||||||
status = STATUS_OBJECT_NAME_NOT_FOUND;
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// finish
|
// finish
|
||||||
//
|
//
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#define VERSION_MJR 1
|
#define VERSION_MJR 1
|
||||||
#define VERSION_MIN 12
|
#define VERSION_MIN 12
|
||||||
#define VERSION_REV 7
|
#define VERSION_REV 8
|
||||||
#define VERSION_UPD 0
|
#define VERSION_UPD 0
|
||||||
|
|
||||||
#ifndef STR
|
#ifndef STR
|
||||||
|
|
Loading…
Reference in New Issue