From 24218faa3ade2b7dc81246abfdda652d21da5d67 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 11 Feb 2016 02:34:08 +0100 Subject: [PATCH] fixed javadocs + version --- README.md | 11 ++++++++++- src/dorkbox/notify/Notify.java | 18 ++++++++++++------ 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a8714df..b267255 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ This project is **kept in sync** with the utilities library, so "jar hell" is no com.dorkbox Notify - 1.2 + 2.0 ``` @@ -58,9 +58,18 @@ Or if you don't want to use Maven, you can access the files directly here: https://oss.sonatype.org/content/repositories/releases/com/dorkbox/Notify/ https://oss.sonatype.org/content/repositories/releases/com/dorkbox/Notify-Dorkbox-Util/ +https://oss.sonatype.org/content/repositories/releases/com/dorkbox/TweenEngine/ +https://oss.sonatype.org/content/repositories/releases/com/dorkbox/ObjectPool/ + +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/ +

License

This project is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further references. + + + + diff --git a/src/dorkbox/notify/Notify.java b/src/dorkbox/notify/Notify.java index 5ff0502..dfd6b3f 100644 --- a/src/dorkbox/notify/Notify.java +++ b/src/dorkbox/notify/Notify.java @@ -31,15 +31,17 @@ import java.util.Map; /** * Popup notification messages, similar to the popular "Growl" notification system on macosx, that display in the corner of the monitor. - *

They can follow the mouse (if the screen is unspecified), and have a variety of features, such as "shaking" to draw attention, - * animating upon movement (for collating w/ multiple in a single location), and automatically hiding after a set duration.

These - * notifications are for a single screen only, and cannot be anchored to an application. - *

+ *

+ * They can follow the mouse (if the screen is unspecified), and have a variety of features, such as "shaking" to draw attention, + * animating upon movement (for collating w/ multiple in a single location), and automatically hiding after a set duration. + *

+ * These notifications are for a single screen only, and cannot be anchored to an application. + * *
  * {@code
  * Notify.create()
  *      .title("Title Text")
- *      .text("Hello World 0!")
+ *      .text("Hello World!")
  *      .useDarkStyle()
  *      .showWarning();
  * }
@@ -61,7 +63,7 @@ class Notify {
      */
     public static
     String getVersion() {
-        return "1.2";
+        return "2.0";
     }
 
     /**
@@ -366,3 +368,7 @@ class Notify {
 
 
 
+
+
+
+