aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-03-01 18:27:59 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-03-01 18:27:59 +0100
commit79f7741f3f17c615c5f25e90c9c7f1542625f4e5 (patch)
treea5ed0803e6f387b1d21d9dd525ca7c7afa52d636
parent53a1b5f0f0816a5990cf3efaa8685493b82bfd2b (diff)
downloadskyhanni-79f7741f3f17c615c5f25e90c9c7f1542625f4e5.tar.gz
skyhanni-79f7741f3f17c615c5f25e90c9c7f1542625f4e5.tar.bz2
skyhanni-79f7741f3f17c615c5f25e90c9c7f1542625f4e5.zip
Version 0.24 Beta 1
-rw-r--r--CHANGELOG.md43
-rw-r--r--FEATURES.md5
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 50 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 91cb8e8a4..837b3524b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,48 @@
# SkyHanni - Change Log
+## Version 0.24 (Unreleased)
+
+### New Features
+
+#### Inventory
+
++ 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
+ purse.
++ Added Copy Underbid Keybind. - Obsidian
+ + Copies the price of the hovered item in Auction House minus 1 coin into the clipboard for easier under-bidding.
+
+### Improvements
+
+### Bug Fixes
+
+#### Bingo
+
++ Fixed Bingo Card Tips using wrong slot sometimes. - Thunderblade73
+
+#### Mining
+
++ Fixed a small typo in the Deep Caverns Parkour message. - alexia
+
+### Technical Details
+
++ Auto-enable + configure DevAuth. - nea
++ Improve performance of removeColor. - nea
++ Removed wildcard imports in VisualWorldGui. - CalMWolfs
++ printStackTrace -> ErrorManager. - hannibal2
++ Added command /shconfig toggle <path> <value 1> <value 2>. - Obsidian
++ Removes usage of logError everywhere in the code and replaces it with logErrorWithData. - CalMWolfs
++ Removed ErrorManager.logErrorState(). - CalMWolfs
++ Creating number utils functions for string -> int, long, double, with either error throwing or wrong usage to user
+ message.
++ Removed RenderWorldLastEvent usage in WorldEdit feature. - hannibal2
++ Using GardenAPI.storage everywhere. - hannibal2
++ Added stacking enchants to the repo. - CalMWolfs
++ Moved bazaar config into inventory category. - hannibal2
++ Optimize IntelliJ icon. - nea
+
+### Removed Features
+
## Version 0.23
### New Features
diff --git a/FEATURES.md b/FEATURES.md
index b8c4cc2c8..7e1e1e17e 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -152,6 +152,11 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Added not fully completed tasks in Way to gain SkyBlock XP menus. - Thunderblade73
+ Works in the subcategories.
+ It does not work with infinite tasks.
++ 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
+ purse.
++ Copy Underbid Keybind. - Obsidian
+ + Copies the price of the hovered item in Auction House minus 1 coin into the clipboard for easier under-bidding.
</details>
<details open><summary>
diff --git a/build.gradle.kts b/build.gradle.kts
index f02b069f6..117e57492 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -14,7 +14,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.23"
+version = "0.24.Beta.1"
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 f67082a36..14ad8f1ca 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -393,7 +393,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.23",
+ version = "0.24.Beta.1",
)
class SkyHanniMod {