-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bab8283
commit d88cbf1
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.3.1] - 2022-10-04 | ||
|
||
### Added | ||
|
||
- Various `FILE_*` constants. | ||
- `VOLUME_SECURITY_DESCRIPTOR_MAX_SIZE` | ||
|
||
### Changed | ||
|
||
- Upgrade to **Dokan 2.0.6**. | ||
|
||
[unreleased]: https://github.com/dokan-dev/dokan-rust/compare/[email protected] | ||
[0.3.1]: https://github.com/dokan-dev/dokan-rust/releases/tag/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.3.1] - 2022-10-04 | ||
|
||
### Added | ||
|
||
- `FileSystemHandle` to send a `DOKAN_HANDLE` across threads. | ||
- `map_win32_error_to_ntstatus` | ||
- `win32_ensure` | ||
- In `memfs` example: add status messages and show how another thread can unmount the file system. | ||
|
||
### Changed | ||
|
||
- Upgrade to **Dokan 2.0.6** through `dokan-sys`. | ||
- Split the code into multiple files. | ||
- Replace `Drive` builder by `FileSystemMounter` and `MountOptions`. | ||
- Operations errors are simply `NTSTATUS`. | ||
To return errors from `GetLastError`, use `win32_ensure` or `map_win32_error_to_ntstatus`. | ||
- Access mount point list through an iterator. | ||
|
||
### Fixed | ||
|
||
- Access to dangling pointer caused panic when the file system handle was used. | ||
It's the reason for `FileSystemMounter`, which keeps needed variables onto the stack. | ||
|
||
[unreleased]: https://github.com/dokan-dev/dokan-rust/compare/[email protected] | ||
[0.3.1]: https://github.com/dokan-dev/dokan-rust/releases/tag/[email protected] |