From 4a4150d69cd96f3dc364e44d2e235bab46f10038 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 5 Sep 2016 14:27:57 +0200 Subject: [PATCH] Added SynchronizedEventQueue to build, Added notes for disabling swing EDT (if wanted) --- README.md | 3 ++- src/dorkbox/notify/Notify.java | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d97e5ae..e61b3b6 100644 --- a/README.md +++ b/README.md @@ -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 com.dorkbox Notify - 2.15 + 2.16 ``` diff --git a/src/dorkbox/notify/Notify.java b/src/dorkbox/notify/Notify.java index bee173b..733f50e 100644 --- a/src/dorkbox/notify/Notify.java +++ b/src/dorkbox/notify/Notify.java @@ -64,7 +64,7 @@ class Notify { */ public static String getVersion() { - return "2.15"; + return "2.16"; } /**