diff options
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rw-r--r-- | FEATURES.md | 16 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 26 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 87fc1b527..7973ab513 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -67,6 +67,8 @@ + Hide Living Metal particles + Highlight **flying Motes Orbs** - hannibal2 + Hide normal motes orbs particles ++ Added bloodfiend (vampire slayer) to Damage Indicator - HiZe ++ Add Bacte to Damage Indicator ### Other Features + Added **Frozen Treasure Tracker** (Contributed by CalMWolfs) @@ -83,6 +85,8 @@ + Added command **/shcommands** + Show all commands in SkyHanni + Added Attribute price support to Estimated Item Value - nea ++ Added warning when enderman slayer beacon spawns - dragon99z ++ Added Highlight enderman slayer Nukekebi (Skulls) - dragon99z ### Changes + Option to show the yaw and pitch display outside garden or while not holding a farming tool (Contributed by CalMWolfs) @@ -96,6 +100,9 @@ + Changed time for Trapper from 30 to 15 seconds while Finnegan is mayor – CalMWolfs + Added warning to not disable repo auto-update + Wither impact ability cooldown now only shows when all 3 scrolls are attached ++ Show total amount of all trophy fish rarities at the end of the chat message ++ Changed **Elite farming weight** display - Kaeso + + Instantly showing the next player in the lb when passing someone on the leaderboard ### Fixes + Fixed Pocket Sack-In-A-Sack Replace in lore @@ -115,6 +122,12 @@ + Added a workaround for a crash when refusing a visitor - hannibal2 + Added support for new counter drops to dicer rng counter - ReyMaratov + Fixed composter inventory numbers after Hypixel changes - hannibal2 ++ Rng dicer chat hider now works without enabling drop counter ++ Server restart timer no longer shows all the time if over 2 minutes ++ Fixed crazy rare drops not counting properly - ReyMaratov ++ Fixed individual attribute prices in estimated item value - nea ++ Fixed sack display detection - hize ++ Fixed rare Ghost Counter bugs - hize ## Version 0.18 (2023-06-19) diff --git a/FEATURES.md b/FEATURES.md index 806dd5b48..b2e8ab560 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -114,15 +114,17 @@ - Update Timer showing when the next api data update happens. ## Fishing -- **Trophy Counter** - After fishing a new trophy fish, showing you in chat how many more trophies you have collected in total. ++ **Trophy Counter** + + After fishing a new trophy fish, showing you in chat how many more trophies you have collected in total. + + **Trophy Counter Design** - Change the way trophy fish messages gets displayed in the chat. - appable0 + + **Hide Repeated Catches** - Delete past catches of the same trophy fish from chat. - appable0 + + Show total amount of all trophy fish rarities at the end of the chat message. - **Hide Bronze/Silver Duplicates** - Hiding chat message when catching a duplicate bronze/silver trophy fish. - **Shorten Fishing Message** (Replacing the green chat message when fishing a sea creature with a more clean format) - Highlight Thunder Sparks that spawn after killing a Thunder. - **Barn Timer** - Show the time and amount of sea creatures while fishing on the barn via hub. - **Shark Fish Counter** - Counts how many sharks have been caught. - **Odger waypoint** - Show the Odger waypoint when trophy fishes are in the inventory and no lava rod in hand. -+ **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. @@ -147,6 +149,8 @@ + Hide poor slayer drop chat messages. + Highlight slayer miniboss in blue color. + Highlight the enderman slayer Yang Glyph (Beacon) in red color (supports beacon in hand and beacon flying) ++ Warning when enderman slayer beacon spawns - dragon99z ++ Highlight enderman slayer Nukekebi (Skulls) - dragon99z + Hide the name of the mobs you need to kill in order for the Slayer boss to spawn. Exclude mobs that are damaged, corrupted, runic or semi rare. + Cooldown when the Fire Pillar from the Blaze Slayer will kill you. + Custom countdown sound for the Fire Pillar timer for the Blaze Slayer. @@ -223,8 +227,10 @@ + Also available to select directly in the rancher boots overlay (contributed by nea) + Desk shortcut in SkyBlock Menu. + **Garden Level Display** - Show the current garden level and progress to the next level. -+ **Farming Weight and Leaderboard**, provided by the elite skyblock farmers. -+ Farming weight next leaderboard position eta. ++ **Farming Weight and Leaderboard** + + provided by the elite skyblock farmers. + + next leaderboard position eta. + + Instantly showing the next player in the lb when passing someone on the leaderboard. - Kaeso + **Dicer Counter** - Count RNG drops for Melon Dicer and Pumpkin Dicer. + **Warn When Close** - Warn with title and sound when the next crop milestone upgrade happens in 5 seconds. Useful for switching to a different pet for leveling. + **Money per Hour** - Displays the money per hour YOU get with YOUR crop/minute value when selling the items to bazaar. diff --git a/build.gradle.kts b/build.gradle.kts index 845b4ab8b..4521eff4c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.19.Beta.10" +version = "0.19.Beta.11" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index a8224e317..25658fb26 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -114,7 +114,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.19.Beta.10", + version = "0.19.Beta.11", ) class SkyHanniMod { @Mod.EventHandler |