Small visual fixes [release]

This commit is contained in:
crschnick 2023-10-25 17:17:07 +00:00
parent b410d8e863
commit 6bd96563d0
6 changed files with 21 additions and 3 deletions

View file

@ -91,7 +91,7 @@ public class BrowserNavBar extends SimpleComp {
: "home_icon.svg";
},
model.getCurrentPath());
var breadcrumbsGraphic = PrettyImageHelper.ofSvg(graphic, 22, 22)
var breadcrumbsGraphic = PrettyImageHelper.ofSvg(graphic, 16, 16)
.padding(new Insets(0, 0, 1, 0))
.styleClass("path-graphic")
.createRegion();

View file

@ -77,6 +77,7 @@ public class StoreEntryListStatusComp extends SimpleComp {
AppFont.medium(menu);
GrowAugment.create(true, false).augment(menu);
StoreCreationMenu.addButtons(menu);
menu.setOpacity(0.85);
return menu;
}

View file

@ -39,6 +39,10 @@ public abstract class Comp<S extends CompStructure<?>> {
return of(() -> new Spacer(Orientation.HORIZONTAL));
}
public static Comp<CompStructure<Spacer>> vspacer() {
return of(() -> new Spacer(Orientation.VERTICAL));
}
public static Comp<CompStructure<Spacer>> vspacer(double size) {
return of(() -> new Spacer(size, Orientation.VERTICAL));
}

View file

@ -227,9 +227,13 @@
-fx-background-color: -color-accent-muted;
}
.browser .tab-container {
-fx-border-radius: 4;
-fx-background-radius: 4;
}
.browser .tab {
-fx-opacity: 0.6;
-fx-border-radius: 4;
}
.browser .tab:hover {

View file

@ -34,7 +34,7 @@
-fx-border-width: 1px;
-fx-padding: 0;
-fx-background-color: -color-fg-default;
-fx-border-color: -color-bg-default;
-fx-border-color: transparent;
}
.store-header-bar .menu-button:hover {

View file

@ -9,10 +9,19 @@ You have to install it manually from https://github.com/xpipe-io/xpipe/releases/
This update introduces a new toggle available for all scripts that if enabled, will automatically copy these scripts to the target system and put them into the PATH when launching a new terminal session. This allows you to easily call your scripts on any system without any setup.
### Professional edition changes
After taking feedback and examples of other applications into consideration, I restructured the professional edition pricing.
There is now the option for a one-time payment, which will give you permanent access to all current professional features plus all that are released in the next year.
This one-time payment also makes it possible accept a lot more payment methods than before.
### Other changes
- The CI pipeline is now fully automated including ARM builds for Linux and macOS
- Improve startup time on Linux and macOS by skipping tray initialization
- Add support for tray icon on newer Gnome desktop environments
- Add support qterminal, xterm, and deepin-terminal
- Fix configs being unnecessarily saved even when not needed
- Fix application not starting up on newer Gnome desktop environments
- Fix killing of local unresponsive shell leading to further errors