diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-17 03:38:16 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-17 03:38:16 +0100 |
commit | 20b98f3611a1baaf546efb1dbc0d867dbcfca134 (patch) | |
tree | 5d45430a1677a171ce64fc7a325b5d08c089e49f | |
parent | 8b7b52ab9a7395dbcf29f642b6492b4cceb25f73 (diff) | |
download | skyhanni-20b98f3611a1baaf546efb1dbc0d867dbcfca134.tar.gz skyhanni-20b98f3611a1baaf546efb1dbc0d867dbcfca134.tar.bz2 skyhanni-20b98f3611a1baaf546efb1dbc0d867dbcfca134.zip |
Version 0.22 Beta 14
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | FEATURES.md | 6 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b8b14ac3..92d75e984 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -94,6 +94,12 @@ + Added Diana Profit Tracker. - hannibal2 + Same options as slayer and fising trackers. + Added highlight for the Minos Inquisitors to make them easier to see. - Cad ++ Added Mythological Mob Tracker. - hannibal2 + + Counts the different mythological mobs you have dug up. + + Show percentage how often what mob spawned. + + Hide the chat messages when digging up a mythological mob. ++ Added Diana Chat hider. - hannibal2 + + Hide chat messages around griffin burrow chains and griffin feather drops and coin drops. #### Rift Features @@ -149,6 +155,7 @@ #### Diana Changes + Resetting the guess and burrow locations when clearing the burrows at Diana NPC. - hannibal2 ++ Removed Diana "Smooth Transition" and replaced it with "Line to Next". - hannibal2 #### Misc Changes diff --git a/FEATURES.md b/FEATURES.md index e1d46f613..7e30b940b 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -327,6 +327,12 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Diana Profit Tracker. - hannibal2 + Same options as slayer and fising trackers. + Highlight for the Minos Inquisitors to make them easier to see. - Cad ++ Mythological Mob Tracker. - hannibal2 + + Counts the different mythological mobs you have dug up. + + Show percentage how often what mob spawned. + + Hide the chat messages when digging up a mythological mob. ++ Diana Chat hider. - hannibal2 + + Hide chat messages around griffin burrow chains and griffin feather drops and coin drops. </details> <details open><summary> diff --git a/build.gradle.kts b/build.gradle.kts index 7512cf213..8a2e7f4a2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.22.Beta.13" +version = "0.22.Beta.14" 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 b6d5ac924..f3e9d7703 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -359,7 +359,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.22.Beta.13", + version = "0.22.Beta.14", ) class SkyHanniMod { @Mod.EventHandler |