Skip to content

Commit

Permalink
Release 1.4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Liryna committed Jun 2, 2020
1 parent 34a117f commit 67b67df
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [1.4.0.0] - 2020-06-02
### Added
- Replace `DokanOptions` of dokany 1.4.0 `OptimizeSingleNameSearch` to `EnableFCBGC`.
- Support for .NET Standard 2.0

## [1.3.0.0] - 2019-10-09
### Added
- Support dokany 1.3.0 `DokanNotify` feature in `Dokan.Notify` class.
Expand Down
6 changes: 3 additions & 3 deletions DokanNet/DokanNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

This is a .NET wrapper over Dokan, and allows you to create your own file systems in Windows.</Description>
<Copyright>Copyright (C) 2017</Copyright>
<Version>1.3.0.0</Version>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<Version>1.4.0.0</Version>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<FileVersion>1.4.0.0</FileVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Company>Dokan-dev</Company>
<Authors>AdrienJ, MaximeC, Hiroki Asakawa</Authors>
Expand Down
11 changes: 5 additions & 6 deletions DokanNet/DokanOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,11 @@ public enum DokanOptions : long
DisableOplocks = 1024,

/// <summary>
/// Whether Dokan should satisfy a single-entry, name-only directory search
/// without dispatching to <see cref="IDokanOperations.FindFiles(string, out System.Collections.Generic.IList{FileInformation}, IDokanFileInfo)"/>,
/// if there is already an open file from which the driver can just copy the
/// normalized name. These searches are frequently done inside of CreateFile
/// calls on Windows 7.
/// 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.
/// </summary>
OptimizeSingleNameSearch = 2048,
EnableFCBGC = 2048,
}
}
2 changes: 1 addition & 1 deletion DokanNet/documentations/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = Dokan-dotnet
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.3.0.0
PROJECT_NUMBER = 1.4.0.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 appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ install:
- ps: |
Write-Host "Dokan download..." -ForegroundColor Green
New-item -type directory -path C:\projects\dokan-dotnet\ -Force
Start-FileDownload 'https://github.com/dokan-dev/dokany/releases/download/v1.3.1.1000/DokanSetup_redist.exe' -FileName 'C:\projects\dokan-dotnet\DokanSetup.exe'
Start-FileDownload 'https://github.com/dokan-dev/dokany/releases/download/v1.4.0.1000/DokanSetup_redist.exe' -FileName 'C:\projects\dokan-dotnet\DokanSetup.exe'
Write-Host "Dokan downloaded." -ForegroundColor Green
- cmd: |
C:\projects\dokan-dotnet\DokanSetup.exe /quiet
Expand Down

0 comments on commit 67b67df

Please sign in to comment.