diff options
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | docs/CHANGELOG.md | 10 | ||||
-rw-r--r-- | docs/FEATURES.md | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 13 insertions, 3 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 7d14fa74b..4f2dca56f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,7 +14,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.24.Beta.4" +version = "0.24.Beta.5" val gitHash by lazy { val baos = ByteArrayOutputStream() diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 74ddf2061..b25055135 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,7 +4,7 @@ ### New Features -#### Inventory +#### Inventory Features + Added Max Items With Purse. - NetheriteMiner + Calculates the maximum number of items that can be purchased from the Bazaar with the number of coins in your @@ -14,6 +14,11 @@ + Gfs message after super crafting. — Zickles + Adding a clickable message to pick up the super crafted items from sacks. +#### Minion Features + ++ Added Inferno Minion Fuel pickup prevention. - Zickles (https://github.com/hannibal002/SkyHanni/pull/1103) + + Blocks picking up the Inferno Minion or replacing the fuel inside when expensive minion fuels are in use. + ### Improvements #### Chat Improvements @@ -61,6 +66,8 @@ #### Chat Fixes + Fixed Fire Sale chat hider not working when multiple fire sales are ending. - Zickles ++ Fixed Auto Tip chat filter. - alexia (https://github.com/hannibal002/SkyHanni/pull/1105) ++ Fixed Hide Anita Accessories' fortune bonus chat message not getting hidden in the chat filter. - alexia (https://github.com/hannibal002/SkyHanni/pull/1106) #### Command Fixes @@ -87,6 +94,7 @@ + Added stacking enchants to the repo. - CalMWolfs + Moved bazaar config into inventory category. - hannibal2 + Optimize IntelliJ icon. - nea ++ Used the isInIsland function more. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1107) ### Removed Features diff --git a/docs/FEATURES.md b/docs/FEATURES.md index f96e56743..4d3d9c11d 100644 --- a/docs/FEATURES.md +++ b/docs/FEATURES.md @@ -159,6 +159,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Copies the price of the hovered item in Auction House minus 1 coin into the clipboard for easier under-bidding. + Gfs message after super crafting. — Zickles + Adding a clickable message to pick up the super crafted items from sacks. ++ Added Inferno Minion Fuel pickup prevention. - Zickles (https://github.com/hannibal002/SkyHanni/pull/1103) + + Blocks picking up the Inferno Minion or replacing the fuel inside when expensive minion fuels are in use. </details> <details open><summary> diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 5c8d414ff..3a97c8c60 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -395,7 +395,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.24.Beta.4", + version = "0.24.Beta.5", ) class SkyHanniMod { |