diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-05 16:38:26 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-05 16:38:26 +0200 |
commit | 10068ee904d341c9ec21e05a5e760c9c2576fc6d (patch) | |
tree | c54b7c78d788677febb77c7a5261f3235f173f01 | |
parent | 54331ff1364043630eaae020d6b56eb275eca9c1 (diff) | |
download | skyhanni-10068ee904d341c9ec21e05a5e760c9c2576fc6d.tar.gz skyhanni-10068ee904d341c9ec21e05a5e760c9c2576fc6d.tar.bz2 skyhanni-10068ee904d341c9ec21e05a5e760c9c2576fc6d.zip |
0.19 Beta 6
-rw-r--r-- | CHANGELOG.md | 12 | ||||
-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 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java | 2 |
5 files changed, 20 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index cd08810d5..64ea96415 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,12 @@ + Helps to solve the dance room in the mirror verse by showing multiple tasks at once. + Change how many tasks you should see + Hide other players inside the dance room ++ Added **Upside Down** Parkour & **Lava Maze** - hannibal2 + + Helps to solve the Upside Down Parkour and Lava Maze in the mirror verse by showing the correct way + + Change how many platforms should be shown in front of you + + Rainbow color (optional) - nea + + Hide other players while doing the parkour + + Outlines the top edge of the platforms (for Upside Down Parkour only) - CalMWolfs ### Other Features + Added **Frozen Treasure Tracker** (Contributed by CalMWolfs) @@ -62,17 +68,21 @@ + More images for different locations + Fixed names unnecessarily getting cut off when visiting an island in Location + Fewer crashes because of NEU Item Repo ++ Changed time for Trapper from 30 to 15 seconds while Finnegan is mayor – CalMWolfs ### Fixes + Fixed Pocket Sack-In-A-Sack Replace in lore + Fixed possible crash with broken neu repo when opening the desk inventory in garden (Contributed by CalMWolfs) + Fixed frozen treasures per hour display being inaccurate (Contributed by CalMWolfs) + Fixed bug with ghost counter sometimes not detecting new kills (Contributed by CalMWolfs) -+ **Ghost Counter** fixes - HiZe & ksipli ++ Fixed **Ghost Counter** - HiZe & ksipli + Should no longer have compatibility issues with other mods + It work even if the action bar show percent +xxx (xx%) instead of +xxx (xxx/xxx) + Added command /shresetghostcounter to reset everything (not the bestiary data) + Added time format in ETA formatting (can show days, hours, minutes and seconds remaining) ++ Fixed **Dungeon Master Stars** calculation not working correctly sometimes – hannibal2 & Fix3dll ++ Fixed Discord Rich Presence detecting absorption hearts not correctly – NetheriteMiner ++ Fixed Reputation Helper **Kuudra Completions** not getting detected and adding T4 and T5 support - Cinshay ## Version 0.18 (2023-06-19) diff --git a/FEATURES.md b/FEATURES.md index 6d33c63da..c2002db39 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -306,6 +306,12 @@ + Helps to solve the dance room in the mirror verse by showing multiple tasks at once. + Change how many tasks you should see + Hide other players inside the dance room ++ **Upside Down** Parkour & **Lava Maze** - hannibal2 + + Helps to solve the Upside Down Parkour and Lava Maze in the mirror verse by showing the correct way + + Change how many platforms should be shown in front of you + + Rainbow color (optional) - nea + + Hide other players while doing the parkour + + Outlines the top edge of the platforms (for Upside Down Parkour only) - CalMWolfs ## Commands + **/wiki <search term>** - using hypixel-skyblock.fandom.com instead of Hypixel wiki. diff --git a/build.gradle.kts b/build.gradle.kts index 03f95a17e..48802625e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.19.Beta.5" +version = "0.19.Beta.6" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 2d2189823..fcb285960 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -95,7 +95,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.19.Beta.5", + version = "0.19.Beta.6", ) class SkyHanniMod { @Mod.EventHandler diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java index dc86379b8..c8302262b 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java @@ -248,7 +248,7 @@ public class RiftConfig { @Expose @ConfigOption(name = "Look Ahead", desc = "Change how many platforms should be shown in front of you.") @ConfigEditorSlider(minStep = 1, maxValue = 9, minValue = 1) - public Property<Integer> lookAhead = Property.of(2); + public Property<Integer> lookAhead = Property.of(3); @Expose @ConfigOption(name = "Outline", desc = "Outlines the top edge of the platforms.") |