aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md18
-rw-r--r--FEATURES.md3
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 23 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a0d70662f..5cd64326f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -59,6 +59,9 @@
+ Makes normal clicks to shift clicks in Brewing Stand inventory.
+ Low Quiver Notification. - CarsCupcake
+ This will notify you via title if your quiver is low on arrows according to chat message.
++ Added not fully completed tasks in Way to gain SkyBlock XP menus. - Thunderblade73
+ + Works in the subcategories.
+ + It does not work with infinite tasks.
#### Item Features
@@ -80,6 +83,13 @@
+ Added /shcalccroptime. - CalMWolfs
+ Calculate how long you need to farm crops between different crop milestones.
+#### Diana Features
+
++ Saving every Diana Burrow Location and option to render them. - hannibal2
+ + Saves the burrow locations you find into a list in the local config file. (default enabled, option to opt out)
+ + Option to render all saved locations in the world. (default disabled)
+ + Commands to save the full list to the clipboard, and load a list from the clipboard (to share between users)
+
#### Misc Features
+ Fixes Ghost Entities. - hannibal2 & nea & Thunderblade73
@@ -169,6 +179,10 @@
+ Changed the Griffin Burrow Guess text to a centered title instead of an odd line that goes down. - hannibal2
+ Removed unnecessary error messages in Diana Burrow detection. - hannibal2
++ Fixed and improved the Inquisitor Waypoint Share feature. - hannibal2
+ + Now it correctly hides burrow waypoints when the "focus" mode is enabled.
+ + Shows a pink line to the shared location.
+ + Support for the nearest warp feature.
#### Chat Changes
@@ -332,6 +346,8 @@
#### Command Fixes
+ Fixed /gfs not working. - Thunderblade73
++ Fixed /sendcoords command not working. - CalMWolfs
++ Fixed open bazaar command sending color code as well. - Thunderblade73
#### Misc Fixes
@@ -428,6 +444,8 @@
+ Deprecate LorenzUtils.sendCommandToServer. - hannibal2
+ Adds a chroma shader to be used on non-textured GUI elements. - VixidDev
+ Added /shdebug Garden Next Jacob Contest. - hannibal2
++ Make future NPC price fetch errors better debuggable. - CalMWolfs
++ Removed duplicate pet-level detection logic. - hannibal2
## Version 0.22
diff --git a/FEATURES.md b/FEATURES.md
index 939814d0c..52e39cf03 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -149,6 +149,9 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Makes normal clicks to shift clicks in Brewing Stand inventory.
+ Low Quiver Notification. - CarsCupcake
+ This will notify you via title if your quiver is low on arrows according to chat message.
++ Added not fully completed tasks in Way to gain SkyBlock XP menus. - Thunderblade73
+ + Works in the subcategories.
+ + It does not work with infinite tasks.
</details>
<details open><summary>
diff --git a/build.gradle.kts b/build.gradle.kts
index 2fa2c8fef..1de35a08b 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -14,7 +14,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.23.Beta.22"
+version = "0.23.Beta.23"
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 6b74426d0..de14fd4e4 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -389,7 +389,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.23.Beta.22",
+ version = "0.23.Beta.23",
)
class SkyHanniMod {