diff options
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | FEATURES.md | 1 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d9b4f08dd..a3f7882f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ + Added alerts when the player catches a Legendary Sea Creature. - Cad + Added Soulweaver Skull Hider to the Dungeon Object Hider. - nea + Hide the annoying soulweaver skulls that float around you if you have the soulweaver gloves equipped. ++ Added /shmouselock command to lock mouse rotation for farming. - Cad #### Events @@ -72,6 +73,9 @@ + Changed the Yaw/Pitch Display to not show scientific notations at very small numbers. - Obsidian + Added an option to the Advanced Player List to hide Crimson Isle faction icons. - hannibal2 + Added Enrichment to Estimated Item Value. - jani ++ Added Plhlegblast to the Rare Sea Creature Warning and Highlight. - hannibal2 ++ Disabling all Diana features if no Diana mayor is active, allowing to overwrite the Diana mayor check if the election API check failed. - CalMWolfs ++ Hiding a bunch of garden GUIs in a bunch of garden inventories. - hannibal2 ### Bug Fixes @@ -100,6 +104,9 @@ + Fixed Abiphone ring message not getting filtered correctly. - hannibal2 + Fixed the bug that faction icons in Crimson Isle are always hidden in the tab list. - hannibal2 + Fixed SkyHanni GUI Edit Button not working inside storage even if neu storage is not disabled. - hannibal2 ++ Hide "click" texts with the Fishing Hook Display. - hannibal2 ++ Fixed Highlight Showcase Items not working in some areas. - Obsidian ++ Fixed the Blaze Slayer Damage Indicator not working and no longer causing FPS drops. - hannibal2 #### Config diff --git a/FEATURES.md b/FEATURES.md index 7393e3c4a..aca676001 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -435,6 +435,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Option to send local contest data to elitebot.dev at the start of the new SkyBlock year. + **Visual garden plot borders** - VixidDev + Press F3 + G to enable/disable the view. ++ /shmouselock command to lock mouse rotation for farming. - Cad ## The Rift diff --git a/build.gradle.kts b/build.gradle.kts index d1efb4eb0..768e3c6de 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.21.Beta.8.1" +version = "0.21.Beta.9" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 897b3dc0f..7d4fd9d05 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -316,7 +316,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.21.Beta.8.1", + version = "0.21.Beta.9", ) class SkyHanniMod { @Mod.EventHandler |