diff options
-rw-r--r-- | CHANGELOG.md | 47 | ||||
-rw-r--r-- | FEATURES.md | 3 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 52 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 884017ef6..0588faf11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # SkyHanni - Change Log +## Version 0.22 (Unreleased) + +### New Features + +#### Garden Features + ++ Added Garden Vacuum Pests in Pest bag to item number as stack size. - hannibal2 + + Enable via /sh vacuum. ++ Added Pests to Damage Indicator. - hannibal2 + + Enable Damage Indicator and select Garden Pests. + +#### Other Features + ++ Added Barn Fishing Timer to Jerry's Workshop and Crimson Isle. - martimavocado ++ Added Fishing Tracker and changed trackers in general. - hannibal2 + + This tracker GUI behaves the same way as the Slayer Tracker: Allows for single item remove or hide + + Counts coin drops from chat. + + Mark the amount in green when recently gained the item. + + Option to hide the Fishing Tracker while moving. + + Option to hide all Trackers while Estimated Item Value is visible. + + Option to change the default display mode for all trackers. + + The hidden flag for items in Item Trackers is now shared between total view and session view. + + Option to exclude hidden items in the total price calculation. + + Option to change the display mode that gets shown on default: Total, Current or remember last. + +### Changes + ## Version 0.21.1 ### New Features @@ -14,6 +41,26 @@ ### Changes ++ /shtrackcollection now supports sack messages. - hannibal2 ++ Changed formatting of coin value to be more consistent over multiple features. - hannibal2 ++ Made skill level as item number no longer default enabled. - hannibal2 + +### Fixes + ++ Fixed the wrong colouring of hidden items in Slayer Profit Tracker. - hannibal2 ++ Added support for NEU Heavy Pearl TO-DO fix working without nether sacks as well. - hannibal2 ++ Fixed Estimated Item Value getting shown in pet rule creation wardrobe slot pick menu. - hannibal2 + +### Technical Details + ++ Added /shwhereami command to show the current island. - martimavocado ++ Tons of code clean-ups over the whole project. - walker & hannibal2 + + Added ItemAddEvent. - hannibal2 ++ Gets called when the user collects an item into inventory or sacks. ++ Created SkyHanniItemTracker. - hannibal2 + + This is a Special variant of SkyHanniTracker, that has item specific functions (hide or remove) and different price variants. ++ Migrated slayer profit data into SkyHanniTracker format. - hannibal2 + #### Garden Changes + Added mythic/Maeve visitor support. - walker & hannibal2 diff --git a/FEATURES.md b/FEATURES.md index b354e160d..bb503c3ae 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -245,6 +245,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. - Option to show the health of Voidgloom Seraph 4 during the laser phase (useful when trying to phase skip) - Show when Revenant Horror 5 is about to BOOM. - Hide the vanilla nametag of damage indicator bosses. +- Garden Pests in Damage Indicator - **Time to Kill** - Show the time it takes to kill the Slayer boss. @@ -494,6 +495,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + You can use this to share your hypixel data with SkyHanni via the discord. + This will allow us to fix the crop milestone features quicker, as we currently do not have accurate data for this. + If you don't want to share anything, you can disable the chat message in the config with /sh copy milestone data. ++ Garden Vacuum Pests in Pest bag to item number as stack size. - hannibal2 + + Enable via /sh vacuum. </details> <details open><summary> diff --git a/build.gradle.kts b/build.gradle.kts index 5abe8290f..0808ebfe2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.21.1" +version = "0.22.Beta.1" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 864761788..cae6e6ce1 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -336,7 +336,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.21.1", + version = "0.22.Beta.1", ) class SkyHanniMod { @Mod.EventHandler |