aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-02-14 21:12:58 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-02-14 21:12:58 +0100
commita1c5df9b65a75d6833bf2aaa23e6f9b86f5a7a1c (patch)
tree6553f6d382c1d01757af2696cc25059117a45432
parenteb4b815095666bd9d13074a052c4329ba9ac7da7 (diff)
downloadskyhanni-a1c5df9b65a75d6833bf2aaa23e6f9b86f5a7a1c.tar.gz
skyhanni-a1c5df9b65a75d6833bf2aaa23e6f9b86f5a7a1c.tar.bz2
skyhanni-a1c5df9b65a75d6833bf2aaa23e6f9b86f5a7a1c.zip
Version 0.23 Beta 19
-rw-r--r--CHANGELOG.md14
-rw-r--r--FEATURES.md1
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 17 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2bea506dd..fe91eeef1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -28,6 +28,7 @@
+ Added Deep Caverns Parkour. - hannibal2
+ Shows a parkour to the bottom of Deep Caverns and to Rhys.
++ Blocks the mining ability when on a private island. - Thunderblade73
#### Dungeon Features
@@ -104,6 +105,8 @@
+ Made blocks per second calculation more accurate immediately after starting to farm. - hannibal2
+ Warn to open visitor inventory again after partially serving Spaceman. - alexia
+ Updating the Garden Optimal Speed Display and Warning immediately when changing the setting. - hannibal2
++ Added auto mouse-unlocking on plot teleport in garden. - martimavocado
++ Improve items in sacks display in Visitor Shopping List wording and color. - alexia
#### Rift Changes
@@ -174,6 +177,10 @@
+ Using a better title for Area Boss features. - hannibal2
+#### Slayer Changes
+
++ Adding Soul Of The Alpha support to the Area Mini Boss features respawn timer and highlight. - martimavocado
+
#### Misc Changes
+ Tia Relay Helper: Suggest /togglemusic. - alexia
@@ -184,6 +191,7 @@
official Hypixel Wiki or the older Fandom Wiki. - Obsidian
+ Added option to hide the already existing F3 SkyBlock Area Debug Feature. - Obsidian
+ This feature shows the current area in SkyBlock while f3 is open.
++ Hovering on cheap items in an Item Tracker now shows the hidden items. - Mikecraft1224
### Fixes
@@ -204,6 +212,7 @@
+ Fixed the pets menu detection for /ff. - martimavocado
+ Fixed Anita and Jacob workaround working outside of garden. - CalMWolfs
+ Fixed opening visitor Milestones menu not loading visitor amount for /ff. - martimavocado
++ Fixed Sensitivity Reducer still working when switching from the garden to the hub. - martimavocado
#### Combat Fixes
@@ -266,6 +275,9 @@
+ Added options to hide Helmet Skins, Armor Dyes or Runes from Estimated Item Value Calculation. - hannibal2
+ Fixed Divine Gift and Flash enchants showing the wrong/no price in EstimatedItemValue. - jani
+ Fixed showing the Piece of Wizard Portal earned duplicate. - Thunderblade73
++ Fixed shift-click NPC sell not working for menus with different sizes and full inventories. - Thunderblade73
++ Fixed an error with the shift-click NPC sell feature. - Thunderblade73
++ Ignore Shift-Click NPC Sell when right-clicking a sack. - Thunderblade73
#### Bingo Fixes
@@ -361,6 +373,8 @@
+ Added /shcopybossbar to copy bossbar - Erymanthus
+ Splitting many utils functions from LorenzUtils up into other classes: ChatUtils, CollectionUtils, ConditionalUtils. - Thunderblade73
+ A ton of code cleanup, mainly on imports. - Thunderblade73 & hannibal2
++ Added mod identification for outgoing mod calls and show this data in /shchathistory. - nea
++ Sensitivity Reducer changes: clearer error message, using ChatUtils and wrong values in debug data. - martimavocado
## Version 0.22
diff --git a/FEATURES.md b/FEATURES.md
index a3f837854..fe862b950 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -958,6 +958,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Support for the Hypixel command /p kick /pk to add a reason. The reason will be sent in party chat before
kicking the player.
+ Color the month names on the scoreboard. - J10a1n15
++ Blocks the mining ability when on a private island. - Thunderblade73
</details>
<details open><summary>
diff --git a/build.gradle.kts b/build.gradle.kts
index be0287b4b..8c523baaa 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -14,7 +14,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.23.Beta.18"
+version = "0.23.Beta.19"
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 401b8c020..6263468fd 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -385,7 +385,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.23.Beta.18",
+ version = "0.23.Beta.19",
)
class SkyHanniMod {