aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-08 17:03:12 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-08 17:03:12 +0200
commit541004b61112c1dabd2627806d325a1dd4dc0892 (patch)
tree6ab972fa4b8f16d682aaf1a34eb10c04be41188e
parentd3b9774ffd8a62c8199d82a84e6a2e40dc98634d (diff)
downloadskyhanni-541004b61112c1dabd2627806d325a1dd4dc0892.tar.gz
skyhanni-541004b61112c1dabd2627806d325a1dd4dc0892.tar.bz2
skyhanni-541004b61112c1dabd2627806d325a1dd4dc0892.zip
0.21 Beta 4
-rw-r--r--CHANGELOG.md16
-rw-r--r--FEATURES.md7
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
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