aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-12 17:08:06 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-12 17:08:06 +0200
commite558ebbb226e4277ad32fbdfabdc8ca969f12965 (patch)
tree05a447b14baa2b2b0b86085defca9c5ee2ba6ba4
parent1379a1f5d464cb2f0006115dee25499cca8d26ef (diff)
downloadskyhanni-e558ebbb226e4277ad32fbdfabdc8ca969f12965.tar.gz
skyhanni-e558ebbb226e4277ad32fbdfabdc8ca969f12965.tar.bz2
skyhanni-e558ebbb226e4277ad32fbdfabdc8ca969f12965.zip
0.21 Beta 6
-rw-r--r--CHANGELOG.md16
-rw-r--r--FEATURES.md30
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 37 insertions, 13 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 04f3780cd..9f522aac7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -27,10 +27,18 @@
+ Marking partly members with a bright outline to better find them in the world.
+ Added Shift Click Equipment. - Thunderblade73
+ This removes the need to shift-click to swap the equipment items, without the annoying "pick up animation".
++ Adds chat symbols such as iron man/bingo/nether faction like SBA had/has. - CalMWolfs
+ + Will not break with emblems.
+ + Optional if left or right side of name.
+ + Should not break with other mods.
#### Events
+ Highlight Jerries during the Jerrypoclaypse. - Erymanthus
++ Show waypoints for Baskets of the Halloween Event in the main Hypixel lobby. - Erymanthus
+ + Thanks Tobbbb for the coordinates!
+ + Support for hiding basket waypoints once you have clicked on them. - hannibal2
+ + Option to show only the closest basket. - hannibal2
### Changes
@@ -46,6 +54,7 @@
+ Added buttons to change the format of the price and the number in the sack display. - HiZe
+ 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
### Bug Fixes
@@ -60,6 +69,13 @@
+ Fixed double rendering of item tooltips with chat triggers. - nea
+ Fixed Sacks Display integer limit error. - HiZe & hannibal2
+ Fixed the vitality attribute is wrongly labeled as "mending" in Estimated Item Value. - walker
++ Fixed lever clicks getting highlighted in the water room. - hannibal2
+ + This solution might not work for iron man in full parties.
++ Fixed slayer profit tracker showing Bazaar/AH price as NPC price. - hannibal2
++ Fixed Hyper reforge/End Stone Geode detection. - hannibal2
++ 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
#### Config
diff --git a/FEATURES.md b/FEATURES.md
index 4abdf24bb..3de6ffd8d 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -2,17 +2,6 @@
Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
-## Chat Filter
-
-- Hiding annoying messages in the Hub of Hypixel (MVP player joins, other player loot boxes, prototype message,
- radiating generosity, Hypixel tournaments)
-- Hiding Empty messages.
-- Warping messages (Sending requests and switching servers)
-- Welcome Message when entering SkyBlock.
-- Powder Mining messages hider
-- Winter gift messages hider
-- Many other messages (Not separated into own categories yet)
-
## Chat
+ Options to change the player chat format (show prefix for channel 'all', hide player rank color, hide colon after
@@ -33,6 +22,21 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ **Sack Change** chat message hider. - hannibal2
+ Enable this option instead of Hypixel's own setting to hide the chat message while enabling mods to utilize sack
data for future features.
++ Adds chat symbols such as iron man/bingo/nether faction like SBA had/has. - CalMWolfs
+ + Will not break with emblems.
+ + Optional if left or right side of name.
+ + Should not break with other mods.
+
+#### Chat Filter
+
+- Hiding annoying messages in the Hub of Hypixel (MVP player joins, other player loot boxes, prototype message,
+ radiating generosity, Hypixel tournaments)
+- Hiding Empty messages.
+- Warping messages (Sending requests and switching servers)
+- Welcome Message when entering SkyBlock.
+- Powder Mining messages hider
+- Winter gift messages hider
+- Many other messages (Not separated into own categories yet)
## Dungeon
@@ -514,6 +518,10 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
## Events
+ Highlight Jerries during the Jerrypoclaypse. - Erymanthus
++ Show waypoints for Baskets of the Halloween Event in the main Hypixel lobby. - Erymanthus
+ + Thanks Tobbbb for the coordinates!
+ + Support for hiding basket waypoints once you have clicked on them. - hannibal2
+ + Option to show only the closest basket. - hannibal2
## Commands
diff --git a/build.gradle.kts b/build.gradle.kts
index 501ece2f1..6acfc1606 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.21.Beta.5"
+version = "0.21.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 9978b5b08..9516746ab 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -310,7 +310,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.21.Beta.5",
+ version = "0.21.Beta.6",
)
class SkyHanniMod {
@Mod.EventHandler