mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
upgrade to javafx 15, upgrade gradle plugins, ensure reproducible builds
This commit is contained in:
parent
c806959199
commit
82a8f08440
3 changed files with 10 additions and 4 deletions
|
@ -20,6 +20,8 @@ When updating to the latest HEAD
|
||||||
|
|
||||||
`git pull --recurse-submodules`
|
`git pull --recurse-submodules`
|
||||||
|
|
||||||
|
All jar files created are reproducible builds.
|
||||||
|
|
||||||
## Running
|
## Running
|
||||||
|
|
||||||
If you prefer to run Sparrow directly from source, it can be launched with
|
If you prefer to run Sparrow directly from source, it can be launched with
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'application'
|
id 'application'
|
||||||
id 'org.openjfx.javafxplugin' version '0.0.8'
|
id 'org.openjfx.javafxplugin' version '0.0.9'
|
||||||
id 'org.kordamp.gradle.jdeps' version '0.9.0'
|
id 'org.kordamp.gradle.jdeps' version '0.9.0'
|
||||||
id 'org.beryx.jlink' version '2.17.4'
|
id 'org.beryx.jlink' version '2.22.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
def sparrowVersion = '0.9.4'
|
def sparrowVersion = '0.9.4'
|
||||||
|
@ -28,7 +28,7 @@ tasks.withType(AbstractArchiveTask) {
|
||||||
}
|
}
|
||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
version = "14"
|
version = "15"
|
||||||
modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.swing', 'javafx.graphics' ]
|
modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.swing', 'javafx.graphics' ]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -86,7 +86,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#outputsPie .default-color3.chart-pie {
|
#outputsPie .default-color3.chart-pie {
|
||||||
-fx-pie-color: #e06c75
|
-fx-pie-color: #e06c75;
|
||||||
|
}
|
||||||
|
|
||||||
|
.root .descriptor-error {
|
||||||
|
-fx-fill: #e06c75;
|
||||||
}
|
}
|
||||||
|
|
||||||
.root .etched-raised-border {
|
.root .etched-raised-border {
|
||||||
|
|
Loading…
Reference in a new issue