From bbf91d112b8eec59413f05d215385ddc5d0da9d2 Mon Sep 17 00:00:00 2001 From: crschnick Date: Sat, 4 Jan 2025 02:56:15 +0000 Subject: [PATCH] Small fixes --- app/build.gradle | 2 +- .../xpipe/app/comp/base/ContextualFileReferenceChoiceComp.java | 2 +- dist/changelogs/14.0.md | 2 ++ dist/licenses/sentry.properties | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 1417cead1..6aa569d65 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -56,7 +56,7 @@ dependencies { exclude group: 'org.apache.commons', module: 'commons-lang3' } api 'org.apache.commons:commons-lang3:3.17.0' - api 'io.sentry:sentry:7.19.0' + api 'io.sentry:sentry:7.20.0' api 'commons-io:commons-io:2.18.0' api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.18.2" api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.18.2" diff --git a/app/src/main/java/io/xpipe/app/comp/base/ContextualFileReferenceChoiceComp.java b/app/src/main/java/io/xpipe/app/comp/base/ContextualFileReferenceChoiceComp.java index e6689cb43..41bddc8b3 100644 --- a/app/src/main/java/io/xpipe/app/comp/base/ContextualFileReferenceChoiceComp.java +++ b/app/src/main/java/io/xpipe/app/comp/base/ContextualFileReferenceChoiceComp.java @@ -101,7 +101,7 @@ public class ContextualFileReferenceChoiceComp extends Comp> try { var source = Path.of(currentPath.trim()); var dataDir = DataStorage.get().getDataDir(); - var target = dataDir.resolve(sync.getTargetLocation().apply(source)); + var target = sync.getTargetLocation().apply(source); if (Files.exists(source)) { var shouldCopy = AppWindowHelper.showConfirmationAlert( "confirmGitShareTitle", "confirmGitShareHeader", "confirmGitShareContent"); diff --git a/dist/changelogs/14.0.md b/dist/changelogs/14.0.md index 6cdcbda59..fe443d14a 100644 --- a/dist/changelogs/14.0.md +++ b/dist/changelogs/14.0.md @@ -31,6 +31,7 @@ If you have previously used a custom vault passphrase to lock your vault, this w - The custom service creation has been moved to the top level to make it easier to locate - There is now the option to specify a URL path for services that will be appended when opened in the browser - You can now specify the service type instead of always having to choose between http and https when opening it +- Services for containers can now be refreshed from a dedicated button instead of a fixed services entry, saving some vertical display space - Services now show better when they are active or inactive ## Other @@ -48,6 +49,7 @@ If you have previously used a custom vault passphrase to lock your vault, this w - The Python API is now featured more prominently - Launched terminals are now automatically focused after launch - Add support for Ghostty on Linux +- The webtop docker image is now also available for arm64 platforms - Add translations for Swedish, Polish, Indonesian ## Fixes diff --git a/dist/licenses/sentry.properties b/dist/licenses/sentry.properties index 8400fe53d..120c61eaa 100644 --- a/dist/licenses/sentry.properties +++ b/dist/licenses/sentry.properties @@ -1,4 +1,4 @@ name=Sentry Java -version=7.19.0 +version=7.20.0 license=MIT License link=https://github.com/getsentry/sentry-java \ No newline at end of file