Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
HanSolo committed Aug 18, 2023
1 parent ec5e28d commit 8ea0368
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A glucose status monitor for Nightscout implemented in JavaFX.

When running as jar file you might need to start with on Linux

```java -Djdk.gtk.version=2 -jar GlucoStatusFX-17.0.59.jar```
```java -Djdk.gtk.version=2 -jar GlucoStatusFX-17.0.61.jar```

<br>

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ dependencies {
implementation "org.openjfx:javafx-media:${javafxVersion}:${platform}"
implementation "org.openjfx:javafx-swing:${javafxVersion}:${platform}"
implementation 'eu.hansolo:jdktools:17.0.33'
implementation 'eu.hansolo:toolbox:17.0.55'
implementation 'eu.hansolo:toolboxfx:17.0.45'
implementation 'eu.hansolo:applefx:17.0.51'
implementation 'eu.hansolo:toolbox:17.0.57'
implementation 'eu.hansolo:toolboxfx:17.0.47'
implementation 'eu.hansolo:applefx:17.0.53'
implementation 'com.google.code.gson:gson:2.10.1'
//implementation 'com.dustinredmond.fxtrayicon:FXTrayIcon:4.0.1'
implementation 'com.dustinredmond.fxtrayicon:FXTrayIcon:3.1.2'
Expand Down
4 changes: 2 additions & 2 deletions build_app_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#

JAVA_VERSION=17
MAIN_JAR="GlucoStatusFX-17.0.59.jar"
APP_VERSION=17.0.59
MAIN_JAR="GlucoStatusFX-17.0.61.jar"
APP_VERSION=17.0.61

echo "java home: $JAVA_HOME"
echo "project version: $PROJECT_VERSION"
Expand Down
4 changes: 2 additions & 2 deletions build_app_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#

JAVA_VERSION=17
MAIN_JAR="GlucoStatusFX-17.0.59.jar"
APP_VERSION=17.0.59
MAIN_JAR="GlucoStatusFX-17.0.61.jar"
APP_VERSION=17.0.61

echo "java home: $JAVA_HOME"
echo "project version: $PROJECT_VERSION"
Expand Down
4 changes: 2 additions & 2 deletions build_app_windows.bat
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@ECHO OFF

set JAVA_VERSION=17
set MAIN_JAR=GlucoStatusFX-17.0.59.jar
set APP_VERSION=17.0.59
set MAIN_JAR=GlucoStatusFX-17.0.61.jar
set APP_VERSION=17.0.61

rem ------ SETUP DIRECTORIES AND FILES ----------------------------------------
rem Remove previously generated java runtime and installers. Copy all required
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ sourceCompatibility = 17
targetCompatibility = 17

group = eu.hansolo
version = 17.0.59
version = 17.0.61
javafxVersion = 20.0.2
10 changes: 5 additions & 5 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
requires java.net.http;

// Java-FX
requires transitive javafx.base;
requires transitive javafx.graphics;
requires transitive javafx.controls;
requires transitive javafx.media;
requires transitive javafx.swing;
requires javafx.base;
requires javafx.graphics;
requires javafx.controls;
requires javafx.media;
requires javafx.swing;

// 3rd Party
requires transitive eu.hansolo.jdktools;
Expand Down

0 comments on commit 8ea0368

Please sign in to comment.