diff options
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | FEATURES.md | 4 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 13 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 895e0143d..a04ae4097 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,8 @@ + Chat message how many places you dropped in the farming weight lb when joining garden. + Added command /shfarmingprofile [player name] + Opens the elitebot.dev website in your web browser to show your Farming Weight profile. ++ Pet Experience Tooltip + + Show the full pet exp and the progress to level 100 (ignoring rarity) when hovering over an pet while pressing shift key. ### Changes @@ -53,6 +55,8 @@ + Count sea emperor and rider of the deep twice against sea creature cap. + Clicking on the chat message from farming weight will run the /shfarmingprofile command. + Changed Bestiary Display number format - HiZe ++ Changed ff buffs for Elephant and Anita. ++ Changed chicken head timer from 20s to 5s. ### Fixes @@ -82,6 +86,7 @@ + Fixed arachne minis falsely show in damage indicator. + Fixed rare cases where special laptop keys trigger behavior unintended. - hannibal2 + Fixed rendering problems with stack background and custom text lore. - nea ++ Hopefully fixed Derpy problems with Trevor Trapper, Arachne, Arachne Keeper and Zealots. ### Removed Features @@ -89,6 +94,9 @@ - (Hypixel fixed their bug, finally) - Removed remaining **Hypixel API** support for still existing legacy api keys. - hannibal2 - This should not affect much + - +- Removed wishing compass in item number. + - Every Wishing Compass now only has one use instead of three. ## Version 0.19 diff --git a/FEATURES.md b/FEATURES.md index 6516dc75c..74f7069ec 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -556,4 +556,6 @@ + **Inventory Numbers** + Show the number of the teleport pads inside the 'Change Destination' inventory as stack size. + Only on Private island. -+ Account upgrade complete reminder. - appable0
\ No newline at end of file ++ Account upgrade complete reminder. - appable0 ++ Pet Experience Tooltip + + Show the full pet exp and the progress to level 100 (ignoring rarity) when hovering over an pet while pressing shift key.
\ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index ab76d7c16..86b229175 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.20.Beta.9" +version = "0.20.Beta.10" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index db50a3c7e..3977b52b8 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.9", + version = "0.20.Beta.10", ) class SkyHanniMod { @Mod.EventHandler |