From e558ebbb226e4277ad32fbdfabdc8ca969f12965 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 12 Oct 2023 17:08:06 +0200 Subject: 0.21 Beta 6 --- CHANGELOG.md | 16 ++++++++++++ FEATURES.md | 30 ++++++++++++++-------- build.gradle.kts | 2 +- src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 +- 4 files changed, 37 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04f3780cd..9f522aac7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,10 +27,18 @@ + Marking partly members with a bright outline to better find them in the world. + Added Shift Click Equipment. - Thunderblade73 + This removes the need to shift-click to swap the equipment items, without the annoying "pick up animation". ++ Adds chat symbols such as iron man/bingo/nether faction like SBA had/has. - CalMWolfs + + Will not break with emblems. + + Optional if left or right side of name. + + Should not break with other mods. #### Events + Highlight Jerries during the Jerrypoclaypse. - Erymanthus ++ Show waypoints for Baskets of the Halloween Event in the main Hypixel lobby. - Erymanthus + + Thanks Tobbbb for the coordinates! + + Support for hiding basket waypoints once you have clicked on them. - hannibal2 + + Option to show only the closest basket. - hannibal2 ### Changes @@ -46,6 +54,7 @@ + Added buttons to change the format of the price and the number in the sack display. - HiZe + Made Smoldering same as Fatal Tempo and Chimera in Estimated Item Value. - jani + Added an option to change where to get the items from in the composter overlay: from the bazaar or from sacks. - HiZe ++ Added mouse button support for key binds. - CalMWolfs ### Bug Fixes @@ -60,6 +69,13 @@ + Fixed double rendering of item tooltips with chat triggers. - nea + Fixed Sacks Display integer limit error. - HiZe & hannibal2 + Fixed the vitality attribute is wrongly labeled as "mending" in Estimated Item Value. - walker ++ Fixed lever clicks getting highlighted in the water room. - hannibal2 + + This solution might not work for iron man in full parties. ++ Fixed slayer profit tracker showing Bazaar/AH price as NPC price. - hannibal2 ++ Fixed Hyper reforge/End Stone Geode detection. - hannibal2 ++ Better limbo leave detection. - hannibal2 ++ Fixed rare crash when trying to read neu config. - hannibal2 ++ Fixed rare case where the visitor description is empty. - hannibal2 #### Config diff --git a/FEATURES.md b/FEATURES.md index 4abdf24bb..3de6ffd8d 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -2,17 +2,6 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. -## Chat Filter - -- Hiding annoying messages in the Hub of Hypixel (MVP player joins, other player loot boxes, prototype message, - radiating generosity, Hypixel tournaments) -- Hiding Empty messages. -- Warping messages (Sending requests and switching servers) -- Welcome Message when entering SkyBlock. -- Powder Mining messages hider -- Winter gift messages hider -- Many other messages (Not separated into own categories yet) - ## Chat + Options to change the player chat format (show prefix for channel 'all', hide player rank color, hide colon after @@ -33,6 +22,21 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + **Sack Change** chat message hider. - hannibal2 + Enable this option instead of Hypixel's own setting to hide the chat message while enabling mods to utilize sack data for future features. ++ Adds chat symbols such as iron man/bingo/nether faction like SBA had/has. - CalMWolfs + + Will not break with emblems. + + Optional if left or right side of name. + + Should not break with other mods. + +#### Chat Filter + +- Hiding annoying messages in the Hub of Hypixel (MVP player joins, other player loot boxes, prototype message, + radiating generosity, Hypixel tournaments) +- Hiding Empty messages. +- Warping messages (Sending requests and switching servers) +- Welcome Message when entering SkyBlock. +- Powder Mining messages hider +- Winter gift messages hider +- Many other messages (Not separated into own categories yet) ## Dungeon @@ -514,6 +518,10 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. ## Events + Highlight Jerries during the Jerrypoclaypse. - Erymanthus ++ Show waypoints for Baskets of the Halloween Event in the main Hypixel lobby. - Erymanthus + + Thanks Tobbbb for the coordinates! + + Support for hiding basket waypoints once you have clicked on them. - hannibal2 + + Option to show only the closest basket. - hannibal2 ## Commands diff --git a/build.gradle.kts b/build.gradle.kts index 501ece2f1..6acfc1606 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.21.Beta.5" +version = "0.21.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 9978b5b08..9516746ab 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -310,7 +310,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.21.Beta.5", + version = "0.21.Beta.6", ) class SkyHanniMod { @Mod.EventHandler -- cgit