diff options
-rw-r--r-- | CHANGELOG.md | 12 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
3 files changed, 14 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 316325c47..cfe6bc44e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,6 +55,7 @@ + Removed flawless gemstones from sack display. - CalMWolfs + Hypixel removed them from sacks. + Show a warning in Bestiary Display when Overall Progress is not enabled. - HiZe ++ Added option to hide pet candy count on maxed out pets. - CalMWolfs #### Dungeon Changes @@ -81,9 +82,14 @@ + Auto-fixing plots marked as pests when killing all pests without SkyHanni earlier. - hannibal2 + Fixed error message that nearest pests cannot get removed properly. - hannibal2 +#### Combat Fixes + ++ Fixed corrupted Kada Knight getting detected as Revenant Slayer mini boss. - hannibal2 + #### Mining Fixes + Fixed an error when showing all elements in Powder Tracker. - hannibal2 ++ Fixed powder tracker detecting gemstone chat messages. - CalMWolfs #### Rift Fixes @@ -93,6 +99,7 @@ + Fixed Reindrake mob, Frosty NPC and frosty the snow blaster shop counting as sea creatures in the barn fishing timer. - hannibal2 ++ Fixed trophy fish chat message detection. - Empa #### Invenory Fixes @@ -106,10 +113,15 @@ + Fixed performance issues with Bingo Minion Craft Helper. - hannibal2 + Fixed Bingo Minion Craft Helper not detecting crafted tier one minion. - hannibal2 +#### Chat Fixes + ++ Fixed poisoned candy potion chat message not getting compacted. - alexia + #### Misc Fixes + Maybe fixed Tia Relay Helper. - Thunderblade73 + Fixed wording in trackers when the item is newly obtained. - hannibal2 ++ Fixed titles not showing above other SkyHanni GUI elements all the time. - Thunderblade73 ### Technical Changes diff --git a/build.gradle.kts b/build.gradle.kts index 79db1f6c6..23773b307 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.23.Beta.5" +version = "0.23.Beta.6" val gitHash by lazy { val baos = ByteArrayOutputStream() diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 59254412a..de7d08e86 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -364,7 +364,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.23.Beta.5", + version = "0.23.Beta.6", ) class SkyHanniMod { @Mod.EventHandler |