You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+23-10Lines changed: 23 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,21 +3,34 @@ All notable changes to this project will be documented in this file.
3
3
4
4
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
5
5
6
-
## [Unreleased] - 1.3.2.1000
6
+
## [1.4.0.1000] - 2020-01-06
7
7
### Added
8
-
- Kernel - Add `DokanAllocZero` that Alloc and ZeroMemory buffer size requested sys - Rename `ExAllocatePool` to `DokanAlloc`
9
-
- Kernel - Add Input IRP Buffer Help macro
10
-
- Kernel - Use `GET_IRP` for `Type3InputBuffer` and start using Output buffer function helpers for IRP
11
-
- FUSE - Add mount manager option
8
+
- MemFS - Add a new FS sample project: dokan_memfs. MemFS is a better example to debug and know the dokan driver/library feature supported and NTFS compliant. The FS pass most of WinFSTest and IFSTest. It looks to be stable enough to be included in the installer. It hasn't been test with real usage but it is expected to run without issue. MemFS is written in c++ and is under MIT license.
9
+
- Installer - You can now find two installers with binaries built with and without VC redistributable. If no issue is reported, the next release will only have without the VC redistributable.
10
+
- Kernel - Support directory path mount with mount manager.
11
+
- Kernel - Add `DokanAllocZero` that Alloc and ZeroMemory buffer size requested sys - Rename `ExAllocatePool` to `DokanAlloc`.
12
+
- Kernel - Add Input IRP Buffer Help macro.
13
+
- Kernel - Use `GET_IRP` for `Type3InputBuffer` and start using Output buffer function helpers for IRP.
14
+
- FUSE - Add mount manager option.
12
15
13
16
### Changed
14
-
- Kernel - Do not rethrow exception during `EXCEPTION_EXECUTE_HANDLER`
15
-
- Kernel - During EventRelease directly call `FsRtlNotifyCleanupAll` instead of going through all Fcb & Ccb
16
-
- Library - Add support for compiling with GCC
17
+
- Kernel - Replace `DOKAN_OPTION_OPTIMIZE_SINGLE_NAME_SEARCH` by `DOKAN_OPTION_ENABLE_FCB_GARBAGE_COLLECTION`. The advantage of the GC approach is that it prevents filter drivers from exponentially slowing down procedures like zip file extraction due to repeatedly rebuilding state that they attach to the FCB header.
18
+
- Kernel - Multiple code refactoring.
19
+
- Kernel - Move and Improve `FixFileNameForReparseMountPoint`.
20
+
- Kernel - `FileNetworkPhysicalNameInformation` now return directly the FileName instead of sending the request to userland.
21
+
- Kernel - `FileAllocationInformation` - return `STATUS_USER_MAPPED`_FILE when trying to truncate a memory mapped file.
22
+
- Kernel - Do not rethrow exception during `EXCEPTION_EXECUTE_HANDLER`.
23
+
- Kernel - During EventRelease directly call `FsRtlNotifyCleanupAll` instead of going through all Fcb & Ccb.
24
+
- Kernel - Change `DokanPrintNTStatus` with limited number of `NTSTATUS` values print to use `DokanGetNTSTATUSStr`. `DokanGetNTSTATUSStr` use `ntstatus_log.inc` that has all ntstatus from <ntstatus.h>.
25
+
- Library - Add support for compiling with GCC.
26
+
- Library - Move `DokanRemoveMountPointEx` to internal header as it is not available to the public API.
17
27
18
28
### Fixed
19
-
- FUSE - Read keep local filename instance
20
-
- Installer - Fix incorrect pdb file copied for driver
29
+
- FUSE - Read keep local filename instance.
30
+
- Installer - Fix incorrect pdb file copied for driver.
31
+
- Library - `DokanNetworkProviderInstall` return earlier if a Reg failure happens and not corrupt the registry.
0 commit comments