diff options
-rw-r--r-- | CHANGELOG.md | 22 | ||||
-rw-r--r-- | FEATURES.md | 10 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 31 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b32242cac..783439361 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,6 @@ + Added command /shcropsin <time> <item>. - DylanBruner + Shows the number of items you gain when farming in the garden for the given time. - -#### Fishing Features - + Show sack item amount to the visitor shopping list. - CalMWolfs #### Fishing Features @@ -18,6 +15,14 @@ + Added Sea Creature Tracker. - hannibal2 + Allows to only show single variants, e.g. water or lava or winter. +#### Crimson Isle Features + ++ 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. ++ Added Volcano Explosivity in Crimson Isle. - Erymanthus + + Show a HUD of the current volcano explosivity level. + #### Inventory Features + Added Power Stone Guide features. - hannibal2 @@ -52,6 +57,11 @@ + Fixes Ghost Entities. - hannibal2 & nea & Thunderblade73 + Removes ghost entities caused by a Hypixel bug. This included Diana, Dungeon and Crimson Isle mobs and nametags. ++ Added Harp GUI Scale. - Thunderblade73 + + Automatically sets the GUI scale to AUTO when entering the Harp. ++ Added Harp Quick Restart. - Thunderblade73 + + Once you've launched the harp, quickly hit the close button in the harp menu to initiate the selected song. ++ Color the month names on the scoreboard. - J10a1n15 ### Changes @@ -123,6 +133,7 @@ + Tia Relay Helper: Suggest /togglemusic. - alexia + Added option to ignore Everything Chroma in the chat. - VixidDev ++ Added Item Ability Cooldown support for Talbot's Theodolite (the Farming Island Trapper tracker thing). - Erymanthus ### Fixes @@ -148,6 +159,10 @@ + Hide No Fishing Bait warning during Kuudra fight. - hannibal2 + Fixed Dungeon and Kuudra party finder join message not detecting in party member tab complete. - CalMWolfs + Fixed Fire Veil Wand circle shows on left-clicking. - hannibal2 ++ Fixed Ashfang Freeze Cooldown being off by one second. Fixed Fire Veil line gets shown even while frozen. - hannibal2 ++ Fixed all Damage Indicator boss timers in Dungeons being off by a second. - hannibal2 ++ Gave Damage Indicator mobs correct names on floor 1, 2, 3 and 6. (Removed "Generic Dungeon Boss") - hannibal2 ++ Fixed the M3 reinforced guardian not getting detected in the Damage Indicator. - hannibal2 #### Diana Fixes @@ -249,6 +264,7 @@ + Added function SlotClickEvent.makeShiftClick(). - Thunderblade73 + Used a better bug fix for DelayedRun sync issues. - Thunderblade73 + Creating and using TimeLimitedCache and TimeLimitedSet instead of guava cache. - hannibal2 ++ Bring back the deleted item modifier test and fix the issue causing it. - CalMWolfs ## Version 0.22 diff --git a/FEATURES.md b/FEATURES.md index 4346a4bb6..176a8f11f 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -128,6 +128,10 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Shows a list of all items and their price when inside a chest on your private island. + In Melody's Harp, show buttons as stack size. - NetheriteMiner + Intended to be used with Harp Keybinds ++ Added Harp GUI Scale. - Thunderblade73 + + Automatically sets the GUI scale to AUTO when entering the Harp. ++ Added Harp Quick Restart. - Thunderblade73 + + Once you've launched the harp, quickly hit the close button in the harp menu to initiate the selected song. + **Quick Craft Confirmation**. - Cad + Require Ctrl+Click to craft items that aren't often quick crafted (e.g. armor, weapons, accessories). + Sack items can be crafted normally. @@ -774,6 +778,11 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. needed from the sacks. + Crimson Isle **Pablo NPC Helper**. - NetheriteMiner + Similar to Quest Item Helper, shows a clickable message that grabs the flower needed from sacks. ++ 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. ++ Added Volcano Explosivity in Crimson Isle. - Erymanthus + + Show a HUD of the current volcano explosivity level. + Red Scoreboard Numbers - Hides the red numbers in the scoreboard sidebar on the right side of the screen. + **Tia Relay Waypoint** - Show the next Relay waypoint for Tia The Fairy, where maintenance for the abiphone network needs to be done. @@ -931,6 +940,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Party Kick with reason. - nea + Added support for the Hypixel command /p kick /pk to add a reason. The reason will be sent in party chat before kicking the player. ++ Color the month names on the scoreboard. - J10a1n15 </details> <details open><summary> diff --git a/build.gradle.kts b/build.gradle.kts index ef1313225..6af3bc544 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,7 +14,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.23.Beta.10" +version = "0.23.Beta.11" 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 a58c50ec0..080c38255 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -373,7 +373,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.23.Beta.10", + version = "0.23.Beta.11", ) class SkyHanniMod { |