Typo fixes, changes, and readme improvement
- Update CHANGELOG.md Fixed mistakes, added reference to an issue and went more verbose on how something was fixed. - Update README.md Attempt to improve readability and added some detail to make it hopefully easier to understand. - Typo fixes in proc.c --------- Co-authored-by: isaak654 <isaak654@users.noreply.github.com>
This commit is contained in:
parent
7dc20e9163
commit
c19dff8f6f
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -15,14 +15,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
## [1.8.4 / 5.63.4] - 2023-04-07
|
||||
|
||||
### Added
|
||||
- added installer icon
|
||||
- added installer icon [#2795](https://github.com/sandboxie-plus/Sandboxie/issues/2795)
|
||||
- added token type indicator to process list
|
||||
|
||||
### Fixed
|
||||
- fixed compatybility issue with MSEdge 112.x
|
||||
- fixed updter issue [#2790](https://github.com/sandboxie-plus/Sandboxie/issues/2790)
|
||||
- fixed new box wizard issue [#2792](https://github.com/sandboxie-plus/Sandboxie/issues/2792)
|
||||
- fixed issue with firefox/thunderbird [#2799](https://github.com/sandboxie-plus/Sandboxie/issues/2799)
|
||||
- fixed compatibility issue with Microsoft Edge 112.x
|
||||
- fixed updater issue [#2790](https://github.com/sandboxie-plus/Sandboxie/issues/2790)
|
||||
- fixed new box wizard boxname issue by making the boxname static [#2792](https://github.com/sandboxie-plus/Sandboxie/issues/2792)
|
||||
- fixed issue with Firefox/Thunderbird [#2799](https://github.com/sandboxie-plus/Sandboxie/issues/2799)
|
||||
|
||||
|
||||
|
||||
|
|
12
README.md
12
README.md
|
@ -2,7 +2,7 @@
|
|||
|
||||
[![Plus license](https://img.shields.io/badge/Plus%20license-Custom%20-blue.svg)](./Installer/license.txt) [![Classic license](https://img.shields.io/github/license/Sandboxie-Plus/Sandboxie?label=Classic%20license&color=blue)](./LICENSE) [![GitHub Release](https://img.shields.io/github/release/sandboxie-plus/Sandboxie.svg)](https://github.com/sandboxie-plus/Sandboxie/releases/latest) [![GitHub Pre-Release](https://img.shields.io/github/release/sandboxie-plus/Sandboxie/all.svg?label=pre-release)](https://github.com/sandboxie-plus/Sandboxie/releases) [![GitHub Build Status](https://github.com/sandboxie-plus/Sandboxie/actions/workflows/main.yml/badge.svg)](https://github.com/sandboxie-plus/Sandboxie/actions) [![GitHub Codespell Status](https://github.com/sandboxie-plus/Sandboxie/actions/workflows/codespell.yml/badge.svg)](https://github.com/sandboxie-plus/Sandboxie/actions/workflows/codespell.yml)
|
||||
|
||||
Note: this is a community fork that took place after the open-source code release of Sandboxie and not the official continuation of the previous development (see the [project history](./README.md#-project-history)).
|
||||
Note: This is a community fork that took place after the open-source code release of Sandboxie and not the official continuation of the previous development (see the [project history](./README.md#-project-history)).
|
||||
|
||||
Sandboxie is a sandbox-based isolation software for 32-bit and 64-bit Windows NT-based operating systems. It creates a sandbox-like isolated operating environment in which applications can be run or installed without permanently modifying local & mapped drives or the Windows registry. An isolated virtual environment allows controlled testing of untrusted programs and web surfing.<br>
|
||||
|
||||
|
@ -21,8 +21,8 @@ What's different is the availability of features in the user interface.
|
|||
|
||||
Plus build has a modern Qt based UI, which supports all new features that have been added since the project went open source:
|
||||
|
||||
* Snapshot Manager - this feature takes a copy of any box in order to be restored when needed
|
||||
* Maintenance mode - it allows to uninstall/install/start/stop Sandboxie driver and service when needed
|
||||
* Snapshot Manager - takes a copy of any box in order to be restored when needed
|
||||
* Maintenance mode - allows to uninstall/install/start/stop Sandboxie driver and service when needed
|
||||
* Portable mode - you can run the installer and choose to extract all files to a directory
|
||||
* Additional UI options to block access for Windows components like printer spooler and clipboard
|
||||
* More customization options for Start/Run and Internet access restrictions
|
||||
|
@ -46,9 +46,9 @@ A partial archive of the [old Sandboxie forum](https://sandboxie-website-archive
|
|||
|
||||
Sandboxie's functionality can be enhanced with specialized tools like the following:
|
||||
|
||||
* [LogApiDll](https://github.com/sandboxie-plus/LogApiDll) - this adds a verbose trace output to Sandboxie's trace log, listing invocations of relevant Windows API functions.
|
||||
* [SbieHide](https://github.com/VeroFess/SbieHide) - this hides the presence of SbieDll.dll from the application.
|
||||
* [SandboxToys2](https://github.com/blap/SandboxToys2) - this allows to monitor files and registry changes in the sandbox.
|
||||
* [LogApiDll](https://github.com/sandboxie-plus/LogApiDll) - adds a verbose output to Sandboxie's trace log, listing invocations of relevant Windows API functions.
|
||||
* [SbieHide](https://github.com/VeroFess/SbieHide) - attempts to hide the presence of SbieDll.dll from the application being sandboxed.
|
||||
* [SandboxToys2](https://github.com/blap/SandboxToys2) - allows to monitor files and registry changes in a sandbox.
|
||||
|
||||
|
||||
## 📌 Project history
|
||||
|
|
|
@ -927,7 +927,7 @@ _FX BOOL Proc_CreateProcessInternalW(
|
|||
|
||||
//
|
||||
// Compatibility hack for Firefox 106.x, processes with the "-sandboxingKind" flag
|
||||
// fail to load dll's and thair token has the users groupe disabled
|
||||
// fail to load DLLs and their token has the users group disabled
|
||||
//
|
||||
|
||||
if (Dll_ImageType == DLL_IMAGE_MOZILLA_FIREFOX && lpCommandLine
|
||||
|
|
Loading…
Reference in New Issue