From d5585f83808a68fcee6ed2786980fd9e7825fb0c Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 20 May 2024 18:48:10 +0200 Subject: Version 0.25 --- build.gradle.kts | 2 +- docs/CHANGELOG.md | 15 +++++++++++++-- src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index edd0f29f3..423182c63 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.25.Beta.29" +version = "0.25" val gitHash by lazy { val baos = ByteArrayOutputStream() diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 59d4a5c79..511d56d15 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,6 @@ # SkyHanni - Change Log -## Version 0.25 (In Beta) +## Version 0.25 ### New Features @@ -639,7 +639,10 @@ + Fixed unknown scoreboard lines chat error message when Hypixel sends incomplete line data. - Empa (https://github.com/hannibal002/SkyHanni/pull/1761) + Fixed Custom Scoreboard error during Winter Event. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1789) -+ Fixed max island size display in Crimson Isle and Catacombs in Custom Scoreboard. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1822) ++ Fixed max island size display in Crimson Isle and Catacombs in Custom Scoreboard. - + j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1822) ++ Fixed some issues where skyhanni guis would have click and hover events when they shouldn't. - + CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1846) #### Dungeon Fixes @@ -701,6 +704,12 @@ + Fixed the ability to hide Chocolate Factory upgrade messages. - seraid (https://github.com/hannibal002/SkyHanni/pull/1820) + Fixed Time Until Next Charge display. - seraid (https://github.com/hannibal002/SkyHanni/pull/1806) ++ Fixed typos and formatting in Craft Materials From Bazaar. - + hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1840) ++ Fixed invalid bazaar items being highlighted in the clickable items feature. - + hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1841) ++ Fixed Bazaar price features not working for Ultimate Jerry. - + hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1842) #### Rift Fixes @@ -831,6 +840,8 @@ + Fixed the armor hider also hiding items in the inventory. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1813) + Fixed an error in the Outside SkyBlock setting. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1810) ++ Fixed memory leaks. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1839) ++ Fixed a small Memory Leak in MobData. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/1844) ### Technical Details diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 808904c53..126a6652f 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -487,7 +487,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.25.Beta.29", + version = "0.25", ) class SkyHanniMod { -- cgit