diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-29 11:05:58 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-29 11:05:58 +0100 |
commit | c7fff0313b9f06b4b01ebc93580182b585ec9def (patch) | |
tree | d07998c8d1608fe2dc8a9bab509fd3049df3df93 | |
parent | b135f4d128acaf67340fd7d9f8d7fe37804e26d4 (diff) | |
download | skyhanni-c7fff0313b9f06b4b01ebc93580182b585ec9def.tar.gz skyhanni-c7fff0313b9f06b4b01ebc93580182b585ec9def.tar.bz2 skyhanni-c7fff0313b9f06b4b01ebc93580182b585ec9def.zip |
Version 0.23 Beta 2
-rw-r--r-- | CHANGELOG.md | 26 | ||||
-rw-r--r-- | FEATURES.md | 1 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 29 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1da776e30..3e239c57f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,18 +6,37 @@ #### Fishing Features ++ Show sack item amount to the visitor shopping list. - CalMWolfs + +#### Fishing Features + + Added Sea Creature Tracker. - hannibal2 + Allows to only show single variants, e.g. water or lava or winter. ### Changed +#### Garden Changes + ++ Renamed Visitor Items Needed to Visitor Shopping List. - hannibal2 ++ Added biofuel support to the Composter Overlay get from sack logic. - obsidian + #### Rift Changes + Rift time now updates correctly in wizard tower and instantly updates the format when toggling max time or percentage. - hannibal2 +#### Fishing Changes + ++ Odger highlight feature tells in description that it is only useful for users without abiphone. - hannibal2 + ### Fixes +#### Garden Fixes + ++ Fixed mushrooms being counted with Common/Uncommon Mooshroom Cow Pet. - alexia ++ Fixed progress to maxed milestone appearing twice in the crop milestone menu when having milestone 20. - Empa ++ Fixed max crop milestone display being too long in the crop milestone menu. - obsidian + #### Rift Fixes + Fixed vampire slayer damage indicator not working during Derpy. - hannibal2 @@ -27,9 +46,16 @@ + Fixed Reindrake mob, Frosty NPC and frosty the snow blaster shop counting as sea creatures in the barn fishing timer. - hannibal2 +#### Invenory Fixes + ++ Fixed hide non-clickable items not working in some bazaar pages. - hannibal2 ++ Fixed rogue sword ability taking into account mage cooldown reduction. - Empa + ### Technical Changes + Migrate Hypixel API to v2. - hannibal2 ++ Added SackDataUpdateEvent. - CalMWolfs ++ Fixing a mac crash in dev environment automatically. - CalMWolfs ## Version 0.22 diff --git a/FEATURES.md b/FEATURES.md index 5b962638f..d681c89ec 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -551,6 +551,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + 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. ++ Show sack item amount to the visitor shopping list. - CalMWolfs ### Garden Pests diff --git a/build.gradle.kts b/build.gradle.kts index d0a6b7777..d8fd55622 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.23.Beta.1" +version = "0.23.Beta.2" val gitHash by lazy { val baos = ByteArrayOutputStream() diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 50592b896..d10b5262c 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -363,7 +363,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.23.Beta.1", + version = "0.23.Beta.2", ) class SkyHanniMod { @Mod.EventHandler |