aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md11
-rw-r--r--FEATURES.md6
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 17 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 53726028b..7f15d7371 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -176,6 +176,13 @@
+ The item flickering for ability cooldown background should be less/gone completely.
+ Added the ability to bypass not clickable items when holding the control key. - CalMWolfs
+ Croesus Chest Tracker can now determine chest that only can be open with a dungeon key - Thunderblade73
++ Added armor drops to the Money per Hour display. - CalMWolfs
++ Croesus chest highlight now uses different colors for Dungeon Chest Key-only chests. - Thunderblade73
++ Added support to change the scale of GUI elements with plus and minus keys. - CalMWolfs
++ Ignoring non-slayer drops in the slayer profit tracker. - hannibal2
++ Added support for slayer drops that go directly into the sack. - hannibal2
+ + This still does not work for items that land directly in your inventory. (e.g., Netherrack-Looking Sunshade,
+ Summoning Eye, etc.)
### Fixes
@@ -487,6 +494,10 @@
+ Fixed farming contest calendar reading going above 100% - Contrabass26
+ Changed multiple descriptions in the misc category, fixed grammar and punctuation problems - Absterge
+ Fixed rare bug with Damage Indicator
++ Fixed showing skill level as item stack being broken for level 0. - Erymanthus
++ Fixed ability cooldown not working for some items. - Cad
++ Fixed Bazaar item category "Ink Sack" gets wrongly detected as an item sack. - Erymanthus
++ Fixed reforge stone "Pitchin' Koi" not detected in the Estimated Item Value. - Fix3dll
## Version 0.18 (2023-06-19)
diff --git a/FEATURES.md b/FEATURES.md
index 2e3335610..69720e735 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -29,14 +29,14 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ 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.
+ + 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
-+ Clicked Blocks (Showing the block behind walls AFTER clicked on a chest, wither essence or a lever)
++ Clicked Blocks (Showing the block behind walls AFTER clicked on a chest, Wither Essence or a lever)
+ Current milestone display.
+ Death Counter (Changing color depending on amount, hidden at 0 deaths)
+ Clean Ending (After the last dungeon boss has died, all entities and particles are no longer displayed and the music
@@ -342,6 +342,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ **Money per Hour**
+ Displays the money per hour YOU get with YOUR crop/minute value when selling the items to bazaar.
+ Suppports the dicer drops from melon and pumpkins as well. - CalMWolfs
+ + Supports armor drops. - CalMWolfs
+ Farming contest timer.
+ Wrong fungi cutter mode warning.
+ Show the price per garden experience inside the visitor gui.
@@ -644,6 +645,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ **GUI Scale**: - nea
+ Scroll within the position editor to independently adjust the GUI scale for each SkyHanni element.
+ Change the global scale of all SkyHanni elements at once (in the config under /sh scale).
+ + Change the scale with plus and minus keys. - CalMWolfs
## Cosmetics
diff --git a/build.gradle.kts b/build.gradle.kts
index 83169f3cc..3445050da 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.20.Beta.24"
+version = "0.20.Beta.25"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 7bcf1d253..70c3a066c 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -297,7 +297,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.20.Beta.24",
+ version = "0.20.Beta.25",
)
class SkyHanniMod {
@Mod.EventHandler