diff options
-rw-r--r-- | CHANGELOG.md | 19 | ||||
-rw-r--r-- | FEATURES.md | 10 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java | 2 |
5 files changed, 30 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3048412be..cd08810d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,25 +37,42 @@ + Added item ability cooldown support for **Weirder Tuba** and **Holy Ice** - HiZe + Added **Lazer Parkour** Solver - CalMWolfs + Highlights the location of the invisible blocks in the MirrorVerse ++ Added Mirrorverse **Dance Room Helper** - HiZe + + Helps to solve the dance room in the mirror verse by showing multiple tasks at once. + + Change how many tasks you should see + + Hide other players inside the dance room ### Other Features -+ **Frozen Treasure Tracker** (Contributed by CalMWolfs) ++ Added **Frozen Treasure Tracker** (Contributed by CalMWolfs) + Show different items collected while breaking treasures in the Glacial Cave in Jerry's Workshop + Show Ice per hour + Customizable GUI + Option to hide the chat messages ++ Added **Custom Text Box** - CalMWolfs + + Write fancy text into a gui element to show on your screen at all time + + Supports color codes + + Supports line breaks `\n` - hannibal2 ### Changes + Option to show the yaw and pitch display outside garden or while not holding a farming tool (Contributed by CalMWolfs) + Added wizard warp as diana waypoint + Added option to show exact prices in estimated item value + Better error handling with missing neu repo items - CalMWolfs ++ Changes to **Discord RCP** - NetheriteMiner + + More images for different locations + + Fixed names unnecessarily getting cut off when visiting an island in Location + + Fewer crashes because of NEU Item Repo ### Fixes + Fixed Pocket Sack-In-A-Sack Replace in lore + Fixed possible crash with broken neu repo when opening the desk inventory in garden (Contributed by CalMWolfs) + Fixed frozen treasures per hour display being inaccurate (Contributed by CalMWolfs) + Fixed bug with ghost counter sometimes not detecting new kills (Contributed by CalMWolfs) ++ **Ghost Counter** fixes - HiZe & ksipli + + Should no longer have compatibility issues with other mods + + It work even if the action bar show percent +xxx (xx%) instead of +xxx (xxx/xxx) + + Added command /shresetghostcounter to reset everything (not the bestiary data) + + Added time format in ETA formatting (can show days, hours, minutes and seconds remaining) ## Version 0.18 (2023-06-19) diff --git a/FEATURES.md b/FEATURES.md index 1671416f2..6d33c63da 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -302,6 +302,10 @@ + Show bonuses you get from the talisman + **Lazer Parkour** Solver - CalMWolfs + Highlights the location of the invisible blocks in the MirrorVerse ++ Mirrorverse **Dance Room Helper** - HiZe + + Helps to solve the dance room in the mirror verse by showing multiple tasks at once. + + Change how many tasks you should see + + Hide other players inside the dance room ## Commands + **/wiki <search term>** - using hypixel-skyblock.fandom.com instead of Hypixel wiki. @@ -366,4 +370,8 @@ + Show different items collected while breaking treasures in the Glacial Cave in Jerry's Workshop + Show Ice per hour + Customizable GUI - + Option to hide the chat messages
\ No newline at end of file + + Option to hide the chat messages ++ **Custom Text Box** - CalMWolfs + + Write fancy text into a gui element to show on your screen at all time + + Supports color codes + + Supports line breaks `\n` - hannibal2
\ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index c87d04d96..03f95a17e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.19.Beta.4" +version = "0.19.Beta.5" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 55a334691..da4431c4f 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -95,7 +95,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.19.Beta.4", + version = "0.19.Beta.5", ) class SkyHanniMod { @Mod.EventHandler diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java index d3ec06d2b..e957ed560 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java @@ -177,7 +177,7 @@ public class RiftConfig { public static class DanceRoomHelper{ @Expose - @ConfigOption(name= "Enabled", desc = "Helps solving the dance room in the mirror verse by showing multiple tasks at once.") + @ConfigOption(name= "Enabled", desc = "Helps to solve the dance room in the mirror verse by showing multiple tasks at once.") @ConfigEditorBoolean public boolean enabled = false; |