From 8c65bd19c2ee62675c30873615b4d123a9a25d34 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Mon, 13 Jun 2022 10:00:14 +0200 Subject: [PATCH 1/3] Make FUSE the default volume impl --- src/main/java/org/cryptomator/common/settings/Settings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/cryptomator/common/settings/Settings.java b/src/main/java/org/cryptomator/common/settings/Settings.java index 8cc23bbfc..36d4d16aa 100644 --- a/src/main/java/org/cryptomator/common/settings/Settings.java +++ b/src/main/java/org/cryptomator/common/settings/Settings.java @@ -36,7 +36,7 @@ public class Settings { public static final int DEFAULT_NUM_TRAY_NOTIFICATIONS = 3; public static final WebDavUrlScheme DEFAULT_GVFS_SCHEME = WebDavUrlScheme.DAV; public static final boolean DEFAULT_DEBUG_MODE = false; - public static final VolumeImpl DEFAULT_PREFERRED_VOLUME_IMPL = SystemUtils.IS_OS_WINDOWS ? VolumeImpl.DOKANY : VolumeImpl.FUSE; + public static final VolumeImpl DEFAULT_PREFERRED_VOLUME_IMPL = VolumeImpl.FUSE; public static final UiTheme DEFAULT_THEME = UiTheme.LIGHT; @Deprecated // to be changed to "whatever is available" eventually public static final String DEFAULT_KEYCHAIN_PROVIDER = SystemUtils.IS_OS_WINDOWS ? "org.cryptomator.windows.keychain.WindowsProtectedKeychainAccess" : SystemUtils.IS_OS_MAC ? "org.cryptomator.macos.keychain.MacSystemKeychainAccess" : "org.cryptomator.linux.keychain.SecretServiceKeychainAccess"; From e5cb271e2856502944235fee190a1a9cc87a6b0a Mon Sep 17 00:00:00 2001 From: Tobias Hagemann Date: Wed, 22 Jun 2022 10:42:13 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index ded200883..c19b6eaca 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,6 @@ Cryptomator is provided free of charge as an open-source project despite the hig -- [Jameson Lopp](https://www.lopp.net/) - --- ## Introduction From 8043a4ea1097d1feb02301c1014cf206809dfd93 Mon Sep 17 00:00:00 2001 From: Tobias Hagemann Date: Wed, 22 Jun 2022 10:42:59 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index c19b6eaca..66644f1a5 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,6 @@ For more information on the security details visit [cryptomator.org](https://doc * JDK 17 (e.g. temurin) * Maven 3 -* Optional: OS-dependent build tools for native packaging (see [Windows](https://github.com/cryptomator/cryptomator-win), [OS X](https://github.com/cryptomator/cryptomator-osx), [Linux](https://github.com/cryptomator/builder-containers)) ### Run Maven