diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-01-01 16:54:56 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-01-01 16:54:56 +0100 |
commit | b358279bc719d899600faed9e9a59141dc89c203 (patch) | |
tree | 8589297f80db1af380f3b8f5d57d3ce7a7ca66f6 | |
parent | bc22141e6f7528b3987e02263b8d3a8a34dd7918 (diff) | |
download | skyhanni-b358279bc719d899600faed9e9a59141dc89c203.tar.gz skyhanni-b358279bc719d899600faed9e9a59141dc89c203.tar.bz2 skyhanni-b358279bc719d899600faed9e9a59141dc89c203.zip |
Version 0.23 Beta 3
-rw-r--r-- | CHANGELOG.md | 22 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
3 files changed, 24 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e239c57f..7b781b9e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ + Renamed Visitor Items Needed to Visitor Shopping List. - hannibal2 + Added biofuel support to the Composter Overlay get from sack logic. - obsidian ++ Updated max reforge fortune for Fungi Cutter. - alexia + + Hypixel has increased the base rarity to Epic. #### Rift Changes @@ -29,6 +31,15 @@ + Odger highlight feature tells in description that it is only useful for users without abiphone. - hannibal2 +#### Bingo Changes + ++ Show the guide text when hovering over the missing bingo goal list. - hannibal2 + +#### Inventory Changes + ++ Removed flawless gemstones from sack display. - CalMWolfs + + Hypixel removed them from sacks. + ### Fixes #### Garden Fixes @@ -36,6 +47,7 @@ + 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 ++ Fixed Mooshroom Cow Perk counter when farming sugar cane/cactus with Mooshroom Cow. - alexia #### Rift Fixes @@ -51,11 +63,21 @@ + Fixed hide non-clickable items not working in some bazaar pages. - hannibal2 + Fixed rogue sword ability taking into account mage cooldown reduction. - Empa +#### Bingo Fixes + ++ Fixed detecting bingo profile while visiting other players bingo island. - hannibal2 + +#### Misc Fixes + ++ Maybe fixed Tia Relay Helper. - Thunderblade73 + ### Technical Changes + Migrate Hypixel API to v2. - hannibal2 + Added SackDataUpdateEvent. - CalMWolfs + Fixing a mac crash in dev environment automatically. - CalMWolfs ++ Bingo repo change: Make note of an alternative title, and create a guide field for the actual guide text. - hannibal2 ++ Moved Tia Relay Helper chat messages into repo patterns. - Thunderblade73 ## Version 0.22 diff --git a/build.gradle.kts b/build.gradle.kts index d8fd55622..4a72ae61b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.23.Beta.2" +version = "0.23.Beta.3" 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 d10b5262c..dfd92c8d4 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.2", + version = "0.23.Beta.3", ) class SkyHanniMod { @Mod.EventHandler |