diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-29 00:34:55 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-29 00:34:55 +0100 |
commit | fc5615abdbaaec1cd6bb388eb3a625791cae42f0 (patch) | |
tree | 3973f27538a12063ceab5264f2110e17c46b09e7 | |
parent | 02015216b436aedc5d564ed15ea585d9e9a6972b (diff) | |
download | skyhanni-fc5615abdbaaec1cd6bb388eb3a625791cae42f0.tar.gz skyhanni-fc5615abdbaaec1cd6bb388eb3a625791cae42f0.tar.bz2 skyhanni-fc5615abdbaaec1cd6bb388eb3a625791cae42f0.zip |
Version 0.22 Beta 4
-rw-r--r-- | CHANGELOG.md | 18 | ||||
-rw-r--r-- | FEATURES.md | 7 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 27 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 56111dd85..8fff38456 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,21 @@ + 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. +#### Winter Features + ++ Added Unique Gifting Opportunities. - nea + + Highlight players who you haven't given gifts to yet. + + Only highlight ungifted players while holding a gift. + + Make use of armor stands to stop highlighting players. This is a bit inaccurate, but it can help with people you gifted before this feature was used. ++ Added Unique Gifted users counter. - hannibal2 + + Show in a display how many unique players you have given gifts to in the winter 2023 event. + + Run command /opengenerowmenu to sync up. + +#### Inventory Features + ++ Added bottle of Jyrre time overlay in stack size feature. - HiZe ++ Added show special edition number as stack size when below 1k. - hannibal2 + ### Changes @@ -65,6 +80,9 @@ + 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 ++ 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 #### Misc Fixes diff --git a/FEATURES.md b/FEATURES.md index 18fe0e7b2..6e54bd72d 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -622,6 +622,13 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Accept Hotkey: Accept a visitor when you press this keybind while in the visitor GUI. + Added support for showing the primal fear data from tab list as GUI elements. - Erymanthus + Play warning sound when the next Primal Fear can spawn. - thunderblade73 ++ Unique Gifting Opportunities. - nea + + Highlight players who you haven't given gifts to yet. + + Only highlight ungifted players while holding a gift. + + Make use of armor stands to stop highlighting players. This is a bit inaccurate, but it can help with people you gifted before this feature was used. ++ Unique Gifted users counter. - hannibal2 + + Show in a display how many unique players you have given gifts to in the winter 2023 event. + + Run command /opengenerowmenu to sync up. </details> <details open><summary> diff --git a/build.gradle.kts b/build.gradle.kts index 3fa18eeed..fe31fba8f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.22.Beta.3" +version = "0.22.Beta.4" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 312d72258..117bb2d28 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -345,7 +345,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.22.Beta.3", + version = "0.22.Beta.4", ) class SkyHanniMod { @Mod.EventHandler |