mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-24 08:18:33 -04:00
Small fixes
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -101,7 +101,7 @@ public class ContextualFileReferenceChoiceComp extends Comp<CompStructure<HBox>>
|
||||
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");
|
||||
|
||||
2
dist/changelogs/14.0.md
vendored
2
dist/changelogs/14.0.md
vendored
@@ -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
|
||||
|
||||
2
dist/licenses/sentry.properties
vendored
2
dist/licenses/sentry.properties
vendored
@@ -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
|
||||
Reference in New Issue
Block a user