Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
Update versions and changelog
  • Loading branch information
Liryna committed Dec 22, 2023
1 parent 7d5a954 commit bcb03e9
Show file tree
Hide file tree
Showing 10 changed files with 51 additions and 23 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.1.0.1000] - 2022-12-22

### Added
- Libary - New dismount callbacks were added `DokanRegisterWaitForFileSystemClosed` & `DokanUnregisterWaitForFileSystemClosed`.
- Dokanctl - New parameters: `/i` and `/r` can now use `a` to install the driver and network provider together.

### Changed
- Installer - Due to the migration of the `INF` to primitive drivers that no longer accepts creating services for `system32/drivers`, `dokanctl` is now used to install the driver service and register `EventLog`.
- Kernel - Migrate `INF` to primitive driver and discard service and `EventLog` section.
- Multiple documentation enhancement.
- Memfs - Replace deprecated `lock_guard` by `scoped_lock`.
- Mirror - Use `OVERLAPPED` for offset write and read.
- Library - Improve failure logging `ResetTimeout` `SendReleaseIRP` `OpenRequestorToken`.
- Library - Fix `MatchFiles` not checking the pattern when `FindFilesWithPattern` returned `STATUS_NOT_IMPLEMENTED`.
- Library - Async call `BroadcastSystemMessage` to avoid possible hangs from receiver apps during un/mount.

### Fixed
- Library - Allow directory listing without open handle (v2 regression).
- Library - `FindFiles` - Add `.` and `..` at the front of the results.
- FUSE - Fix bool wrongly used as bitwise operation.
- FUSE - Fix unsafe uncName buffer usage in dokanOptions.
- FUSE - Fix unsafe nullptr mountpoint free.
- Kernel - Fix log BSOD due to incorrect parameter type passed when forward logs are enabled.
- Kernel - Fix IRP cancellation BSOD.
- Kernel - Remove from `PendingIrp` list the IRP already freed or canceled during `DokanEventWrite`.
- Kernel - Fix deadlock due to `CcPurgeCacheSection` closing another `FileObject` for the `FCB` re-entrantly from cleanup.

## [2.0.6.1000] - 2022-10-02

