diff options
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | docs/CHANGELOG.md | 28 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
3 files changed, 30 insertions, 2 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index bbdcf97a5..735fe3016 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.24.Beta.14" +version = "0.24.Beta.15" val gitHash by lazy { val baos = ByteArrayOutputStream() diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 29eb00d94..d1a962cee 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -95,11 +95,14 @@ + Added three empty lines. + Added option to hide empty lines at the top/bottom. + Option to change line spacing in Custom Scoreboard. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1174) ++ Improved delete word/line functionality for text boxes/signs. - Obsidian (https://github.com/hannibal002/SkyHanni/pull/1090) + + It's now consistent with Discord's. ##### Garden Improvements + Show calculation breakdowns when hovering over Anita Medal Profit or SkyMart Coins per copper displays. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1116) ++ Get garden level from SkyBlock Menu and Desk. - Empa (https://github.com/hannibal002/SkyHanni/pull/1164) #### Crimson Improvelemts @@ -118,12 +121,17 @@ + Now only showing an active Slayer Quest while in the correct area. + Added current server player count as an element with an option to show max player count. + Added option to show the magical power. ++ Show Thaumaturgy Tuning in Custom Scoreboard. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1201) + + Option to show in compact mode. + + Supports "Values First" option. + + Change the number of tunings shown. #### Fishing Improvements + Fishing Hook Alert text changes. - Empa (https://github.com/hannibal002/SkyHanni/pull/1169) + Added custom text when ready to pull. + The text is now aligned to the center of the GUI element. ++ Added a delay after tool swap before warning about wrong farming speed. - Alexia Luna (https://github.com/hannibal002/SkyHanni/pull/840) #### Misc Improvements @@ -219,6 +227,13 @@ + Scoreboard Fixes. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1183) + Fixed Hypixel URL sometimes showing during a Jacob's contest. + Fixed Unknown Lines error during wind compass. ++ Fixed unknown line issues in Custom Scoreboard. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1205) + + Fixed unknown line error in magma chamber. + + Fixed unknown line issues when Hypixel doesn't send the whole line ++ Fixed Custom Scoreboard errors inside the dungeon. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1199) + + Fixed dragon's line not being properly removed. + + Fixed a line randomly showing "0" sometimes. + + Fixed "Cleared..." line sometimes being black. #### Dungeon Fixes @@ -229,6 +244,15 @@ + Fixed wrong crimson isle quests detection after tab list widget update. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1167) +#### Dungeon Fixes + ++ Fixed Dungeon Complete on Entrance. - Empa (https://github.com/hannibal002/SkyHanni/pull/1202) + +#### Config Fixes + ++ Removed a second "Pet Candy Used" config option that did nothing. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1198) ++ Fixed game crash when open browser button in config fails. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1195) + #### Misc Fixes + Fixed skill level up message when below level 60. - HiZe @@ -243,6 +267,8 @@ + Fixed Skill Progress Pattern. - HiZe_ (https://github.com/hannibal002/SkyHanni/pull/1148) + Fixed selecting arrows with different color codes. - Empa (https://github.com/hannibal002/SkyHanni/pull/1194) + Fixed wrong pattern causing trapper mob area to not get a waypoint. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1186) ++ Fixed Superboom TNT not working with Queued GFS. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/1196) ++ Fixed detection of Party Leader when their username ends with an `s`. - Alexia Luna (https://github.com/hannibal002/SkyHanni/pull/1203) ### Technical Details @@ -333,6 +359,7 @@ + Added support to search the chat history via /shchathistory <search term>. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1187) + Added more repo patterns to the trapper feature and improved enum names. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1186) + Extracted player and profile specific storage into their own classes in a new packet. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1171) ++ Moved Thaumaturgy Tuning Points detection into MaxwellAPI, and saving it in the profile-specific config. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1201) ### Removed Features @@ -342,6 +369,7 @@ CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1158) + Removed Plot Name in Scoreboard. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1168) + Hypixel added their own compact format now. ++ Removed max pet XP tooltip because Hypixel added it. - Obsidian (https://github.com/hannibal002/SkyHanni/pull/1132) ## Version 0.23 diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 2f201121e..3a8bcede1 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -409,7 +409,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.24.Beta.14", + version = "0.24.Beta.15", ) class SkyHanniMod { |