Updated version

This commit is contained in:
nathan 2016-06-02 21:55:00 +02:00
parent 2a6a95e052
commit ddf78c4bbf
2 changed files with 9 additions and 8 deletions

View File

@ -65,7 +65,7 @@ This project is **kept in sync** with the utilities library, so "jar hell" is no
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>Notify</artifactId> <artifactId>Notify</artifactId>
<version>2.13</version> <version>2.14</version>
</dependency> </dependency>
``` ```

View File

@ -15,12 +15,6 @@
*/ */
package dorkbox.notify; package dorkbox.notify;
import dorkbox.util.ActionHandler;
import dorkbox.util.LocationResolver;
import dorkbox.util.SwingUtil;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import java.awt.Image; import java.awt.Image;
import java.awt.image.BufferedImage; import java.awt.image.BufferedImage;
import java.io.File; import java.io.File;
@ -29,6 +23,13 @@ import java.io.InputStream;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import dorkbox.util.ActionHandler;
import dorkbox.util.LocationResolver;
import dorkbox.util.SwingUtil;
/** /**
* Popup notification messages, similar to the popular "Growl" notification system on macosx, that display in the corner of the monitor. * Popup notification messages, similar to the popular "Growl" notification system on macosx, that display in the corner of the monitor.
* </p> * </p>
@ -63,7 +64,7 @@ class Notify {
*/ */
public static public static
String getVersion() { String getVersion() {
return "2.13"; return "2.14";
} }
/** /**