### Changed
Expand Down Expand Up @@ -682,6 +709,7 @@ Latest Dokan version from Hiroki Asakawa.
[http://dokan-dev.net/en]( http://web.archive.org/web/20150419082954/http://dokan-dev.net/en/)


[2.1.0.1000]: https://github.com/dokan-dev/dokany/compare/v2.0.6.1000...v2.1.0.1000
[2.0.6.1000]: https://github.com/dokan-dev/dokany/compare/v2.0.5.1000...v2.0.6.1000
[2.0.5.1000]: https://github.com/dokan-dev/dokany/compare/v2.0.4.1000...v2.0.5.1000
[2.0.4.1000]: https://github.com/dokan-dev/dokany/compare/v2.0.3.2000...v2.0.4.1000
Expand Down
2 changes: 1 addition & 1 deletion Dokan.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros">
<DOKANAPIVersion>2</DOKANAPIVersion>
<DOKANVersion>2.0.6</DOKANVersion>
<DOKANVersion>2.1.0</DOKANVersion>
</PropertyGroup>
<PropertyGroup />
<ItemDefinitionGroup />
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
DOKAN_MAIN_BUILD_JOB_NAME: "Image: Visual Studio 2019; Configuration: All"

skip_tags: true
version: 2.0.3-{build}
version: 2.1.0-{build}
configuration:
- All
- SonarQube
Expand Down
2 changes: 1 addition & 1 deletion documentations/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = Dokan
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 2.0.6
PROJECT_NUMBER = 2.1.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion dokan/dokan.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ extern "C" {
/** @{ */

/** The current Dokan version (200 means ver 2.0.0). \ref DOKAN_OPTIONS.Version */
#define DOKAN_VERSION 206
#define DOKAN_VERSION 210
/** Minimum Dokan version (ver 2.0.0) accepted. */
#define DOKAN_MINIMUM_COMPATIBLE_VERSION 200
/** Driver file name including the DOKAN_MAJOR_API_VERSION */
Expand Down
8 changes: 4 additions & 4 deletions dokan/dokan.rc
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,6,1000
PRODUCTVERSION 2,0,6,1000
FILEVERSION 2,1,0,1000
PRODUCTVERSION 2,1,0,1000
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -34,12 +34,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Dokan Project"
VALUE "FileDescription", "Dokan Library"
VALUE "FileVersion", "2.0.6.1000"
VALUE "FileVersion", "2.1.0.1000"
VALUE "InternalName", "dokan.dll"
VALUE "LegalCopyright", "Copyright (C) 2023"
VALUE "OriginalFilename", "dokan.dll"
VALUE "ProductName", "Dokan"
VALUE "ProductVersion", "2.0.6.1000"
VALUE "ProductVersion", "2.1.0.1000"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions dokan_fuse/src/dokanfuse.rc
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,6,1000
PRODUCTVERSION 2,0,6,1000
FILEVERSION 2,1,0,1000
PRODUCTVERSION 2,1,0,1000
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -34,12 +34,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Dokan Project"
VALUE "FileDescription", "Dokan Fuse library"
VALUE "FileVersion", "2.0.6.1000"
VALUE "FileVersion", "2.1.0.1000"
VALUE "InternalName", "dokanfuse.dll"
VALUE "LegalCopyright", "Copyright (C) 2021"
VALUE "OriginalFilename", "dokanfuse.dll"
VALUE "ProductName", "Dokan"
VALUE "ProductVersion", "2.0.6.1000"
VALUE "ProductVersion", "2.1.0.1000"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions dokan_np/dokan_np.rc
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,6,1000
PRODUCTVERSION 2,0,6,1000
FILEVERSION 2,1,0,1000
PRODUCTVERSION 2,1,0,1000
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -34,12 +34,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Dokan Project"
VALUE "FileDescription", "Dokan Network Provider"
VALUE "FileVersion", "2.0.6.1000"
VALUE "FileVersion", "2.1.0.1000"
VALUE "InternalName", "dokan.dll"
VALUE "LegalCopyright", "Copyright (C) 2021"
VALUE "OriginalFilename", "dokannp.dll"
VALUE "ProductName", "Dokan"
VALUE "ProductVersion", "2.0.6.1000"
VALUE "ProductVersion", "2.1.0.1000"
END
END
BLOCK "VarFileInfo"
Expand Down
6 changes: 3 additions & 3 deletions dokan_wix/version.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Include>
<?define ProductName="Dokan Library" ?>
<?define ProductCodeX64="{9A7325EA-D3C9-0200-0006-221002114833}" ?>
<?define ProductCodeX64="{9A7325EA-D3C9-0201-0000-231222144112}" ?>
<?define UpgradeCodeX64="{31A8F445-2AC6-494B-819C-4F4E1B2AECF1}" ?>
<?define ProductCodeX86="{D1680D5B-295F-0200-0006-221002114833}" ?>
<?define ProductCodeX86="{D1680D5B-295F-0201-0000-231222144112}" ?>
<?define UpgradeCodeX86="{B08DE90A-F064-4ADC-99AC-2EC933417CC5}" ?>
<?define ProviderKey="{6DE61B71-BBFA-4007-8660-BD13A0DF9004}" ?>
<?define BundleUpgradeCode="{F9DD32AC-C2BA-4B2C-841F-B34ABED0A0F1}" ?>
<?define BaseVersion="2.0.6" ?>
<?define BaseVersion="2.1.0" ?>
<?define MajorVersion="2" ?>
<?define BuildVersion="1000" ?>
<?define CompanyName="Dokany Project" ?>
Expand Down
8 changes: 4 additions & 4 deletions sys/dokan.rc
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,6,1000
PRODUCTVERSION 2,0,6,1000
FILEVERSION 2,1,0,1000
PRODUCTVERSION 2,1,0,1000
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -34,12 +34,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Dokan Project"
VALUE "FileDescription", "Dokan Driver"
VALUE "FileVersion", "2.0.6.1000"
VALUE "FileVersion", "2.1.0.1000"
VALUE "InternalName", "dokan.sys"
VALUE "LegalCopyright", "Copyright (C) 2021"
VALUE "OriginalFilename", "dokan.sys"
VALUE "ProductName", "Dokan"
VALUE "ProductVersion", "2.0.6.1000"
VALUE "ProductVersion", "2.1.0.1000"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit bcb03e9

Please sign in to comment.