diff --git a/CHANGELOG.md b/CHANGELOG.md index 0450027e30a9..0a08761148c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,18 @@ + Enable via /sh vacuum. + Added Pests to Damage Indicator. - hannibal2 + Enable Damage Indicator and select Garden Pests. ++ Change how the pest spawn chat message should be formatted. - hannibal2 + + Unchanged, compact or hide the message entirely. ++ Show a Title when a pest spawns. - hannibal2 ++ Press a key to warp to the plot where the last pest has spawned. - hannibal2 ++ Show the time since the last pest spawned in your garden. - hannibal2 + + Option to only show the time while holding vacuum in the hand. ++ Show the pests that are attracted when changing the selected material of the Sprayanator. - hannibal2 ++ Added Garden only commands /home, /barn and /tp, and hotkeys. - hannibal2 ++ Showing a better plot name in the scoreboard. Updates faster and doesn't hide when pests are spawned. - hannibal2 ++ Show a display with all known pest locations. - hannibal2 + + Click to warp to the plot. + + Option to only show the time while holding vacuum in the hand. #### Other Features @@ -27,6 +39,28 @@ ### Changes + +#### Garden Changes + ++ Added option to enable/disable the vacuum bag item number being capped to 40. - hannibal2 ++ Automatic unlocking /shmouselock when teleporting in the garden. - hannibal2 ++ Don't hide messages from Jacob. - alexia + + This is a workaround for wrongly hidden Jakob messages. + +### Fixes + +#### Garden Fixes + ++ Fixed pest damage indicator not working for some pests. - hannibal2 + +### Technical Details + ++ Code cleanup in many files. - walker & hannibal2 ++ Moved the JSON object files into another package. - walker ++ Replaced SkyHanniMod.feature.garden with GardenAPI.config. - hannibal2 ++ Added MessageSendToServerEvent. - hannibal2 ++ Added GardenPlotAPI, support for detecting the current slot of the player. - hannibal2 + ## Version 0.21.1 ### New Features diff --git a/FEATURES.md b/FEATURES.md index dfcfd6820f21..871eadce21e7 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -498,6 +498,25 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Garden Vacuum Pests in Pest bag to item number as stack size. - hannibal2 + Enable via /sh vacuum. +### Pests + ++ 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. ++ Change how the pest spawn chat message should be formatted. - hannibal2 + + Unchanged, compact or hide the message entirely. ++ Show a Title when a pest spawns. - hannibal2 ++ Press a key to warp to the plot where the last pest has spawned. - hannibal2 ++ Show the time since the last pest spawned in your garden. - hannibal2 + + Option to only show the time while holding vacuum in the hand. ++ Show the pests that are attracted when changing the selected material of the Sprayanator. - hannibal2 ++ Added Garden only commands /home, /barn and /tp, and hotkeys. - hannibal2 ++ Showing a better plot name in the scoreboard. Updates faster and doesn't hide when pests are spawned. - hannibal2 ++ Show a display with all known pest locations. - hannibal2 + + Click to warp to the plot. + + Option to only show the time while holding vacuum in the hand. +
diff --git a/build.gradle.kts b/build.gradle.kts index 0808ebfe2704..979fb2ccd08b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.22.Beta.1" +version = "0.22.Beta.2" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index b1dd1c921a44..32c77e46bec4 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -342,7 +342,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.22.Beta.1", + version = "0.22.Beta.2", ) class SkyHanniMod { @Mod.EventHandler