parent
f3a8f93eb0
commit
2e74dd0b1e
|
@ -9,9 +9,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
### Added
|
||||
- added menu entry to restart Sandman as admin [#3581](https://github.com/sandboxie-plus/Sandboxie/issues/3581) (thx Yeyixiao)
|
||||
- added option to block taking screen capture/screenshot of sandboxed processes [#624](https://github.com/sandboxie-plus/Sandboxie/issues/624) (thx Yeyixiao)
|
||||
- Sandman, suspend all processes [#3582](https://github.com/sandboxie-plus/Sandboxie/issues/3582)
|
||||
|
||||
### Fixed
|
||||
- fixed shortcut issue with suspending all processes [#3582](https://github.com/sandboxie-plus/Sandboxie/issues/3582#issuecomment-1969628215)
|
||||
- fixed Privacy Mode, NormalFilePath and Symbolic Link Problem [#3660](https://github.com/sandboxie-plus/Sandboxie/issues/3660)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1171,9 +1171,15 @@ _FX FILE_LINK *File_AddTempLink(WCHAR *path)
|
|||
}
|
||||
}
|
||||
|
||||
} else
|
||||
} else {
|
||||
|
||||
newpath = path;
|
||||
|
||||
BOOLEAN use_rule_specificity = (Dll_ProcessFlags & SBIE_FLAG_RULE_SPECIFICITY) != 0;
|
||||
if(use_rule_specificity)
|
||||
stop = FALSE;
|
||||
}
|
||||
|
||||
//
|
||||
// add the new link and return
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue