diff options
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-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, 16 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eea3941a..11b303363 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,10 @@ + Options for change number format, display time, number type and hide maxed. + Highlight maxed bestiaries. + Show the names of the **4 areas** while in the center of **crystal Hollows**. ++ Chest Value - HiZe + + Shows a list of all items and their price when inside a chest on your private island. ++ In Melody's Harp, show buttons as stack size. - NetheriteMiner + + Intended to be used with Harp Keybinds ### Changes @@ -29,6 +33,10 @@ + Added option to only show the reputation helper while pressing a hotkey. + Garden **Money per Hour** now uses the **dicer drops** from melon and pumpkins as well. - CalMWolfs + Adds **Double Hook** to the **sea creature chat message** instead of in a previous line. - appable0 ++ Rune display now shows always in sack display. ++ Shark fish counter now counts twice for Double hook. - appable0 ++ Ghost counter check for Mist now ignores y coordiantes - HiZe ++ Telling the user about the bypass hotkey when the visitor drop warning blocks a visitor refusal. - CalMWolfs ### Fixes @@ -46,6 +54,8 @@ + Fixed master star detection in estimate item value broken for some times. + Fixed description in golden trophy fish info tooltip. - appable0 + Fixed End Node Tracker not updating when changing the text format. ++ Fixed neu repo error messages with runes. ++ Fixed rare crashes with scoreboard. ## Version 0.19 diff --git a/FEATURES.md b/FEATURES.md index ae8ce8546..bc4463fd6 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -95,6 +95,10 @@ + **Bestiary overlay** - HiZe + Options for change number format, display time, number type and hide maxed. + Highlight maxed bestiaries. ++ Chest Value - HiZe + + Shows a list of all items and their price when inside a chest on your private island. ++ In Melody's Harp, show buttons as stack size. - NetheriteMiner + + Intended to be used with Harp Keybinds ## Item Abilities diff --git a/build.gradle.kts b/build.gradle.kts index 0970f29d9..4aa8d0edf 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.20.Beta.5" +version = "0.20.Beta.6" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 946f41282..7d72e73f8 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -124,7 +124,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.20.Beta.5", + version = "0.20.Beta.6", ) class SkyHanniMod { @Mod.EventHandler |