Skip to content

Commit

Permalink
Merge branch 'develop' into release/1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
infeo committed Sep 16, 2024
2 parents 681494a + d2a2794 commit b3cb765
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<project.jdk.version>22</project.jdk.version>

<!-- runtime dependencies -->
<api.version>1.4.0-beta2</api.version>
<slf4j.version>2.0.14</slf4j.version>
<api.version>1.4.0</api.version>
<slf4j.version>2.0.16</slf4j.version>
<jackson.version>2.17.2</jackson.version>

<!-- test dependencies -->
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@
requires com.fasterxml.jackson.databind;

opens org.cryptomator.windows.keychain to com.fasterxml.jackson.databind;
opens org.cryptomator.windows.quickaccess to org.cryptomator.integrations.api;

provides AutoStartProvider with WindowsAutoStart;
provides KeychainAccessProvider with WindowsProtectedKeychainAccess;
provides UiAppearanceProvider with WinUiAppearanceProvider;
provides RevealPathService with ExplorerRevealPathService;
provides QuickAccessService with ExplorerQuickAccessService;

}
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public String displayName() {
}

@Override
public void storePassphrase(String key, String displayName, CharSequence passphrase) throws KeychainAccessException {
public void storePassphrase(String key, String displayName, CharSequence passphrase, boolean ignored) throws KeychainAccessException {
loadKeychainEntriesIfNeeded();
ByteBuffer buf = UTF_8.encode(CharBuffer.wrap(passphrase));
byte[] cleartext = new byte[buf.remaining()];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public QuickAccessEntry add(Path target, String displayName) throws QuickAccessS
if (target == null) {
throw new IllegalArgumentException("Parameter 'target' must not be null.");
}
var entryName = "Vault - " + displayName;
var entryName = displayName.length() > 40? displayName.substring(0, 40) : displayName; //truncate name
var clsid = "{" + UUID.randomUUID() + "}";
LOG.debug("Creating navigation pane entry with CLSID {}", clsid);
//1. Creates the shell extension and names it
Expand Down

0 comments on commit b3cb765

Please sign in to comment.