diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-28 21:47:34 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-28 21:47:34 +0200 |
commit | 684f7ac0973cb531aca6b10f2e5f2f8576401caf (patch) | |
tree | 677eff67e496e3ff4410ad38b5f90f5b18e3fa19 | |
parent | 65b5c9b1f7f7bf351027fefd7a4cad685e6c4282 (diff) | |
download | skyhanni-684f7ac0973cb531aca6b10f2e5f2f8576401caf.tar.gz skyhanni-684f7ac0973cb531aca6b10f2e5f2f8576401caf.tar.bz2 skyhanni-684f7ac0973cb531aca6b10f2e5f2f8576401caf.zip |
0.21 Beta 14
-rw-r--r-- | CHANGELOG.md | 17 | ||||
-rw-r--r-- | FEATURES.md | 6 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 4 |
4 files changed, 25 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a3a69d04b..af31ef509 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -62,7 +62,13 @@ + Option to hide other/wrong/fake Livids (try this out and see if you really want this, it can be counter-productive in some cases). + Added AFK time to Discord RPC. - NetheriteMiner -+ Option to highlight items that are full in the sack inventory. ++ Added option to highlight items that are full in the sack inventory. ++ Added **Arrow Trail cosmetic** - Thunderblade73 + + Draw a colored line behind the arrows in the air. + + Options to change the color of the line, to only show own arrows or every arrow, to have own arrows in a different + color, to change the time alive, and the line width. ++ Added the option to change Hypixel Wiki to the fandom Wiki in more areas than just the /wiki command. - Erymanthus + + E.g. inside the SkyBlock leveling guide. #### Events @@ -75,6 +81,7 @@ + New Visitor Ping: Pings you when you are less than 10 seconds away from getting a new visitor. + Accept Hotkey: Accept a visitor when you press this keybind while in the visitor GUI. + ### Changes + Allowing clicks on the farming weight overlay to open the Farming Profile of you or the next person in the @@ -111,6 +118,8 @@ + Added option to set the size of highlighted motes orbs in rift and make them smaller by default. - cimbraien + Disabled clicks on SkyHanni GUIs while inside NEU's or Skytils profile viewer. - hannibal2 + Removed armor stand checks for Trevor Solver. This fixes or nerfs the feature to not highlight mobs behind blocks sometimes. - hannibal2 ++ Added diamond and gold essence support to PowderTracker. - walker ++ Change the fandom wiki search engine (under the /wiki command) from Google to the fandom wiki's built-in search engine - Erymanthus ### Bug Fixes @@ -160,6 +169,9 @@ + Fixed Farming Weight Display shows 0 weight wrongly sometimes. - Kaeso + Fixed damage indicator errors during Enderman Slayer. - hannibal2 + Fixed weird error messages in the Damage Indicator. - hannibal2 ++ Fixed Enderman Slayer errors again. - hannibal2 ++ Fixed the Sack Display error again. - HiZe ++ Fixed the attribute Vitality getting wrongly labeled as Mending on attribute shards. - hannibal2 #### Config @@ -177,6 +189,9 @@ + Moved many patterns from function scope to members. - hannibal2 + Avoid hardcoded dispatcher. - walker + Created and used Entity.canBeSeen and LorenzVec.canBeSeen. - hannibal2 ++ Reducing cognitive complexity in StatsTuning.kt - walker ++ Reducing indentations and line counts in StatsTuning.kt - hannibal2 ++ Mark functions around item utils and neu items as deprecated. - walker ## Version 0.20 diff --git a/FEATURES.md b/FEATURES.md index 6c0d616d9..459ac958a 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -774,6 +774,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Option to hide other/wrong/fake Livids (try this out and see if you really want this, it can be counter-productive in some cases). + Added AFK time to Discord RPC. - NetheriteMiner ++ Added the option to change Hypixel Wiki to the fandom Wiki in more areas than just the /wiki command. - Erymanthus + + E.g. inside the SkyBlock leveling guide. </details> <details open><summary> @@ -783,4 +785,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + **Following Line** - hannibal2 + Draws a colored line behind the player. + Change the color, width, and duration of the line. ++ **Arrow Trail cosmetic** - Thunderblade73 + + Draw a colored line behind the arrows in the air. + + Options to change the color of the line, to only show own arrows or every arrow, to have own arrows in a different + color, to change the time alive, and the line width. </details> diff --git a/build.gradle.kts b/build.gradle.kts index 18195f085..f8487d2e0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.21.Beta.13" +version = "0.21.Beta.14" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 2501d0905..326f5798f 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -75,8 +75,8 @@ import at.hannibal2.skyhanni.features.commands.WikiManager import at.hannibal2.skyhanni.features.commands.tabcomplete.GetFromSacksTabComplete import at.hannibal2.skyhanni.features.commands.tabcomplete.PlayerTabComplete import at.hannibal2.skyhanni.features.commands.tabcomplete.WarpTabComplete -import at.hannibal2.skyhanni.features.cosmetics.CosmeticFollowingLine import at.hannibal2.skyhanni.features.cosmetics.ArrowTrail +import at.hannibal2.skyhanni.features.cosmetics.CosmeticFollowingLine import at.hannibal2.skyhanni.features.dungeon.CroesusUnopenedChestTracker import at.hannibal2.skyhanni.features.dungeon.DungeonAPI import at.hannibal2.skyhanni.features.dungeon.DungeonBossHideDamageSplash @@ -319,7 +319,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.21.Beta.13", + version = "0.21.Beta.14", ) class SkyHanniMod { @Mod.EventHandler |