1.0.10
This commit is contained in:
parent
5c03eb2ef8
commit
f3301ad3d8
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -8,13 +8,22 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
# [1.0.10 / 5.55.10] - 2022-01-??
|
# [1.0.10 / 5.55.10] - 2022-01-??
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
- added option to show only boxes in hray with runnign processes [#1186](https://github.com/sandboxie-plus/Sandboxie/issues/1186)
|
||||||
|
todo:- add reset ui ooption
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- HideHostProcess=program.exe can now be used to hide sandboxie saervices [#1336](https://github.com/sandboxie-plus/Sandboxie/issues/1336)
|
- HideHostProcess=program.exe can now be used to hide sandboxie services [#1336](https://github.com/sandboxie-plus/Sandboxie/issues/1336)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- fixed a couple issues with the new breakout process feature and improved security (thanks Diversenok)
|
- fixed a couple issues with the new breakout process feature and improved security (thanks Diversenok)
|
||||||
- fixed issues with re opening already open windows [#1584](https://github.com/sandboxie-plus/Sandboxie/issues/1584)
|
- fixed issues with re opening already open windows [#1584](https://github.com/sandboxie-plus/Sandboxie/issues/1584)
|
||||||
|
- fixed issue with desktop access [#1588](https://github.com/sandboxie-plus/Sandboxie/issues/1588)
|
||||||
|
- fixed issue handling commandline invokation [#1133](https://github.com/sandboxie-plus/Sandboxie/issues/1133)
|
||||||
|
- fixed ui issue with main window state when switching always on top attribute [#1169](https://github.com/sandboxie-plus/Sandboxie/issues/1169)
|
||||||
|
- fixed issue with box context menu in tray list [1106](https://github.com/sandboxie-plus/Sandboxie/issues/1106)
|
||||||
|
- fixed firefox updates not being properly blocked
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2303,7 +2303,7 @@ _FX BOOLEAN Proc_IsSoftwareUpdateW(const WCHAR *path)
|
||||||
if (Dll_ImageType == DLL_IMAGE_MOZILLA_FIREFOX) {
|
if (Dll_ImageType == DLL_IMAGE_MOZILLA_FIREFOX) {
|
||||||
|
|
||||||
MatchExe = L"updater.exe";
|
MatchExe = L"updater.exe";
|
||||||
static WCHAR* Dirs[] = { L"\\mozilla firefox\\updates\\" , L"\\mozilla\\updates\\", L""};
|
static WCHAR* Dirs[] = { L"\\mozilla firefox\\updates\\" , L"\\mozilla\\updates\\", L"\\mozilla firefox\\", L""};
|
||||||
MatchDirs = Dirs;
|
MatchDirs = Dirs;
|
||||||
SoftName = L"Mozilla Firefox";
|
SoftName = L"Mozilla Firefox";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue