diff options
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | FEATURES.md | 8 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 18 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 64ea96415..518282cfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,9 @@ + Rainbow color (optional) - nea + Hide other players while doing the parkour + Outlines the top edge of the platforms (for Upside Down Parkour only) - CalMWolfs ++ Added Jinxed voodoo doll ability cooldown support - HiZe ++ Added Polarvoid Books to estimated item value - jani ++ Added Chumcap support for Chum Bucket Hider - jani ### Other Features + Added **Frozen Treasure Tracker** (Contributed by CalMWolfs) @@ -58,6 +61,8 @@ + Write fancy text into a gui element to show on your screen at all time + Supports color codes + Supports line breaks `\n` - hannibal2 ++ Added **Highlight Commission Mobs** - hannibal2 + + Highlight Mobs that are part of active commissions ### Changes + Option to show the yaw and pitch display outside garden or while not holding a farming tool (Contributed by CalMWolfs) @@ -83,6 +88,9 @@ + Fixed **Dungeon Master Stars** calculation not working correctly sometimes – hannibal2 & Fix3dll + Fixed Discord Rich Presence detecting absorption hearts not correctly – NetheriteMiner + Fixed Reputation Helper **Kuudra Completions** not getting detected and adding T4 and T5 support - Cinshay + = Fixed Item Ability cooldown not working for Astraea - hannibal2 + = Fixed a typo in the config - hannibal2 + = Added a workaround for a crash when refusing a visitor - hannibal2 ## Version 0.18 (2023-06-19) diff --git a/FEATURES.md b/FEATURES.md index c2002db39..f5bbb469e 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -121,6 +121,10 @@ + **Hide Repeated Catches** - Delete past catches of the same trophy fish from chat. - (Thanks appable0 + **Trophy Counter Design** - Change the way trophy fish messages gets displayed in the chat. - (Thanks appable0) + Showing fished item names ++ **Chum/Chumcap Bucket Hider** + + Hide the name tags of Chum/Chumcap Bucket of other players. + + Hide the Chum/Chumcap Bucket. + + Hides your own Chum/Chumcap Bucket. ## Damage Indicator - Show the remaining health of selected bosses in the game in a bigger GUI. @@ -313,6 +317,10 @@ + Hide other players while doing the parkour + Outlines the top edge of the platforms (for Upside Down Parkour only) - CalMWolfs +## Mining ++ **Highlight Commission Mobs** - hannibal2 + + Highlight Mobs that are part of active commissions + ## Commands + **/wiki <search term>** - using hypixel-skyblock.fandom.com instead of Hypixel wiki. + **/shmarkplayer <player>** - marking a player with yellow color. diff --git a/build.gradle.kts b/build.gradle.kts index 48802625e..181c2bb0a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.19.Beta.6" +version = "0.19.Beta.7" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index c43b7af5d..7a81287a3 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -96,7 +96,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.19.Beta.6", + version = "0.19.Beta.7", ) class SkyHanniMod { @Mod.EventHandler |