Added SynchronizedEventQueue to build, Added notes for disabling

swing EDT (if wanted)
This commit is contained in:
nathan 2016-09-05 14:27:57 +02:00
parent fdcbf4af03
commit 4a4150d69c
2 changed files with 3 additions and 2 deletions

View File

@ -21,6 +21,7 @@ Primary Features:
- This is for cross-platform use, specifically - linux 32/64, mac 32/64, and windows 32/64. Java 6+
- You will need the images in the 'resources' directory, in addition to the normal libs.
- Note: If you want to COMPLETELY remove repainting by the swing EDT (for the entire JVM), run `NullRepaintManager.install();`
```
Customization parameters:
@ -66,7 +67,7 @@ This project is **kept in sync** with the utilities library, so "jar hell" is no
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Notify</artifactId>
<version>2.15</version>
<version>2.16</version>
</dependency>
```

View File

@ -64,7 +64,7 @@ class Notify {
*/
public static
String getVersion() {
return "2.15";
return "2.16";
}
/**