Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien JUND committed Nov 28, 2017
1 parent c20947c commit 5639855
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 20 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,25 @@ 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/).

## [Unreleased] - 1.1.0.1000
## [1.1.0.1000] - 2017-11-28
### Added
- Mirror - Add Impersonate Option for Security Enhancement.
- FUSE - Add read-only option
- Installer - Add VCRedistVersion variable / Now display version needed
- Dokanctl - Add usage option /?
- Kernel / Library - Add New FileRenameInformationEx since Windows 10 RS1

### Changed
- FUSE - cross-compile 32-bit Cygwin DLL from 64-bit
- Library - Merge DokanMapStandardToGenericAccess with DokanMapKernelToUserCreateFileFlags
- Move to VS 2017 / v141 / SDK 10.0.16299.0 / Installer Redist 2017

### Fixed
- Kernel - Fix current session unmount not releasing the device properly
- Mirror - Cannot open a read only file for delete
- Mirror - Fix SetFileAttributes implementation by not updating when FileAttributes is 0x00
- Installer - Wrong new logo size
- Kernel - Fixes #616 Only lock when not paging io

## [1.0.5.1000] - 2017-09-19
### Added
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>1</DOKANAPIVersion>
<DOKANVersion>1.0.5</DOKANVersion>
<DOKANVersion>1.1.0</DOKANVersion>
</PropertyGroup>
<PropertyGroup />
<ItemDefinitionGroup />
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 1,0,5,1000
PRODUCTVERSION 1,0,5,1000
FILEVERSION 1,1,0,1000
PRODUCTVERSION 1,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", "1.0.5.1000"
VALUE "FileVersion", "1.1.0.1000"
VALUE "InternalName", "dokan.dll"
VALUE "LegalCopyright", "Copyright (C) 2017"
VALUE "OriginalFilename", "dokan.dll"
VALUE "ProductName", "Dokan"
VALUE "ProductVersion", "1.0.5.1000"
VALUE "ProductVersion", "1.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 1,0,5,1000
PRODUCTVERSION 1,0,5,1000
FILEVERSION 1,1,0,1000
PRODUCTVERSION 1,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", "1.0.5.1000"
VALUE "FileVersion", "1.1.0.1000"
VALUE "InternalName", "dokanfuse.dll"
VALUE "LegalCopyright", "Copyright (C) 2017"
VALUE "OriginalFilename", "dokanfuse.dll"
VALUE "ProductName", "Dokan"
VALUE "ProductVersion", "1.0.5.1000"
VALUE "ProductVersion", "1.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 1,0,5,1000
PRODUCTVERSION 1,0,5,1000
FILEVERSION 1,1,0,1000
PRODUCTVERSION 1,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", "1.0.5.1000"
VALUE "FileVersion", "1.1.0.1000"
VALUE "InternalName", "dokan.dll"
VALUE "LegalCopyright", "Copyright (C) 2017"
VALUE "OriginalFilename", "dokannp.dll"
VALUE "ProductName", "Dokan"
VALUE "ProductVersion", "1.0.5.1000"
VALUE "ProductVersion", "1.1.0.1000"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions dokan_wix/version.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Include>
<?define ProductName="Dokan Library" ?>
<?define ProductCodeX64="{65A3A964-3DC3-0100-0005-170919164736}" ?>
<?define ProductCodeX64="{65A3A964-3DC3-0101-0000-171128090627}" ?>
<?define UpgradeCodeX64="{2EF80C64-08A6-4FE1-BE92-13FD293C831B}" ?>
<?define ProductCodeX86="{65A3A986-3DC3-0100-0005-170919164736}" ?>
<?define ProductCodeX86="{65A3A986-3DC3-0101-0000-171128090627}" ?>
<?define UpgradeCodeX86="{2EF80C86-08A6-4FE1-BE92-13FD293C831B}" ?>
<?define ProviderKey="{5F030BFA-CE6E-408A-9694-F593B319DBBE}" ?>
<?define BundleUpgradeCode="{A30D29CD-FA58-4542-8D41-7EDD1FB1EE5A}" ?>
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 1,0,5,1000
PRODUCTVERSION 1,0,5,1000
FILEVERSION 1,1,0,1000
PRODUCTVERSION 1,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", "1.0.5.1000"
VALUE "FileVersion", "1.1.0.1000"
VALUE "InternalName", "dokan.sys"
VALUE "LegalCopyright", "Copyright (C) 2017"
VALUE "OriginalFilename", "dokan.sys"
VALUE "ProductName", "Dokan"
VALUE "ProductVersion", "1.0.5.1000"
VALUE "ProductVersion", "1.1.0.1000"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 5639855

Please sign in to comment.