diff options
-rw-r--r-- | CHANGELOG.md | 16 | ||||
-rw-r--r-- | FEATURES.md | 7 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 25 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e8b3ad7b..90c73a3d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,13 @@ party/friends/guild + Option to hide different parts of the player list: Player skins/icons, Hypixel rank color, Emblems, SkyBlock level ++ Added Kick Duration. - hannibal2 + + Show in the Hypixel lobby since when you were last kicked from SkyBlock. + + Useful if you get blocked because of 'You were kicked while joining that server!'. + + Send warning and sound this seconds after a SkyBlock kick. ++ Added Time In Limbo. - hannibal2 + + Show the time since you entered the limbo. + + Show a chat message for how long you were in limbo once you leave it. ### Events @@ -28,6 +35,10 @@ + Added "Burning Desert" as a tarantula slayer area. - hannibal2 + Slayer features now work only when the slayer type matches the current SkyBlock area. - hannibal2 + Made Fatal Tempo same as Chimera in Estimated Item Value. - jani ++ Added debug options for fishing hook display. - hannibal2 + + This should help to find values the fishing hook display works 100% with. ++ Changed the color for tab list special persons mark. ++ Mark SkyHanni Devs in tab list special. ### Bug Fixes @@ -35,6 +46,11 @@ + Fixed slayer RNG Meter problem to detect the selected item. - hannibal2 + Fixed capitalization errors. - J10a1n15 + Fixed a bug that hides the contest inventory menu. - CalMWolfs ++ Fixed error in tab list. - hannibal2 ++ Fixed fishing hook display data not properly resetting on world change. - hannibal2 ++ Fixed an error in Quick Craft Confirmation. - hannibal2 ++ Fixed a crash with future NEU versions because of renamed code. - hannibal2 ++ Fixed double rendering of item tooltips with chat triggers. - nea #### Config diff --git a/FEATURES.md b/FEATURES.md index 6081aa886..e64a487da 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -661,6 +661,13 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. party/friends/guild + Option to hide different parts of the player list: Player skins/icons, Hypixel rank color, Emblems, SkyBlock level ++ Added Kick Duration. - hannibal2 + + Show in the Hypixel lobby since when you were last kicked from SkyBlock. + + Useful if you get blocked because of 'You were kicked while joining that server!'. + + Send warning and sound this seconds after a SkyBlock kick. ++ Added Time In Limbo. - hannibal2 + + Show the time since you entered the limbo. + + Show a chat message for how long you were in limbo once you leave it. ## Cosmetics diff --git a/build.gradle.kts b/build.gradle.kts index c4f5bc4f8..7c3072672 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.21.Beta.3" +version = "0.21.Beta.4" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index b633721d5..7a0b79cbe 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -305,7 +305,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.21.Beta.3", + version = "0.21.Beta.4", ) class SkyHanniMod { @Mod.EventHandler |