aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-30 23:48:51 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-30 23:48:51 +0100
commit766213194d86faaebaa6d51796d734c84dc33901 (patch)
tree03fd78e352cede20c644691f6e55a7093461d0d0
parent90da8983eaa77e44c32b9841212741404ab98b98 (diff)
downloadskyhanni-766213194d86faaebaa6d51796d734c84dc33901.tar.gz
skyhanni-766213194d86faaebaa6d51796d734c84dc33901.tar.bz2
skyhanni-766213194d86faaebaa6d51796d734c84dc33901.zip
Version 0.22 Beta 5
-rw-r--r--CHANGELOG.md20
-rw-r--r--FEATURES.md1
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 22 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8fff38456..fca310955 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -53,8 +53,11 @@
+ Added bottle of Jyrre time overlay in stack size feature. - HiZe
+ Added show special edition number as stack size when below 1k. - hannibal2
-### Changes
+#### Minion Features
+
++ Shows how much skill experience you will get when picking up items from the minion storage. - Thunderblade73
+### Changes
#### Garden Changes
@@ -65,11 +68,17 @@
+ 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
++ Made the wording of "no pest spawned yet" message more clear. - hannibal2
++ Not only show the waypoint for infected plots, also show their waypoints in the world. - hannibal2
#### Fishing Changes
+ Show the fishing tracker for a couple of seconds after catching something even while moving. - hannibal2
+#### Winter Changes
+
++ Hiding Unique Gifted Players Highlighting for ironman and bingo while not on those modes. - Thunderblade73
+
### Fixes
#### Garden Fixes
@@ -83,10 +92,13 @@
+ Fixed pest detection when more than 3 pests are spawned at once. - hannibal2
+ Fixed showing on the scoreboard "garden outside" immediately after teleporting to a plot. - hannibal2
+ Fixed visitor timer counting down too fast sometimes. - hannibal2
++ Fixed Mooshroom cow Perk display not showing when maxed. - hannibal2
#### Misc Fixes
+ Fixed Item Tracker not ignoring manual sack movements. - hannibal2
++ Fixed showing yourself green with Unique Gifting Opportunities. - hannibal2
++ Fixed NPC messages getting detected as player messages. - walker
#### Config Fixes
@@ -100,6 +112,12 @@
+ Added MessageSendToServerEvent. - hannibal2
+ Added GardenPlotAPI, support for detecting the current slot of the player. - hannibal2
+ Updated .editorconfig file to better support imports. - Thunderblade73
++ Migrate Integer to Enums in Config. - walker
++ Using a broken config no longer resets the config in dev env. - hannibal2
++ Auto-removing all labels of PRs on merging/closing. - hannibal2
++ Changed OwnInventoryItemUpdateEvent to be called synced to the main thread. - hannibal2
++ romanToDecimalIfNeeded -> romanToDecimalIfNecessary. - hannibal2
+ + For more context: https://chat.openai.com/share/502571b5-8851-4047-b343-3b1475ca8a88
## Version 0.21.1
diff --git a/FEATURES.md b/FEATURES.md
index 6e54bd72d..920aaab2a 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -174,6 +174,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
- Minion name display with minion tier.
- **Minion Craft Helper** - Show how many more items you need to upgrade the minion in your inventory. Especially useful
for bingo.
++ Shows how much skill experience you will get when picking up items from the minion storage. - Thunderblade73
</details>
<details open><summary>
diff --git a/build.gradle.kts b/build.gradle.kts
index 672586c14..7fd7b1457 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.22.Beta.4"
+version = "0.22.Beta.5"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index c869b47d9..0e2e49a9b 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -346,7 +346,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.22.Beta.4",
+ version = "0.22.Beta.5",
)
class SkyHanniMod {
@Mod.EventHandler