@@ -22,11 +22,11 @@ Redox is becoming faster than Linux in some workloads (with all exploit mitigati
## System Improvements
bjorn3 updated most system components to use the new scheme path syntax, now many programs can work on Redox without patches or a small amount of them.
bjorn3 updated most system components to use the new scheme path format, now many programs can work on Redox without patches or a small amount of them.
## Relibc Improvements
- bjorn3 removed all code using the legacy scheme syntax (URL paths)
- bjorn3 removed all code using the legacy scheme path format (URL paths)
- 4lDO2 added fixes on the `forkpty` and `dprintf` tests
## VirtualBox
@@ -53,7 +53,7 @@ Ribbon fixed a typo on the scripts that disabled the shebangs.
The [scheme documentation](https://doc.redox-os.org/book/ch05-00-schemes-resources.html)(system API) is finally up-to-date! thanks to Ron Williams.
We dropped the previous URL syntax (`scheme-name:resource-name`) to reduce the effort to port programs, now it uses a Unix file syntax (`/scheme/scheme-name/resource-name`) like other Unix-like operating systems.
We dropped the previous scheme path format (`scheme-name:resource-name`) to reduce the effort to port programs, now the schemes use the Unix path format (`/scheme/scheme-name/resource-name`) like other Unix-like operating systems.
(The `/scheme/` before the scheme daemon name is to avoid it to be treated as a file resource from RedoxFS, removing any confusion)