Skip to content

Commit

Permalink
fix: update to Dokan 2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
KoltesDigital committed Oct 4, 2022
1 parent b5f88ad commit 4dd295f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ init:
install:
- ps: &download-dokany |
Invoke-WebRequest https://github.com/dokan-dev/dokany/releases/download/v2.0.5.1000/DokanSetup.exe -OutFile "$Env:TEMP\DokanSetup.exe"
Invoke-WebRequest https://github.com/dokan-dev/dokany/releases/download/v2.0.6.1000/DokanSetup.exe -OutFile "$Env:TEMP\DokanSetup.exe"
Start-Process "$Env:TEMP\DokanSetup.exe" -ArgumentList '/quiet /norestart' -Wait

if ($Env:USE_INSTALLED_LIB -eq $true) {
$Env:DokanLibrary2_LibraryPath_x64 = 'C:\Program Files\Dokan\Dokan Library-2.0.5\lib\'
$Env:DokanLibrary2_LibraryPath_x86 = 'C:\Program Files\Dokan\Dokan Library-2.0.5\x86\lib\'
$Env:DokanLibrary2_LibraryPath_x64 = 'C:\Program Files\Dokan\Dokan Library-2.0.6\lib\'
$Env:DokanLibrary2_LibraryPath_x86 = 'C:\Program Files\Dokan\Dokan Library-2.0.6\x86\lib\'
} else {
Remove-Item 'C:\Windows\System32\dokan2.dll'
Remove-Item 'C:\Windows\SysWOW64\dokan2.dll'
Expand Down
2 changes: 1 addition & 1 deletion dokan-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dokan-sys"
version = "0.3.0+dokan205"
version = "0.3.1+dokan206"
authors = ["DDoSolitary <[email protected]>"]
description = "Raw FFI bindings for Dokan (user mode file system library for Windows)"
homepage = "https://dokan-dev.github.io"
Expand Down
2 changes: 1 addition & 1 deletion dokan-sys/src/dokany
Submodule dokany updated 75 files
+18 −9 CHANGELOG.md
+1 −1 Dokan.props
+1 −1 documentations/Doxyfile
+1 −1 dokan/cleanup.c
+1 −1 dokan/close.c
+1 −1 dokan/directory.c
+45 −50 dokan/dokan.c
+3 −3 dokan/dokan.h
+4 −4 dokan/dokan.rc
+1 −1 dokan/dokan_pool.c
+1 −1 dokan/dokan_pool.h
+1 −1 dokan/dokan_vector.c
+1 −1 dokan/dokan_vector.h
+1 −1 dokan/dokanc.h
+2 −1 dokan/fileinfo.c
+1 −1 dokan/flush.c
+1 −1 dokan/lock.c
+1 −1 dokan/mount.c
+1 −1 dokan/read.c
+1 −1 dokan/security.c
+1 −1 dokan/setfile.c
+1 −1 dokan/timeout.c
+11 −11 dokan/version.c
+1 −1 dokan/volume.c
+1 −1 dokan/write.c
+1 −1 dokan_control/dokanctl.c
+4 −4 dokan_fuse/src/dokanfuse.rc
+4 −4 dokan_np/dokan_np.rc
+3 −3 dokan_wix/version.xml
+3 −3 samples/dokan_memfs/filenode.cpp
+1 −1 samples/dokan_memfs/filenode.h
+1 −1 samples/dokan_memfs/filenodes.cpp
+1 −1 samples/dokan_memfs/filenodes.h
+1 −1 samples/dokan_memfs/main.cpp
+1 −1 samples/dokan_memfs/memfs.cpp
+1 −1 samples/dokan_memfs/memfs.h
+1 −1 samples/dokan_memfs/memfs_helper.cpp
+1 −1 samples/dokan_memfs/memfs_helper.h
+1 −1 samples/dokan_memfs/memfs_operations.cpp
+1 −1 samples/dokan_memfs/memfs_operations.h
+1 −1 samples/dokan_mirror/mirror.c
+1 −1 sys/access.c
+1 −1 sys/cleanup.c
+1 −1 sys/close.c
+1 −1 sys/create.c
+1 −1 sys/device.c
+1 −1 sys/directory.c
+1 −1 sys/dispatch.c
+1 −1 sys/dokan.c
+1 −1 sys/dokan.h
+4 −4 sys/dokan.rc
+1 −1 sys/event.c
+1 −1 sys/except.c
+1 −15 sys/fileinfo.c
+1 −1 sys/flush.c
+1 −1 sys/fscontrol.c
+1 −1 sys/init.c
+1 −1 sys/lock.c
+1 −1 sys/notification.c
+1 −1 sys/public.h
+1 −1 sys/read.c
+1 −1 sys/security.c
+1 −1 sys/timeout.c
+1 −1 sys/util/fcb.c
+1 −1 sys/util/fcb.h
+1 −1 sys/util/irp_buffer_helper.c
+1 −1 sys/util/irp_buffer_helper.h
+1 −1 sys/util/log.c
+1 −1 sys/util/log.h
+1 −1 sys/util/mountmgr.c
+1 −1 sys/util/mountmgr.h
+1 −1 sys/util/str.c
+1 −1 sys/util/str.h
+1 −1 sys/volume.c
+1 −1 sys/write.c
4 changes: 2 additions & 2 deletions dokan/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dokan"
version = "0.3.0+dokan205"
version = "0.3.1+dokan206"
authors = ["DDoSolitary <[email protected]>"]
description = "Rust-friendly wrapper for Dokan (user mode file system library for Windows)"
homepage = "https://dokan-dev.github.io"
Expand All @@ -17,7 +17,7 @@ appveyor = { repository = "Liryna/dokan-rust" }

[dependencies]
bitflags = "1.2.1"
dokan-sys = { version = "0.3.0", path = "../dokan-sys" }
dokan-sys = { version = "0.3.1", path = "../dokan-sys" }
widestring = "0.4.3"
winapi = { version = "0.3.9", features = ["std", "errhandlingapi", "handleapi", "heapapi", "ioapiset", "minwinbase", "minwindef", "ntdef", "ntstatus", "processthreadsapi", "sddl", "securitybaseapi", "synchapi", "winbase", "winerror", "winnt"] }

Expand Down

0 comments on commit 4dd295f

Please sign in to comment.