aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md26
-rw-r--r--FEATURES.md3
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 28 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0a0876114..56111dd85 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,7 +13,6 @@
+ 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
@@ -22,8 +21,10 @@
+ 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.
++ Mark the plots with pests on them in the world. - hannibal2
++ Press the key to warp to the nearest plot with pests on it. - hannibal2
-#### Other Features
+#### Fishing Features
+ Added Barn Fishing Timer to Jerry's Workshop and Crimson Isle. - martimavocado
+ Added Fishing Tracker and changed trackers in general. - hannibal2
@@ -46,12 +47,32 @@
+ 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.
++ Show the hint to open Configure Plot only if the pest display is incorrect. - hannibal2
++ Added the "plot" word to the sidebar again (only if there are no pests in garden). - hannibal2
++ Hide the Composter Overlay in composter inventory while the Estimated Item Value is visible. - hannibal2
+
+#### Fishing Changes
+
++ Show the fishing tracker for a couple of seconds after catching something even while moving. - hannibal2
### Fixes
#### Garden Fixes
+ Fixed pest damage indicator not working for some pests. - hannibal2
++ Fixed pest kill detection. - hannibal2
++ Fixed /tp <plot name> not working with uppercase characters. - hannibal2
++ Fixed total equipment fortune in /ff. - alexia
++ Fixed Locust pest not getting detected in damage indicator. - hannibal2
++ Fixed Pest Spray Display showing outside the garden. - hannibal2
+
+#### Misc Fixes
+
++ Fixed Item Tracker not ignoring manual sack movements. - hannibal2
+
+#### Config Fixes
+
++ Fixed a typo in config. - walker
### Technical Details
@@ -60,6 +81,7 @@
+ Replaced SkyHanniMod.feature.garden with GardenAPI.config. - hannibal2
+ Added MessageSendToServerEvent. - hannibal2
+ Added GardenPlotAPI, support for detecting the current slot of the player. - hannibal2
++ Updated .editorconfig file to better support imports. - Thunderblade73
## Version 0.21.1
diff --git a/FEATURES.md b/FEATURES.md
index 871eadce2..18fe0e7b2 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -507,7 +507,6 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ 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
@@ -516,6 +515,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ 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.
++ Mark the plots with pests on them in the world. - hannibal2
++ Press the key to warp to the nearest plot with pests on it. - hannibal2
</details>
<details open><summary>
diff --git a/build.gradle.kts b/build.gradle.kts
index 979fb2ccd..3fa18eeed 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.22.Beta.2"
+version = "0.22.Beta.3"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 32c77e46b..451fde279 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.2",
+ version = "0.22.Beta.3",
)
class SkyHanniMod {
@Mod.EventHandler