diff options
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-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, 14 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 911f10eca..53ddfc71e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,6 +61,12 @@ + Display progress Living Metal Suit (Default disabled) + Option to show a compacted version of the overlay when the set is maxed + Added Highlight for Blobbercysts in Bacte fight in colloseum in rift - HiZe ++ Show a line between **Defense blocks** and the mob and highlight the blocks - hannibal2 + + Hide particles around Defense Blocks ++ Show a moving animation between **Living Metal** and the next block - hannibal2 + + Hide Living Metal particles ++ Highlight **flying Motes Orbs** - hannibal2 + + Hide normal motes orbs particles ### Other Features + Added **Frozen Treasure Tracker** (Contributed by CalMWolfs) diff --git a/FEATURES.md b/FEATURES.md index add865d5f..806dd5b48 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -334,6 +334,12 @@ + Display progress Living Metal Suit (Default disabled) + Option to show a compacted version of the overlay when the set is maxed + Added Highlight for Blobbercysts in Bacte fight in colloseum in rift - HiZe ++ Show a line between **Defense blocks** and the mob and highlight the blocks - hannibal2 + + Hide particles around Defense Blocks ++ Show a moving animation between **Living Metal** and the next block - hannibal2 + + Hide Living Metal particles ++ Highlight **flying Motes Orbs** - hannibal2 + + Hide normal motes orbs particles ## Mining + **Highlight Commission Mobs** - hannibal2 diff --git a/build.gradle.kts b/build.gradle.kts index b9286e008..2cb27ce4f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.19.Beta.8" +version = "0.19.Beta.9" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 524616a5e..adb369b02 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -113,7 +113,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.19.Beta.8", + version = "0.19.Beta.9", ) class SkyHanniMod { @Mod.EventHandler |