diff --git a/README.md b/README.md index 11ea9f6..425a679 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,11 @@ SystemTray.TRAY_SIZE (type int, default value '24') GtkSupport.FORCE_GTK2 (type boolean, default value 'false') - Forces the system to always choose GTK2 (even when GTK3 might be available). JavaFX uses GTK2! + + +GtkSupport.JAVAFX_COMPATIBILITY_MODE (type boolean, default value 'false') + - Forces the system to enter into JavaFX compatibility mode, where it will use GTK2 AND will not start/stop the GTK main loop. + This is only necessary if autodetection fails ``` @@ -133,7 +138,7 @@ This project is **kept in sync** with the utilities library, so "jar hell" is no com.dorkbox SystemTray - 2.8 + 2.10 ``` diff --git a/src/dorkbox/systemTray/SystemTray.java b/src/dorkbox/systemTray/SystemTray.java index e0e3ff2..2795db7 100644 --- a/src/dorkbox/systemTray/SystemTray.java +++ b/src/dorkbox/systemTray/SystemTray.java @@ -305,7 +305,7 @@ class SystemTray { */ public static String getVersion() { - return "2.8"; + return "2.10"; } /**