diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-02-16 12:45:22 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-02-16 12:45:22 +0100 |
commit | a4e00ec60843c109cee33aa0e49b4ec79c9492c1 (patch) | |
tree | b109fb5786a9e1bbe30963144461e55035ad3963 | |
parent | 6f72199aa3677a507b7e5e3f57c878549d242c4f (diff) | |
download | skyhanni-a4e00ec60843c109cee33aa0e49b4ec79c9492c1.tar.gz skyhanni-a4e00ec60843c109cee33aa0e49b4ec79c9492c1.tar.bz2 skyhanni-a4e00ec60843c109cee33aa0e49b4ec79c9492c1.zip |
Version 0.23 Beta 20
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rw-r--r-- | FEATURES.md | 4 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 19 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fe91eeef1..48eaae38b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,10 @@ + Added Dojo Rank Display. - HiZe + Display your rank, score, actual belt and points needed for the next belt in the Challenges inventory on the Crimson Isles. ++ Crimson Isle Volcano Geyser features. - MrFast + + 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. #### Inventory Features @@ -123,6 +127,7 @@ + Smarter check if the player is fishing for all fishing related displays. - hannibal2 + Hide Sea Creature Tracker when wearing full Trophy Hunter armor. - martimavocado + Disabled Fishing Profit/SC Tracker in Kuudra. - CalMWolfs ++ Moved Sulphur Skitter Box from Crimson Isle to Fishing -> Trophy Fishing. - hannibal2 #### Mining Changes @@ -213,6 +218,8 @@ + Fixed Anita and Jacob workaround working outside of garden. - CalMWolfs + Fixed opening visitor Milestones menu not loading visitor amount for /ff. - martimavocado + Fixed Sensitivity Reducer still working when switching from the garden to the hub. - martimavocado ++ Fixed a rare farming weight API error. - CalMWolfs ++ Fixed mouse rotation unlocks after doing /warp garden with Sensitivity Reducer on. - martimavocado #### Combat Fixes @@ -314,6 +321,8 @@ + Fixed rare error in Harp Features. - Thunderblade73 + Fixed some getItemStack errors. - CalMWolfs + Fixed Minion XP calculation not working when having different mouse settings. - Thunderblade73 ++ Fixed /gfs tab complete. - martimavocado ++ Fixed /warp is command replace. - hannibal2 ### Technical Changes @@ -375,6 +384,10 @@ + A ton of code cleanup, mainly on imports. - Thunderblade73 & hannibal2 + Added mod identification for outgoing mod calls and show this data in /shchathistory. - nea + Sensitivity Reducer changes: clearer error message, using ChatUtils and wrong values in debug data. - martimavocado ++ Bumped NEU to version 2.1.1 pre-5. - CalMWolfs ++ Fixed an NPE in ReflectionUtils.shPackageName. - Thunderblade73 ++ Cleaned up string pluralization methods. - alexia ++ Moved many regex patterns in the repo and code cleanup. - CalMWolfs ## Version 0.22 diff --git a/FEATURES.md b/FEATURES.md index fe862b950..78d704ded 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -959,6 +959,10 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. kicking the player. + Color the month names on the scoreboard. - J10a1n15 + Blocks the mining ability when on a private island. - Thunderblade73 ++ Crimson Isle Volcano Geyser features. - MrFast + + 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. </details> <details open><summary> diff --git a/build.gradle.kts b/build.gradle.kts index 0a0f0b69f..c3a6bdcc7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,7 +14,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.23.Beta.19" +version = "0.23.Beta.20" val gitHash by lazy { val baos = ByteArrayOutputStream() diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 56c25cf49..e6be89916 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -386,7 +386,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.23.Beta.19", + version = "0.23.Beta.20", ) class SkyHanniMod { |