diff options
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rw-r--r-- | FEATURES.md | 3 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 17 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fd46d0cba..8cc06f797 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ + Intended to be used with Harp Keybinds + Added keybind to manually reset the barn/worm fishing timer. - CarsCupcake + Added timer till shared inquisitors will despawn. - hannibal2 ++ Account upgrade complete reminder. - appable0 ### Changes @@ -41,6 +42,9 @@ + Telling the user about the bypass hotkey when the visitor drop warning blocks a visitor refusal. - CalMWolfs + Added warning sound when the worm fishing cap of 60 is hit. - CarsCupcake + Shared inquisitor waypoints will now get removed after 75 seconds. - hannibal2 ++ Chest Value now works with Backpack and Ender Chest. - HiZe + + Only works if NEU storage is not active. ++ Removed distance checks when detecting sea creatures for fishing timer. - hannibal2 ### Fixes @@ -65,6 +69,15 @@ + Fixed a typo in an error message. - Obsidian + Fixed Chest Value fails to detect chests when using a resource pack. - HiZe + Fixed Sea Creature Timer not working on barn. - hannibal2 ++ Arachne boss highlighter no longer requires damage indicator to be enabled. - hannibal2 ++ /shtrackcollection Cactus now detects cactus green. hannibal2 + +### Removed Features + +- Removed **Broken Wither Impact** detection. - hannibal2 + - (Hypixel fixed their bug, finally) +- Removed remaining **Hypixel API** support for still existing legacy api keys. - hannibal2 + - This should not affect much ## Version 0.19 diff --git a/FEATURES.md b/FEATURES.md index 87e848dd6..f367bb5ab 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -552,4 +552,5 @@ + Only on Private island. + **Inventory Numbers** + Show the number of the teleport pads inside the 'Change Destination' inventory as stack size. - + Only on Private island.
\ No newline at end of file + + Only on Private island. ++ Account upgrade complete reminder. - appable0
\ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index d9a95fbf2..bf09a1abe 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.20.Beta.7" +version = "0.20.Beta.8" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 62de44033..b998e7f07 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -126,7 +126,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.20.Beta.7", + version = "0.20.Beta.8", ) class SkyHanniMod { @Mod.EventHandler |