Releases: TechnicJelle/UpdateCheckerJava
Switched to BlueColored Repo from Jitpack
No API changes.
Made tests a bit more robust when the version updates.
Full Changelog: v2.5...v2.5.1
Some extra methods for special cases
Added some extra methods for if you don't use java.util.logging.Logger
, or if you want to log custom update messages
Full Changelog: v2.4...v2.5
Allow disabling
You can now disable the update checker if you want, by passing -Dtechnicjelle.updatechecker.disabled
as a JVM argument.
Example: java -Dtechnicjelle.updatechecker.disabled -jar server.jar
Full Changelog: v2.3...v2.4
Proper fix for the async issues
Thanks to @TBlueF, this library should now have no more issues with sync and async stuff! Thank you very much for your contrubition, Blue!
What's Changed
- Use CompletableFutures for async update checking by @TBlueF in #1
- Removed the override functionality that was added in
v2.2
again, because it's not necessary anymore
New Contributors
Full Changelog: v2.2...v2.3
Allow users to override the async to be sync
Small feature addition:
Users of programs made with this library can now choose to make any usages of the async checking synchronous instead, should they wish to, with this JVM flag -Dtechnicjelle.updatechecker.noasync
.
Full Changelog: v2.1...v2.2
Removed need for try/catch around constructor
Removed the need for a try/catch around the constructor due to a potential MalformedURL.
It's probably going to be so extremely rare that it's not worth forcing everyone to put a try/catch around the thing.
Besides, it should be caught during development if it ever were to happen, anyway.
Full Changelog: v2.0...v2.1
Support for multiple instances
This update brings support for having multiple UpdateChecker instances.
Major version bump, due to API changes.
I noticed this problem when I tried to use this library in multiple plugins, and they clashed with each other. Hopefully this will prevent that.
Full Changelog: v1.1...v2.0
Little fix-up update
- Added a readme and a javadoc
- Fixed a forgotten word
Full Changelog: v1.0...v1.1
Initial release
Let's see if JitPack works!