aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md12
-rw-r--r--FEATURES.md13
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 22 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 50fe60127..e70aa30e3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -95,6 +95,9 @@
+ Pelts per hour
+ Press the hotkey to accept the next Trevor the Trapper quest. - CalMWolfs
+ Added a countdown for Arachne spawn. - Cad
++ Added **Sack Change** chat message hider. - hannibal2
+ + Enable this option instead of Hypixel's own setting to hide the chat message while enabling mods to utilize sack
+ data for future features.
### Changes
@@ -155,6 +158,8 @@
+ Better Trevor the Trapper detection. - CalMWolfs
+ Show Trevor the Trapper's mob name next to the waypoint. - CalMWolfs
+ Small performance improvements when working with color codes. - brainage04
++ Added dungeon mage cooldown reduction support for item ability cooldown. - Cad
++ Improved the wording and fixed typos of the config category descriptions. - zapteryx
### Fixes
@@ -257,6 +262,13 @@
+ Fixed inconsistencies with Arachne brood highlighting. - Cad
+ Fixed Crimson Reputation Helper doesn't count trophy fish when sacks exist. - Fix3dll
+ Fixed a rare error when switching to a dicer farming tool too quickly. - Cad
++ Added workaround for new fire sale cosmetics (pet skin, helmet skin, rune) in estimated item value. - hannibal2
++ Fixed garden visitors not highlighting on status "new". - hannibal2
++ Fixed wrongly highlighting enchanted sacks for reputation helper fetch quests. - hannibal2
++ Fixed Fragged Spirit Mask not showing a cooldown after being triggered. - Cad
++ Fixed item rarity problems with very special. - hannibal2
++ Fixed party member detection issues for the tab complete feature. - CalMWolfs
++ Hide item rarity error message in /ff. - hannibal2
### Removed Features
diff --git a/FEATURES.md b/FEATURES.md
index 588b9da86..15d969217 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -27,10 +27,12 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Compact Potion Effect Messages
+ **Arachne Chat Hider**
+ Hide chat messages about the Arachne Fight while outside of Arachne's Sanctuary
-
+ Option to shorten the **bestiary level-up** message.
+ Chat **Translator** - NetheriteMiner
+ After enabling, click on any chat message sent by another player to translate it to English.
++ **Sack Change** chat message hider. - hannibal2
+ + Enable this option instead of Hypixel's own setting to hide the chat message while enabling mods to utilize sack
+ data for future features.
## Dungeon
@@ -106,10 +108,11 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
## Item Abilities
-- Show the cooldown of items in the inventory.
-- Option to change the item background according to the cooldown.
-- Hiding the flame particles when using the Fire Veil Wand ability.
-- Circle around the player when having the Fire Veil Wand ability active.
++ Show the **cooldown of items** in the inventory. - hannibal2
+ + Option to change the item background according to the cooldown.
+ + Supports dungeon mage cooldown reduction. - Cad
++ Hiding the flame particles when using the Fire Veil Wand ability.
++ Circle around the player when having the Fire Veil Wand ability active.
## Summoning Mobs
diff --git a/build.gradle.kts b/build.gradle.kts
index 59225627d..ee87b1ccd 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.20.Beta.22"
+version = "0.20.Beta.23"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 75dc4eef9..997ff28fd 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -132,7 +132,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.20.Beta.22",
+ version = "0.20.Beta.23",
)
class SkyHanniMod {
@Mod.EventHandler