diff --git a/app/src/main/java/io/xpipe/app/comp/base/ErrorOverlayComp.java b/app/src/main/java/io/xpipe/app/comp/base/ErrorOverlayComp.java index f0c7fbf2..c5c30c00 100644 --- a/app/src/main/java/io/xpipe/app/comp/base/ErrorOverlayComp.java +++ b/app/src/main/java/io/xpipe/app/comp/base/ErrorOverlayComp.java @@ -27,7 +27,7 @@ public class ErrorOverlayComp extends SimpleComp { var comp = Comp.of(() -> { var l = new TextArea(); l.textProperty().bind(text); - l.setWrapText(true); + l.setWrapText(false); l.getStyleClass().add("error-overlay-comp"); l.setEditable(false); return l; diff --git a/app/src/main/java/io/xpipe/app/comp/storage/store/StoreEntryFlatMiniSectionComp.java b/app/src/main/java/io/xpipe/app/comp/storage/store/StoreEntryFlatMiniSectionComp.java index f771ba85..896944ed 100644 --- a/app/src/main/java/io/xpipe/app/comp/storage/store/StoreEntryFlatMiniSectionComp.java +++ b/app/src/main/java/io/xpipe/app/comp/storage/store/StoreEntryFlatMiniSectionComp.java @@ -29,7 +29,6 @@ public class StoreEntryFlatMiniSectionComp extends SimpleComp { ALL.clear(); var depth = 0; for (StoreSection v : topLevel.getChildren()) { - System.out.println(v.getWrapper().getEntry().getName() + " " + v.getChildren().size()); add(depth, v); } }); diff --git a/core/src/main/java/io/xpipe/core/process/ProcessOutputException.java b/core/src/main/java/io/xpipe/core/process/ProcessOutputException.java index d722a19c..e6d0e17e 100644 --- a/core/src/main/java/io/xpipe/core/process/ProcessOutputException.java +++ b/core/src/main/java/io/xpipe/core/process/ProcessOutputException.java @@ -9,7 +9,7 @@ import java.util.stream.Collectors; public class ProcessOutputException extends Exception { public static ProcessOutputException withPrefix(String customPrefix, ProcessOutputException ex) { - var messageSuffix = ex.getOutput() != null && !ex.getOutput().isBlank() ? ": " + ex.getOutput() : ""; + var messageSuffix = ex.getOutput() != null && !ex.getOutput().isBlank() ? ":\n" + ex.getOutput() : ""; var message = customPrefix + messageSuffix; return new ProcessOutputException(message, ex.getExitCode(), ex.getOutput()); } diff --git a/dist/changelogs/1.1.1.md b/dist/changelogs/1.1.1.md new file mode 100644 index 00000000..fc6bcc22 --- /dev/null +++ b/dist/changelogs/1.1.1.md @@ -0,0 +1,10 @@ +## Changes in 1.1.1 + +- Improve startup time +- Fix file browser not working for some Alpine Linux distributions +- Add support for Tabby terminals +- Start up wsl sessions in user home directory +- Improve search for connections dialog +- Improve accessibility support for screen readers +- Improve error messages +- Many small miscellaneous fixes and improvements \ No newline at end of file diff --git a/version b/version index 1cc5f657..8cfbc905 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.1.0 \ No newline at end of file +1.1.1 \ No newline at end of file