Skip to content

Commit 243738a

Browse files
committed
Updated to 1.5.0 RELEASE
Updated JavaDoc Updated Changelog.txt Updated README.md Updated overview.html Updated all pom versions from RELEASE to actual version numbers Signed-off-by: Joshua Gager <[email protected]>
1 parent 2430839 commit 243738a

File tree

515 files changed

+158670
-8371
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

515 files changed

+158670
-8371
lines changed

Diff for: Changelog.txt

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
Version 1.5.0 changes (10/07/2018):
2+
* Updated JDK to Java 10
3+
* Login Dialogs now don't require the use of Platform.runLater()
4+
* Message Boxes now don't require the use of Platform.runLater()
5+
* Message Box Default button is now in the right order.
6+
* Massive changes to authentication and permissions system
7+
* Renamed jbdc to jdbc
8+
* Removed all deprecated methods from 1.4.0
9+
* Updated javadoc
10+
* Replaced some loops with streams
11+
* Added trim to all string isEmpty checks
12+
* Added UTF_8 protection
13+
* Added ExceptionUtils class for use in junit tests
14+
* All password hashing now uses BCrypt replacing SHA-512
15+
* Other minor fixes
16+
117
Version 1.4.2 changes (1/23/2018):
218
* Fixed fatal error with isUserLoggedIn method
319

Diff for: README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# JavaUltimateTools v1.4.2 [![Build Status](https://travis-ci.org/JGCompTech/JavaUltimateTools.svg?branch=master)](https://travis-ci.org/JGCompTech/JavaUltimateTools) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.jgcomptech.tools/java-ultimate-tools/badge.svg?style=flat-square)](https://maven-badges.herokuapp.com/maven-central/com.jgcomptech.tools/java-ultimate-tools/) [![Javadocs](http://www.javadoc.io/badge/com.jgcomptech.tools/java-ultimate-tools.svg?style=flat-square)](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools)
1+
# JavaUltimateTools v1.5.0 [![Build Status](https://travis-ci.org/JGCompTech/JavaUltimateTools.svg?branch=master)](https://travis-ci.org/JGCompTech/JavaUltimateTools) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.jgcomptech.tools/java-ultimate-tools/badge.svg?style=flat-square)](https://maven-badges.herokuapp.com/maven-central/com.jgcomptech.tools/java-ultimate-tools/) [![Javadocs](http://www.javadoc.io/badge/com.jgcomptech.tools/java-ultimate-tools.svg?style=flat-square)](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools)
22

33
Java Ultimate Tools is a large repository of scripts for use in any Java program. It contains the following:
44
- OSInfo - Contains many classes that return information about the current Windows installation. This includes Architecture, Edition, Name, Product Key, Service Pack, User Info and Version.
@@ -14,16 +14,20 @@ Java Ultimate Tools is a large repository of scripts for use in any Java program
1414
- Utility Classes - Includes classes for managing collections, numbers and strings
1515
- And Much More!
1616

17+
**NOTE: This Project Has Now Been Updated To Use Java 10!!!**
18+
1719
If you would like a more details, check out the [CLASSDESCRIPTION.md](https://github.com/JGCompTech/JavaUltimateTools/blob/master/CLASSDESCRIPTION.md) file. I will be updating this with more documentation soon.
1820

1921
If you would like to view the JavaDoc info, it is hosted at [github.io(Current GitHub Branch)](https://jgcomptech.github.io/JavaUltimateTools/) and at [javadoc.io(Current Maven Release)](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools). The github.io version is what is stored in the doc folder in the project.
2022

23+
**NOTE: A new documentation site is coming soon to explain in more detail how to use this library!**
24+
2125
# Development
2226
Want to contribute? Great!
2327
Any help with development is greatly appreciated. If you want to add something or fix any issues please submit a pull request and if it is helpful it may be merged. Please check out our [Code of Conduct for Contributors](https://github.com/JGCompTech/JavaUltimateTools/blob/master/code-of-conduct.md).
2428

2529
# Download
26-
**[Download v1.4.2](https://github.com/JGCompTech/JavaUltimateTools/releases/tag/v1.4.2)**
30+
**[Download v1.5.0](https://github.com/JGCompTech/JavaUltimateTools/releases/tag/v1.5.0)**
2731

2832
The changelog can be found [here](https://github.com/JGCompTech/JavaUltimateTools/blob/master/Changelog.txt)
2933

@@ -35,11 +39,13 @@ fragments into your pom.xml file. With those settings, your Maven will automatic
3539
<dependency>
3640
<groupId>com.jgcomptech.tools</groupId>
3741
<artifactId>java-ultimate-tools</artifactId>
38-
<version>1.4.2</version>
42+
<version>1.5.0</version>
3943
</dependency>
4044
</dependencies>
4145

4246
# License
4347
[![Creative Commons License](https://i.creativecommons.org/l/by/4.0/88x31.png)](http://creativecommons.org/licenses/by/4.0/)
4448

4549
JavaUltimateTools by J&G CompTech is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/).
50+
51+
&copy;2018 J&amp;G CompTech

Diff for: docs/allclasses-frame.html

+70-36
Large diffs are not rendered by default.

Diff for: docs/allclasses-noframe.html

+70-36
Large diffs are not rendered by default.

Diff for: docs/com/jgcomptech/tools/CollectionUtils.html

+181-85
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)