aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.gradle.kts2
-rw-r--r--docs/CHANGELOG.md29
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
3 files changed, 31 insertions, 2 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index af644c710..f43a289f9 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -15,7 +15,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.24.Beta.11"
+version = "0.24.Beta.12"
val gitHash by lazy {
val baos = ByteArrayOutputStream()
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 79f2ec252..44ca93e28 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -84,6 +84,10 @@
+ Added option to only show Custom Text Box while an inventory is open. - martimavocado
+ Added option to hide Profit Trackers while not inside an inventory. - hannibal2
++ Custom Scoreboard improvements. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1156)
+ + Added a warning to config about other mods.
+ + Added three empty lines.
+ + Added option to hide empty lines at the top/bottom.
#### Chat Improvements
@@ -94,6 +98,10 @@
+ Show calculation breakdowns when hovering over Anita Medal Profit or SkyMart Coins per copper displays. -
hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1116)
+#### Crimson Improvelemts
+
++ Show Town Board waypoint when there is an accepted Rescue Mission quest. - Alexia (https://github.com/hannibal002/SkyHanni/pull/1157)
+
#### Misc Improvements
+ Added option to show some features outside SkyBlock. - Obsidian
@@ -158,6 +166,25 @@
+ Added Burningsoul Demon (75M HP miniboss) to line to miniboss and highlight slayer minibosses. -
Empa (https://github.com/hannibal002/SkyHanni/pull/1144)
+#### Gui Fixes
+
++ Fixed voting line, dojo, server-restart & plot pasting errors in custom scoreboard. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1152)
++ Fixed Mithril Powder showing Gemstone Powder instead. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1152)
++ Custom Scoreboard fixes. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1156)
+ + Fixed Jacob's Contest, Trevor the Trapper & M7 Dragons.
+ + Fixed the bottom border not working when using a custom background.
+ + Fixed Hypixel scoreboard being shown while using Apec.
++ Fixed skill detection from tab list again. - HiZe_ (https://github.com/hannibal002/SkyHanni/pull/1160)
++ Fixed other GUIs rendering over Compact Tab List. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/1161)
++ Tab list fixes. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1121)
+ + Fixed garden spam because of wrong tab list visitor format.
+ + Fixed the next visitor timer.
+ + Allowed you to use extended visitor info and still have visitor display work.
+
+#### Dungeon Fixes
+
++ Fixed error in Dungeon Finder Features. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/1162)
+
#### Misc Fixes
+ Fixed skill level up message when below level 60. - HiZe
@@ -250,6 +277,8 @@
+ Code cleanup in LaneSwitchUtils.isBoundaryPlot. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1143)
+ Creating and using ContainerChest.getAllItems(), getUpperItems() and getLowerItems(). -
hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1047)
++ Fixed unknown power errors in the Custom Scoreboard. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1156)
++ Use a repo pattern for getting the visitor count. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1121)
### Removed Features
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 2732d68b8..e6e27dc97 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -408,7 +408,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.24.Beta.11",
+ version = "0.24.Beta.12",
)
class SkyHanniMod {