updated build

This commit is contained in:
nathan 2016-02-14 14:53:44 +01:00
parent 010a91ca68
commit 5db79ed563
2 changed files with 7 additions and 2 deletions

View File

@ -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
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>SystemTray</artifactId>
<version>2.8</version>
<version>2.10</version>
</dependency>
```

View File

@ -305,7 +305,7 @@ class SystemTray {
*/
public static
String getVersion() {
return "2.8";
return "2.10";
}
/**