diff options
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | FEATURES.md | 6 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ad6422628..d9b4f08dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,11 @@ + Added In-Game Date display. - Erymanthus + Show the in-game date of SkyBlock (like in Apec, but with mild delays). + Includes the SkyBlock year. ++ Added Quest Item Helper. - NetheriteMiner + + When you open the fetch item quest in the town board, it shows a clickable chat message that will grab the items needed from the sacks. ++ Added alerts when the player catches a Legendary Sea Creature. - Cad ++ Added Soulweaver Skull Hider to the Dungeon Object Hider. - nea + + Hide the annoying soulweaver skulls that float around you if you have the soulweaver gloves equipped. #### Events @@ -66,6 +71,7 @@ + Added 'spooked into the lobby' chat message to the Outside Hypixel filter. - CalMWolfs + Changed the Yaw/Pitch Display to not show scientific notations at very small numbers. - Obsidian + Added an option to the Advanced Player List to hide Crimson Isle faction icons. - hannibal2 ++ Added Enrichment to Estimated Item Value. - jani ### Bug Fixes @@ -93,6 +99,7 @@ + Fixed Fishing Hook Display showing wrong damage numbers. - hannibal2 + Fixed Abiphone ring message not getting filtered correctly. - hannibal2 + Fixed the bug that faction icons in Crimson Isle are always hidden in the tab list. - hannibal2 ++ Fixed SkyHanni GUI Edit Button not working inside storage even if neu storage is not disabled. - hannibal2 #### Config diff --git a/FEATURES.md b/FEATURES.md index 4b0652b02..7393e3c4a 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -65,6 +65,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Outline Dungeon Teammates. - Cad + Dungeon Colored Class Level. - hannibal2 + Color class levels in the tab list. (Also hide rank colors and emblems because who needs that in dungeons anyway?) ++ Soulweaver Skull Hider in the Dungeon Object Hider. - nea + + Hide the annoying soulweaver skulls that float around you if you have the soulweaver gloves equipped. ## Inventory @@ -195,6 +197,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Fishing Hook Display. - hannibal2 + Display the Hypixel timer until the fishing hook can be pulled out of the water/lava, only bigger and on your screen. ++ Alerts when the player catches a Legendary Sea Creature. - Cad ## Damage Indicator @@ -555,6 +558,9 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Wishing compass uses amount display. + Brewing Stand Overlay. + Crimson Isle Reputation Helper. ++ Quest Item Helper. (Crimson Isle) - NetheriteMiner + + When you open the fetch item quest in the town board, it shows a clickable chat message that will grab the items + needed from the sacks. + Red Scoreboard Numbers - Hides the red numbers in the scoreboard sidebar on the right side of the screen. + **Tia Relay Waypoint** - Show the next Relay waypoint for Tia The Fairy, where maintenance for the abiphone network needs to be done. diff --git a/build.gradle.kts b/build.gradle.kts index a340309d1..ab3494971 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.21.Beta.7" +version = "0.21.Beta.8" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 55a14df90..c1deed64e 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -313,7 +313,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.21.Beta.7", + version = "0.21.Beta.8", ) class SkyHanniMod { @Mod.EventHandler |