Skip to content

Commit 3d91b76

Browse files
committed
Release 2.0.4.1000
1 parent de96b89 commit 3d91b76

File tree

9 files changed

+28
-26
lines changed

9 files changed

+28
-26
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,18 @@ All notable changes to this project will be documented in this file.
33

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

6-
## [Unreleased] - 2.0.4.1000
6+
## [2.0.4.1000] - 2021-04-30
77

88
### Changed
9-
- Kernel - Remove possible `UNCName` prefix during Create.
9+
- Kernel - Remove possible `UNCName` prefix in `Filename` during `CreateFile`.
10+
- Library - Doc - Recommend `FindFiles` to be implemented
1011
- Library - Allow `FindFiles` to be optional by using `FindFilesWithPattern` with wildcard.
1112

1213
### Fixed
13-
- FUSE - update library name in module definition.
1414
- Library - Move `UserContext` under `OpenCount` lock to reduce incorrect value used when calling `Close`.
15-
- Kernel - Clear write change flag when `FCB` is being reused.
15+
- Kernel - Clear write change flag when FCB is being reused.
16+
- Kernel - Remove unsupported eject media support (deadlock).
17+
- FUSE - Update library name in module definition.
1618

1719
## [2.0.3.2000] - 2021-02-27
1820

Dokan.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<ImportGroup Label="PropertySheets" />
44
<PropertyGroup Label="UserMacros">
55
<DOKANAPIVersion>2</DOKANAPIVersion>
6-
<DOKANVersion>2.0.3</DOKANVersion>
6+
<DOKANVersion>2.0.4</DOKANVersion>
77
</PropertyGroup>
88
<PropertyGroup />
99
<ItemDefinitionGroup />

documentations/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = Dokan
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 2.0.3
41+
PROJECT_NUMBER = 2.0.4
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

dokan/dokan.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 203
59+
#define DOKAN_VERSION 204
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 */

dokan/dokan.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
//
1717

1818
VS_VERSION_INFO VERSIONINFO
19-
FILEVERSION 2,0,3,1000
20-
PRODUCTVERSION 2,0,3,1000
19+
FILEVERSION 2,0,4,1000
20+
PRODUCTVERSION 2,0,4,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.0.3.1000"
37+
VALUE "FileVersion", "2.0.4.1000"
3838
VALUE "InternalName", "dokan.dll"
3939
VALUE "LegalCopyright", "Copyright (C) 2021"
4040
VALUE "OriginalFilename", "dokan.dll"
4141
VALUE "ProductName", "Dokan"
42-
VALUE "ProductVersion", "2.0.3.1000"
42+
VALUE "ProductVersion", "2.0.4.1000"
4343
END
4444
END
4545
BLOCK "VarFileInfo"

dokan_fuse/src/dokanfuse.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
//
1717

1818
VS_VERSION_INFO VERSIONINFO
19-
FILEVERSION 2,0,3,1000
20-
PRODUCTVERSION 2,0,3,1000
19+
FILEVERSION 2,0,4,1000
20+
PRODUCTVERSION 2,0,4,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.0.3.1000"
37+
VALUE "FileVersion", "2.0.4.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.0.3.1000"
42+
VALUE "ProductVersion", "2.0.4.1000"
4343
END
4444
END
4545
BLOCK "VarFileInfo"

dokan_np/dokan_np.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
//
1717

1818
VS_VERSION_INFO VERSIONINFO
19-
FILEVERSION 2,0,3,1000
20-
PRODUCTVERSION 2,0,3,1000
19+
FILEVERSION 2,0,4,1000
20+
PRODUCTVERSION 2,0,4,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.0.3.1000"
37+
VALUE "FileVersion", "2.0.4.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.0.3.1000"
42+
VALUE "ProductVersion", "2.0.4.1000"
4343
END
4444
END
4545
BLOCK "VarFileInfo"

dokan_wix/version.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Include>
33
<?define ProductName="Dokan Library" ?>
4-
<?define ProductCodeX64="{9A7325EA-D3C9-4A13-848C-C137AE6C4AE9}" ?>
4+
<?define ProductCodeX64="{9A7325EA-D3C9-0200-0004-220430082449}" ?>
55
<?define UpgradeCodeX64="{31A8F445-2AC6-494B-819C-4F4E1B2AECF1}" ?>
6-
<?define ProductCodeX86="{D1680D5B-295F-4DA2-A963-81938532C6F0}" ?>
6+
<?define ProductCodeX86="{D1680D5B-295F-0200-0004-220430082449}" ?>
77
<?define UpgradeCodeX86="{B08DE90A-F064-4ADC-99AC-2EC933417CC5}" ?>
88
<?define ProviderKey="{6DE61B71-BBFA-4007-8660-BD13A0DF9004}" ?>
99
<?define BundleUpgradeCode="{F9DD32AC-C2BA-4B2C-841F-B34ABED0A0F1}" ?>
10-
<?define BaseVersion="2.0.3" ?>
10+
<?define BaseVersion="2.0.4" ?>
1111
<?define MajorVersion="2" ?>
1212
<?define BuildVersion="1000" ?>
1313
<?define CompanyName="Dokany Project" ?>

sys/dokan.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
//
1717

1818
VS_VERSION_INFO VERSIONINFO
19-
FILEVERSION 2,0,3,1000
20-
PRODUCTVERSION 2,0,3,1000
19+
FILEVERSION 2,0,4,1000
20+
PRODUCTVERSION 2,0,4,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.0.3.1000"
37+
VALUE "FileVersion", "2.0.4.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.0.3.1000"
42+
VALUE "ProductVersion", "2.0.4.1000"
4343
END
4444
END
4545
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)