aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md17
-rw-r--r--FEATURES.md8
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 27 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b30273b24..ad6422628 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -31,6 +31,14 @@
+ Will not break with emblems.
+ Optional if left or right side of name.
+ Should not break with other mods.
++ Porting SBA's **chroma** into SkyHanni with many more options and chroma everything. - VixidDev
+ + Options to change speed, size, saturation and direction.
++ Added Modify Visual Words (command /shwords). - CalMWolfs
+ + Allows you to replace text on your screen with different text (like the SBE one, just less costly).
+ + Supports all color codes, even chroma (use &&Z)
++ Added In-Game Date display. - Erymanthus
+ + Show the in-game date of SkyBlock (like in Apec, but with mild delays).
+ + Includes the SkyBlock year.
#### Events
@@ -55,6 +63,9 @@
+ Made Smoldering same as Fatal Tempo and Chimera in Estimated Item Value. - jani
+ Added an option to change where to get the items from in the composter overlay: from the bazaar or from sacks. - HiZe
+ Added mouse button support for key binds. - CalMWolfs
++ Added 'spooked into the lobby' chat message to the Outside Hypixel filter. - CalMWolfs
++ Changed the Yaw/Pitch Display to not show scientific notations at very small numbers. - Obsidian
++ Added an option to the Advanced Player List to hide Crimson Isle faction icons. - hannibal2
### Bug Fixes
@@ -76,6 +87,12 @@
+ Better limbo leave detection. - hannibal2
+ Fixed rare crash when trying to read neu config. - hannibal2
+ Fixed rare case where the visitor description is empty. - hannibal2
++ Fixed a typo in the config. - hannibal2
++ Fixed the chat filter not applying immediately after joining the Hypixel lobby. - hannibal2
++ Fixed the selected drop in the catacombs RNG meter inventory not getting highlighted. - hannibal2
++ Fixed Fishing Hook Display showing wrong damage numbers. - hannibal2
++ Fixed Abiphone ring message not getting filtered correctly. - hannibal2
++ Fixed the bug that faction icons in Crimson Isle are always hidden in the tab list. - hannibal2
#### Config
diff --git a/FEATURES.md b/FEATURES.md
index 66be06d5e..4b0652b02 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -680,6 +680,14 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Show a chat message for how long you were in limbo once you leave it.
+ Highlight Party Members. - Cad
+ Marking party members with a bright outline to better find them in the world.
++ Porting SBA's **chroma** into SkyHanni with many more options and chroma everything. - VixidDev
+ + Options to change speed, size, saturation and direction.
++ Added Modify Visual Words (command /shwords). - CalMWolfs
+ + Allows you to replace text on your screen with different text (like the SBE one, just less costly).
+ + Supports all color codes, even chroma (use &&Z)
++ Added In-Game Date display. - Erymanthus
+ + Show the in-game date of SkyBlock (like in Apec, but with mild delays).
+ + Includes the SkyBlock year.
## Cosmetics
diff --git a/build.gradle.kts b/build.gradle.kts
index 6acfc1606..320860f92 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.21.Beta.6"
+version = "0.21.Beta.7"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 92eba8fb7..84400ae2c 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -312,7 +312,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.21.Beta.6",
+ version = "0.21.Beta.7",
)
class SkyHanniMod {
@Mod.EventHandler