aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.gradle.kts2
-rw-r--r--docs/CHANGELOG.md38
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
3 files changed, 36 insertions, 6 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 53084b854..bbdcf97a5 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -15,7 +15,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.24.Beta.13"
+version = "0.24.Beta.14"
val gitHash by lazy {
val baos = ByteArrayOutputStream()
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index b77b7a056..29eb00d94 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -80,6 +80,7 @@
+ Adding a toggle to hide sky mall perk messages outside mining islands. - martimavocado
+ Added a toggle to hide Jacob's event artifact message outside the garden. - martimavocado
+ Added Booster Cookie purchase reminder to chat filter category others. - alexia
++ Hide the TNT Run Tournament advertisement message in the main lobby. - Alexia
#### Inventory Improvements
@@ -95,10 +96,6 @@
+ 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)
-#### Chat Improvements
-
-+ Hide the TNT Run Tournament advertisement message in the main lobby. - Alexia
-
##### Garden Improvements
+ Show calculation breakdowns when hovering over Anita Medal Profit or SkyMart Coins per copper displays. -
@@ -109,6 +106,25 @@
+ Show Town Board waypoint when there is an accepted Rescue Mission quest. -
Alexia (https://github.com/hannibal002/SkyHanni/pull/1157)
+#### Command Improvements
+
++ Allow using translate commands without the feature turned on. - Obsidian (https://github.com/hannibal002/SkyHanni/pull/1141)
+ + Changed /shsendtranslation to /shtranslate and moved it from internal commands.
+
+#### Gui Improvements
+
++ Added Scoreboard Improvements. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1183)
+ + Now only showing the two biggest units in time until next mayor.
+ + 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.
+
+#### 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.
+
#### Misc Improvements
+ Added option to show some features outside SkyBlock. - Obsidian
@@ -163,6 +179,7 @@
hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1154)
+ Fixed tab list visitor name detection breaking when tab list said "new" -
hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1151)
++ Fixed garden features appearing while visiting other player's garden. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1188)
#### Command Fixes
@@ -172,6 +189,7 @@
+ Added Burningsoul Demon (75M HP miniboss) to line to miniboss and highlight slayer minibosses. -
Empa (https://github.com/hannibal002/SkyHanni/pull/1144)
++ Fixed Damage Indicator not hiding vanilla names. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1179)
#### Gui Fixes
@@ -195,6 +213,12 @@
+ Fixed Hypixel scoreboard never reappearing. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1170)
+ Fixed pet name in tab list getting detected as player name with widget settings. -
hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1166)
++ Scoreboard Fixes. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1189)
+ + Fixed current power not working when the player doesn't have the accessory bag unlocked.
+ + Fixed bits to claim not setting to zero when the booster cookie item doesn't exist in SkyBlock Menu.
++ 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.
#### Dungeon Fixes
@@ -217,6 +241,8 @@
ooffyy (https://github.com/hannibal002/SkyHanni/pull/1137)
+ Improved performance of custom colored mobs. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/1127)
+ 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)
### Technical Details
@@ -303,6 +329,10 @@
+ Revert shader version for Mac compatibility. - Vixid (https://github.com/hannibal002/SkyHanni/pull/1176)
+ Added ItemStack.toPrimitiveStackOrNull(). - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1104)
+ Added InventoryOpenEvent.inventoryItemsPrimitive. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1104)
++ Added custom scoreboard lines to /shdebug. - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/1183)
++ 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)
### Removed Features
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 4c9bc9fbd..2f201121e 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.13",
+ version = "0.24.Beta.14",
)
class SkyHanniMod {