1.2.4
This commit is contained in:
parent
156bf7115e
commit
f4f65faa9b
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -4,6 +4,23 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
|
||||
|
||||
|
||||
## [1.2.4 / 5.57.4] - 2022-07-??
|
||||
|
||||
### Added
|
||||
- added delete button to the recovery window [#2024](https://github.com/sandboxie-plus/Sandboxie/issues/2024)
|
||||
|
||||
### Changed
|
||||
|
||||
### Fixed
|
||||
- fixed issues with file panel
|
||||
- fixed issue with key bindings [#2030](https://github.com/sandboxie-plus/Sandboxie/issues/2030)
|
||||
- fixed issue wtih RemoveSidName when terminating sbiesvc
|
||||
- fixed issue with the new hooking mechanism
|
||||
- fixed BSOD issue with win32k hooks introduced in 1.2.0 [#2035](https://github.com/sandboxie-plus/Sandboxie/issues/2035)
|
||||
|
||||
|
||||
|
||||
## [1.2.3 / 5.57.3] - 2022-07-13
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -330,7 +330,8 @@ _FX BOOLEAN Proc_Init(void)
|
|||
ANSI_STRING ansi;
|
||||
NTSTATUS status;
|
||||
|
||||
Dll_ElectronWorkaround = SbieApi_QueryConfBool(NULL, L"UseElectronWorkaround", TRUE);
|
||||
if(!Dll_CompartmentMode)
|
||||
Dll_ElectronWorkaround = Config_GetSettingsForImageName_bool(L"UseElectronWorkaround", TRUE);
|
||||
|
||||
//
|
||||
// abort if we should not hook any process creation functions
|
||||
|
|
|
@ -158,6 +158,8 @@ SpecialImage=mail,Inky.exe
|
|||
|
||||
SpecialImage=browser,PuffinSecureBrowser.exe
|
||||
|
||||
UseElectronWorkaround=Element.exe,n
|
||||
|
||||
|
||||
#
|
||||
# updater blockage, usage:
|
||||
|
|
Loading…
Reference in New Issue