aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-05-20 18:48:10 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-05-20 18:48:10 +0200
commitd5585f83808a68fcee6ed2786980fd9e7825fb0c (patch)
tree481e9a0d386aed6a6a5bcb6d5a8f0157ea1ac8e0
parenta8c52abd831accdd774456ca3ccdf8c3cfebe83c (diff)
downloadskyhanni-d5585f83808a68fcee6ed2786980fd9e7825fb0c.tar.gz
skyhanni-d5585f83808a68fcee6ed2786980fd9e7825fb0c.tar.bz2
skyhanni-d5585f83808a68fcee6ed2786980fd9e7825fb0c.zip
Version 0.25
-rw-r--r--build.gradle.kts2
-rw-r--r--docs/CHANGELOG.md15
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
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 {