Skip to content

Commit

Permalink
Merge branch 'hotfix/1.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
overheadhunter committed Jan 16, 2019
2 parents 9fd179d + ab5ee0d commit ae1dcbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.cryptomator</groupId>
<artifactId>fuse-nio-adapter</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
<name>FUSE-NIO-Adapter</name>
<description>Access resources at a given NIO path via FUSE.</description>
<url>https://github.com/cryptomator/fuse-nio-adapter</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ protected String[] getFuseOptions() {
mountOptions.add("-ovolname=" + mountName);
mountOptions.add("-oauto_xattr");
mountOptions.add("-oauto_cache");
mountOptions.add("-omodules=iconv,from_code=UTF-8,to_code=UTF-8-MAC");
mountOptions.add("-onoappledouble"); // vastly impacts performance for some reason...
// mountOptions.add("-s"); // otherwise we still have race conditions (especially when disabling noappledouble and copying dirs to mount)
mountOptions.add("-odefault_permissions"); // let the kernel assume permissions based on file attributes etc
Expand Down

0 comments on commit ae1dcbe

Please sign in to comment.