diff options
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | docs/CHANGELOG.md | 19 | ||||
-rw-r--r-- | docs/FEATURES.md | 8 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 28 insertions, 3 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index ed95961ab..5af1b89be 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.24.Beta.7" +version = "0.24.Beta.8" val gitHash by lazy { val baos = ByteArrayOutputStream() diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index d3f620133..684f0575b 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -19,6 +19,19 @@ + Added Inferno Minion Fuel pickup prevention. - Zickles (https://github.com/hannibal002/SkyHanni/pull/1103) + Blocks picking up the Inferno Minion or replacing the fuel inside when expensive minion fuels are in use. +#### Chat Features ++ Hide chat message about bank interest when the received interest is zero coins. - Alexia (https://github.com/hannibal002/SkyHanni/pull/1117) + +#### Misc Features + ++ Added command `/shlimbo` for easier Limbo access. - martimavocado (https://github.com/hannibal002/SkyHanni/pull/848) + + Limbo time tracker also now works in the Slumber Hotel in the Bed Wars Lobby. + + A new secret method to get more SkyHanni User Luck from Limbo. ++ Added command `/shlimbostats` for a simple way to view your Limbo stats. - martimavocado (https://github.com/hannibal002/SkyHanni/pull/848) + + Support for `/playtime` and `/pt` while in Limbo. + + Added your playtime to Hypixel's `/playtimedetailed`. ++ Added full auto-update for SkyHanni. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/1122) + ### Improvements #### Chat Improvements @@ -45,6 +58,7 @@ + Added goal to collection tracker. - Thunderblade73 + /shtrackcollection \<item name> [goal amount] + Shows a chat message once the goal has been reached. ++ Added SkyHanni update download finished chat message. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/1122) ### Fixes @@ -71,6 +85,10 @@ + Fixed some chat symbols showing twice in chat due to a Hypixel change. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1119) + Fixed Anita's Accessory chat filter not working with multi-word crops (Cocoa Beans, Nether Wart, Sugar Cane). - Alexia (https://github.com/hannibal002/SkyHanni/pull/1115) +#### Garden Fixes + ++ Stop SkyHanni from saying that Next Visitor is visiting your garden. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1125) + #### Command Fixes + Fixed duplicate commands in /shcommands. - CalMWolfs @@ -116,6 +134,7 @@ + Use less forge events throughout the mod to reduce possible crashes. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1085) + Fix entity click not being canceled - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/1072) + Cleanup ItemClickData. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/1072) ++ Fixes minecraft bug where text that is bold can render weirdly. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1126) ### Removed Features diff --git a/docs/FEATURES.md b/docs/FEATURES.md index 4d3d9c11d..4fb18c635 100644 --- a/docs/FEATURES.md +++ b/docs/FEATURES.md @@ -977,10 +977,16 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Stops the white geyser smoke particles from rendering if your bobber is near the geyser. + Draws a box around the effective area of the geyser. + Change the color of the box around the geyser. -+ Added Skill Progress Display. - HiZe ++ Skill Progress Display. - HiZe + ETA Display, exp, actions or percentage to next level, custom level goals, all skill display, chroma progress bar, and overflow levels for all those things. + A ton of settings. ++ Command `/shlimbo` for easier Limbo access. - martimavocado (https://github.com/hannibal002/SkyHanni/pull/848) + + Limbo time tracker also now works in the Slumber Hotel in the Bed Wars Lobby. + + A new secret method to get more SkyHanni User Luck from Limbo. ++ Command `/shlimbostats` for a simple way to view your Limbo stats. - martimavocado (https://github.com/hannibal002/SkyHanni/pull/848) + + Support for `/playtime` and `/pt` while in Limbo. + + Added your playtime to Hypixel's `/playtimedetailed`. </details> <details open><summary> diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 465e2efc2..373acc031 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -397,7 +397,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.24.Beta.7", + version = "0.24.Beta.8", ) class SkyHanniMod { |