File tree Expand file tree Collapse file tree 8 files changed +35
-22
lines changed
Expand file tree Collapse file tree 8 files changed +35
-22
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file.
33
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
55
6+ ## [ 2.2.0.1000] - 2024-08-18
7+
8+ ### Changed
9+ - Installer - Migrate to WiX 5 and Add ARM64 MSI (bundled in the bootstrapper).
10+ - Library - Keep network drive isolated between users when browsing with UNC path (#1235 ).
11+ - FUSE - Add option ` -b ` to enable Dokan ipc batching option.
12+
13+ ### Fixed
14+ - Library - Fix missing return value on ` DokanNetworkProviderUninstall ` failure.
15+ - Memfs - Release instance resources on unmount.
16+ - Kernel - Prevent MountEntry node access when concurrently removed.
17+
618## [ 2.1.0.1000] - 2023-12-22
719
820### Added
@@ -709,6 +721,7 @@ Latest Dokan version from Hiroki Asakawa.
709721 [ http://dokan-dev.net/en ] ( http://web.archive.org/web/20150419082954/http://dokan-dev.net/en/ )
710722
711723
724+ [ 2.2.0.1000 ] : https://github.com/dokan-dev/dokany/compare/v2.1.0.1000...v2.2.0.1000
712725[ 2.1.0.1000 ] : https://github.com/dokan-dev/dokany/compare/v2.0.6.1000...v2.1.0.1000
713726[ 2.0.6.1000 ] : https://github.com/dokan-dev/dokany/compare/v2.0.5.1000...v2.0.6.1000
714727[ 2.0.5.1000 ] : https://github.com/dokan-dev/dokany/compare/v2.0.4.1000...v2.0.5.1000
Original file line number Diff line number Diff line change 33 <ImportGroup Label =" PropertySheets" />
44 <PropertyGroup Label =" UserMacros" >
55 <DOKANAPIVersion >2</DOKANAPIVersion >
6- <DOKANVersion >2.1 .0</DOKANVersion >
6+ <DOKANVersion >2.2 .0</DOKANVersion >
77 </PropertyGroup >
88 <PropertyGroup />
99 <ItemDefinitionGroup />
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ extern "C" {
5656/** @{ */
5757
5858/** The current Dokan version (200 means ver 2.0.0). \ref DOKAN_OPTIONS.Version */
59- #define DOKAN_VERSION 210
59+ #define DOKAN_VERSION 220
6060/** Minimum Dokan version (ver 2.0.0) accepted. */
6161#define DOKAN_MINIMUM_COMPATIBLE_VERSION 200
6262/** Driver file name including the DOKAN_MAJOR_API_VERSION */
Original file line number Diff line number Diff line change 1616//
1717
1818VS_VERSION_INFO VERSIONINFO
19- FILEVERSION 2,1 ,0,1000
20- PRODUCTVERSION 2,1 ,0,1000
19+ FILEVERSION 2,2 ,0,1000
20+ PRODUCTVERSION 2,2 ,0,1000
2121 FILEFLAGSMASK 0x3fL
2222#ifdef _DEBUG
2323 FILEFLAGS 0x1L
@@ -34,12 +34,12 @@ BEGIN
3434 BEGIN
3535 VALUE "CompanyName", "Dokan Project"
3636 VALUE "FileDescription", "Dokan Library"
37- VALUE "FileVersion", "2.1 .0.1000"
37+ VALUE "FileVersion", "2.2 .0.1000"
3838 VALUE "InternalName", "dokan.dll"
3939 VALUE "LegalCopyright", "Copyright (C) 2023"
4040 VALUE "OriginalFilename", "dokan.dll"
4141 VALUE "ProductName", "Dokan"
42- VALUE "ProductVersion", "2.1 .0.1000"
42+ VALUE "ProductVersion", "2.2 .0.1000"
4343 END
4444 END
4545 BLOCK "VarFileInfo"
Original file line number Diff line number Diff line change 1616//
1717
1818VS_VERSION_INFO VERSIONINFO
19- FILEVERSION 2,1 ,0,1000
20- PRODUCTVERSION 2,1 ,0,1000
19+ FILEVERSION 2,2 ,0,1000
20+ PRODUCTVERSION 2,2 ,0,1000
2121 FILEFLAGSMASK 0x3fL
2222#ifdef _DEBUG
2323 FILEFLAGS 0x1L
@@ -34,12 +34,12 @@ BEGIN
3434 BEGIN
3535 VALUE "CompanyName", "Dokan Project"
3636 VALUE "FileDescription", "Dokan Fuse library"
37- VALUE "FileVersion", "2.1 .0.1000"
37+ VALUE "FileVersion", "2.2 .0.1000"
3838 VALUE "InternalName", "dokanfuse.dll"
3939 VALUE "LegalCopyright", "Copyright (C) 2021"
4040 VALUE "OriginalFilename", "dokanfuse.dll"
4141 VALUE "ProductName", "Dokan"
42- VALUE "ProductVersion", "2.1 .0.1000"
42+ VALUE "ProductVersion", "2.2 .0.1000"
4343 END
4444 END
4545 BLOCK "VarFileInfo"
Original file line number Diff line number Diff line change 1616//
1717
1818VS_VERSION_INFO VERSIONINFO
19- FILEVERSION 2,1 ,0,1000
20- PRODUCTVERSION 2,1 ,0,1000
19+ FILEVERSION 2,2 ,0,1000
20+ PRODUCTVERSION 2,2 ,0,1000
2121 FILEFLAGSMASK 0x3fL
2222#ifdef _DEBUG
2323 FILEFLAGS 0x1L
@@ -34,12 +34,12 @@ BEGIN
3434 BEGIN
3535 VALUE "CompanyName", "Dokan Project"
3636 VALUE "FileDescription", "Dokan Network Provider"
37- VALUE "FileVersion", "2.1 .0.1000"
37+ VALUE "FileVersion", "2.2 .0.1000"
3838 VALUE "InternalName", "dokan.dll"
3939 VALUE "LegalCopyright", "Copyright (C) 2021"
4040 VALUE "OriginalFilename", "dokannp.dll"
4141 VALUE "ProductName", "Dokan"
42- VALUE "ProductVersion", "2.1 .0.1000"
42+ VALUE "ProductVersion", "2.2 .0.1000"
4343 END
4444 END
4545 BLOCK "VarFileInfo"
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<Include >
33<?define ProductName =" Dokan Library" ?>
4- <?define ProductCodeX 64=" {9A7325EA-D3C9-0201 -0000-231222144112 }" ?>
4+ <?define ProductCodeX 64=" {9A7325EA-D3C9-0202 -0000-240818095850 }" ?>
55<?define UpgradeCodeX 64=" {31A8F445-2AC6-494B-819C-4F4E1B2AECF1}" ?>
6- <?define ProductCodeX 86=" {D1680D5B-295F-0201 -0000-231222144112 }" ?>
6+ <?define ProductCodeX 86=" {D1680D5B-295F-0202 -0000-240818095850 }" ?>
77<?define UpgradeCodeX 86=" {B08DE90A-F064-4ADC-99AC-2EC933417CC5}" ?>
8- <?define ProductCodeARM 64=" {24671A98-9A6B-4000-9CFC-D79A85F3EDD9 }" ?>
8+ <?define ProductCodeARM 64=" {24671A98-9A6B-0202-0000-240818095850 }" ?>
99<?define UpgradeCodeARM 64=" {BD055051-AFAD-497D-8297-C4389835870A}" ?>
1010<?define ProviderKey =" {6DE61B71-BBFA-4007-8660-BD13A0DF9004}" ?>
1111<?define BundleUpgradeCode =" {F9DD32AC-C2BA-4B2C-841F-B34ABED0A0F1}" ?>
12- <?define BaseVersion =" 2.1 .0" ?>
12+ <?define BaseVersion =" 2.2 .0" ?>
1313<?define MajorVersion =" 2" ?>
1414<?define BuildVersion =" 1000" ?>
1515<?define CompanyName =" Dokany Project" ?>
Original file line number Diff line number Diff line change 1616//
1717
1818VS_VERSION_INFO VERSIONINFO
19- FILEVERSION 2,1 ,0,1000
20- PRODUCTVERSION 2,1 ,0,1000
19+ FILEVERSION 2,2 ,0,1000
20+ PRODUCTVERSION 2,2 ,0,1000
2121 FILEFLAGSMASK 0x3fL
2222#ifdef _DEBUG
2323 FILEFLAGS 0x1L
@@ -34,12 +34,12 @@ BEGIN
3434 BEGIN
3535 VALUE "CompanyName", "Dokan Project"
3636 VALUE "FileDescription", "Dokan Driver"
37- VALUE "FileVersion", "2.1 .0.1000"
37+ VALUE "FileVersion", "2.2 .0.1000"
3838 VALUE "InternalName", "dokan.sys"
3939 VALUE "LegalCopyright", "Copyright (C) 2021"
4040 VALUE "OriginalFilename", "dokan.sys"
4141 VALUE "ProductName", "Dokan"
42- VALUE "ProductVersion", "2.1 .0.1000"
42+ VALUE "ProductVersion", "2.2 .0.1000"
4343 END
4444 END
4545 BLOCK "VarFileInfo"
You can’t perform that action at this time.
0 commit comments