diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-05-12 15:52:54 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-05-12 15:52:54 +0200 |
| commit | ac0413785699267a5246b4e107ba8155c24b21a0 (patch) | |
| tree | c7cae17522b20b7217e324c9da66c45b7dfe77b1 | |
| parent | 07064c0b8dcce1a9ca48077f9f7b87c21e1466be (diff) | |
| download | SkyHanni-ac0413785699267a5246b4e107ba8155c24b21a0.tar.gz SkyHanni-ac0413785699267a5246b4e107ba8155c24b21a0.tar.bz2 SkyHanni-ac0413785699267a5246b4e107ba8155c24b21a0.zip | |
0.18 Beta 1
| -rw-r--r-- | CHANGELOG.md | 11 | ||||
| -rw-r--r-- | build.gradle.kts | 2 | ||||
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
3 files changed, 13 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ee1dc0f7..a3f0f6943 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # SkyHanni - Change Log +## Version 0.18.BETA + +### New Features ++ Added Visitor Drop Counter to track all the drops from visitors. + +### Changes ++ Added Options for displays Crop Milestone and Best Crop Time. + + Change the time format/the highest time unit to show. (1h30m vs. 90 min) + + Maxed Milestone: Calculate the progress and ETA until maxed milestone (46) instead of the next milestone. + + ## Version 0.17 (2023-05-11) ### Features diff --git a/build.gradle.kts b/build.gradle.kts index 45d1062d9..8bed682fc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.17" +version = "0.18.Beta.1" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index e43cf16ec..932cc7dd9 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -92,7 +92,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.17", + version = "0.18.Beta.1", ) class SkyHanniMod { @Mod.EventHandler |
