mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
New release [release]
This commit is contained in:
parent
bd6b04dca0
commit
e7e3b50632
4 changed files with 16 additions and 3 deletions
|
@ -132,7 +132,7 @@ application {
|
|||
|
||||
run {
|
||||
systemProperty 'io.xpipe.app.mode', 'gui'
|
||||
systemProperty 'io.xpipe.app.dataDir', "$projectDir/local8/"
|
||||
systemProperty 'io.xpipe.app.dataDir', "$projectDir/local_stage/"
|
||||
systemProperty 'io.xpipe.app.writeLogs', "true"
|
||||
systemProperty 'io.xpipe.app.writeSysOut', "true"
|
||||
systemProperty 'io.xpipe.app.developerMode', "true"
|
||||
|
|
|
@ -149,7 +149,7 @@ public class BrowserComp extends SimpleComp {
|
|||
.getName()
|
||||
: null;
|
||||
},
|
||||
model.getStore());
|
||||
PlatformThread.sync(model.getStore()));
|
||||
var image = Bindings.createStringBinding(
|
||||
() -> {
|
||||
return model.getStore().getValue() != null
|
||||
|
@ -160,7 +160,7 @@ public class BrowserComp extends SimpleComp {
|
|||
.getDisplayIconFileName()
|
||||
: null;
|
||||
},
|
||||
model.getStore());
|
||||
PlatformThread.sync(model.getStore()));
|
||||
var logo = new PrettyImageComp(image, 20, 20).createRegion();
|
||||
|
||||
var label = new Label();
|
||||
|
|
|
@ -1,3 +1,13 @@
|
|||
* {
|
||||
-fx-text-fill: -color-fg-default;
|
||||
-fx-highlight-text-fill: -color-fg-default;
|
||||
-fx-highlight-fill: -color-neutral-muted;
|
||||
-fx-prompt-text-fill: -color-neutral-muted;
|
||||
-fx-text-box-border:-color-neutral-muted;
|
||||
-fx-control-inner-background: -color-neutral-muted;
|
||||
-fx-body-color: -color-neutral-muted;
|
||||
-fx-inner-border: -color-accent-fg;
|
||||
}
|
||||
|
||||
.window-content {
|
||||
-fx-padding: 1.2em;
|
||||
|
|
3
dist/changelogs/0.5.0.md
vendored
Normal file
3
dist/changelogs/0.5.0.md
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
- Introduce completely new appearance themes
|
||||
- Introduce remote file explorer
|
||||
- Many bug fixes
|
Loading…
Reference in a new issue