Small fixes [stage]

This commit is contained in:
crschnick 2023-06-05 12:46:57 +00:00
parent 271e2c8013
commit b86671d971
5 changed files with 13 additions and 4 deletions

View file

@ -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;

View file

@ -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);
}
});

View file

@ -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());
}

10
dist/changelogs/1.1.1.md vendored Normal file
View file

@ -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

View file

@ -1 +1 @@
1.1.0
1.1.1