Updated version

This commit is contained in:
nathan 2017-01-31 01:42:28 +01:00
parent e8248a5956
commit 062907d939
3 changed files with 8 additions and 9 deletions

View File

@ -1,7 +1,7 @@
- Dorkbox Notify - Apache 2.0 License
https://github.com/dorkbox
Copyright 2015, dorkbox, llc
Cross platform, growl/toast/notification popups for Java 6+
Linux, MacOS, or Windows (notification/growl/toast/) popups for the desktop for Java 6+
- ControlsFX - BSD 3-clause License
@ -13,13 +13,13 @@
- Dorkbox ObjectPool - Apache 2.0 License
https://github.com/dorkbox
Copyright 2014, dorkbox, llc
Fast and compatible, blocking/non-blocking/soft-reference object pool for Java 6+
Fast, lightweight, and compatible blocking/non-blocking/soft-reference object pool for Java 6+
- Dorkbox TweenEngine - Apache 2.0 License
https://github.com/dorkbox
Copyright 2015, dorkbox, llc
High performance Animation/Tween framework for Java 6+
High performance and lightweight Animation/Tween framework for Java 6+
- Java Universal Tween Engine - Apache 2.0 License

View File

@ -57,20 +57,19 @@ NotifyPopup.MOVE_DURATION (type float, default value '1.0F')
<h4>We now release to maven!</h4>
There is a hard dependency in the POM file for the utilities library, which is an extremely small subset of a much larger library; including only what is *necessary* for this particular project to function.
This project is **kept in sync** with the utilities library, so "jar hell" is not an issue. Please note that the util library (in it's entirety) is not added since there are **many** dependencies that are not *necessary* for this project. No reason to require a massive amount of dependencies for one or two classes/methods.
This project **includes** some utility classes, which are an extremely small subset of a much larger library; including only what is *necessary* for this particular project to function. Additionally this project is **kept in sync** with the utilities library, so "jar hell" is not an issue, and the latest release will always include the same utility files as all other projects in the dorkbox repository at that time.
Please note that the utility classes have their source code included in the release, and eventually, the utility library (in it's entirety) will be added.
```
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Notify</artifactId>
<version>2.17</version>
<version>2.19</version>
</dependency>
```
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/

View File

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