diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-01-06 13:18:21 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-01-06 13:18:21 +0100 |
commit | 19a9e8d3c05cab390ab2881462310cf1e0192b4b (patch) | |
tree | 9602dfc3515805eebc10ab1146af577610cf4ed7 | |
parent | 39f33e0d60e18afbc94549a7659744cd173b2c8f (diff) | |
download | skyhanni-19a9e8d3c05cab390ab2881462310cf1e0192b4b.tar.gz skyhanni-19a9e8d3c05cab390ab2881462310cf1e0192b4b.tar.bz2 skyhanni-19a9e8d3c05cab390ab2881462310cf1e0192b4b.zip |
Version 0.23 Beta 4
-rw-r--r-- | CHANGELOG.md | 28 | ||||
-rw-r--r-- | FEATURES.md | 2 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 31 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b781b9e2..31ade8127 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # SkyHanni - Change Log -## Version 0.22 (Unreleased) +## Version 0.23 (Unreleased) ### New Features +#### Garden Features + ++ 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 @@ -21,11 +26,17 @@ + Added biofuel support to the Composter Overlay get from sack logic. - obsidian + Updated max reforge fortune for Fungi Cutter. - alexia + Hypixel has increased the base rarity to Epic. ++ Don't count Bountiful as a max reforge fortune on tools. - alexia ++ /shcroptime now supports k, m and b numbers. - DylanBruner ++ Only show the Garden Vacuum Bag on your own vacuums. - alexia #### Rift Changes + Rift time now updates correctly in wizard tower and instantly updates the format when toggling max time or percentage. - hannibal2 ++ Added options to only show the Rift Vermin Tracker with vacuum on inventory and only in West Village. - Empa + + This now hides the Vermin Tracker by default when not in the surrounding area. ++ Show the Vermin Tracker immediately after joining the rift. - hannibal2 #### Fishing Changes @@ -40,6 +51,14 @@ + Removed flawless gemstones from sack display. - CalMWolfs + Hypixel removed them from sacks. +#### Dungeon Changes + ++ Changed the description of the Dungeon Chat Filter feature to be more descriptive. - Wambo + +#### Misc Changes + ++ Tia Relay Helper: Suggest /togglemusic. - alexia + ### Fixes #### Garden Fixes @@ -48,6 +67,8 @@ + Fixed progress to maxed milestone appearing twice in the crop milestone menu when having milestone 20. - Empa + Fixed max crop milestone display being too long in the crop milestone menu. - obsidian + Fixed Mooshroom Cow Perk counter when farming sugar cane/cactus with Mooshroom Cow. - alexia ++ Show an error message for the commands /shcropsin and /shcroptime if show money per hour display is not loaded. - hannibal2 ++ Auto-fixing plots marked as pests when killing all pests without SkyHanni earlier. - hannibal2 #### Rift Fixes @@ -62,6 +83,7 @@ + Fixed hide non-clickable items not working in some bazaar pages. - hannibal2 + Fixed rogue sword ability taking into account mage cooldown reduction. - Empa ++ Reset item ability cooldowns on the world switch. - hannibal2 #### Bingo Fixes @@ -78,6 +100,10 @@ + Fixing a mac crash in dev environment automatically. - CalMWolfs + Bingo repo change: Make note of an alternative title, and create a guide field for the actual guide text. - hannibal2 + Moved Tia Relay Helper chat messages into repo patterns. - Thunderblade73 ++ Added Dark Auction as IslandType and fixed IslandType detection for dungeons. - j10a1n15 ++ Modify instead of blocking trophy fishing and sea creature chat messages. - appable ++ Changed regex in case Hypixel changes color codes for island names in the tab list. - Empa ++ Extract FirstMinionTier logic from the Bingo Minion Craft Helper to better analyze the performance problems some users have. - hannibal2 ## Version 0.22 diff --git a/FEATURES.md b/FEATURES.md index d681c89ec..836aecfed 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -716,6 +716,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + **/shcropspeedmeter** - Helps calculate the real farming fortune with the formula crops broken per block. + **/shcroptime <amount> <item>** Displays the estimated time it will take to gather the requested quantity of a particular item based on the current crop speed. ++ **/shcropsin <time> <item>**. - DylanBruner + + Shows the number of items you gain when farming in the garden for the given time. + `/pt <player>` as alias for `/party transfer <player>` + SkyBlock Command `/tp` to check the play time still works + **/shfarmingprofile [player name]** diff --git a/build.gradle.kts b/build.gradle.kts index 4a72ae61b..2888727db 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.23.Beta.3" +version = "0.23.Beta.4" 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 dfd92c8d4..51ff0bd62 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -363,7 +363,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.23.Beta.3", + version = "0.23.Beta.4", ) class SkyHanniMod { @Mod.EventHandler |