aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md10
-rw-r--r--FEATURES.md17
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt4
4 files changed, 22 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 80c57d281..d9369cfd5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,8 +23,11 @@
+ Added Time In Limbo. - hannibal2
+ Show the time since you entered limbo.
+ Show a chat message for how long you were in limbo once you leave it.
++ Added Highlight Party Members. - Cad
++ Added Shift Click Equipment. - Thunderblade73
+ + This removes the need to shift-click to swap the equipment items, without the annoying "pick up animation".
-### Events
+#### Events
+ Highlight Jerries during the Jerrypoclaypse. - Erymanthus
@@ -39,6 +42,9 @@
+ This should help find values that the fishing hook display works 100% with.
+ Changed the color for the tab list Special Persons Mark.
+ Mark SkyHanni Devs in the tab list special.
++ 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
### Bug Fixes
@@ -51,6 +57,8 @@
+ 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
++ Fixed Sacks Display integer limit error. - HiZe & hannibal2
++ Fixed the vitality attribute is wrongly labeled as "mending" in Estimated Item Value. - walker
#### Config
diff --git a/FEATURES.md b/FEATURES.md
index 8d1ad3047..a8388bfa3 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -107,6 +107,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ **Quick Craft Confirmation**. - Cad
+ Require Ctrl+Click to craft items that aren't often quick crafted (e.g. armor, weapons, accessories).
+ Sack items can be crafted normally.
++ **Shift Click Equipment**. - Thunderblade73
+ + This removes the need to shift-click to swap the equipment items, without the annoying "pick up animation".
## Item Abilities
@@ -153,7 +155,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Best Sell Method (Calculating the difference between instant-selling or using sell order for a selected bazaar item)
+ Saves missing items from canceled buy orders to clipboard for faster re-entry.
+ Update Timer showing when the next api data update happens.
-+ Added Price Website button. - hannibal2
++ Price Website button. - hannibal2
+ Adds a button to the bazaar product inventory that will open the item page in skyblock.bz.
## Fishing
@@ -186,7 +188,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Hide the Chum/Chumcap Bucket.
+ Hides your own Chum/Chumcap Bucket.
+ Highlight and outline feature for rare sea creatures. - Cad
-+ Added Fishing Hook Display. - hannibal2
++ Fishing Hook Display. - hannibal2
+ Display the Hypixel timer until the fishing hook can be pulled out of the water/lava, only bigger and on your
screen.
@@ -299,7 +301,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Highlight corrupted mobs.
+ **Arachne Minis Hider** - Hides the nametag above arachne minis.
+ **Arachne Boss Highlighter** - Highlight the arachne boss in red and mini bosses and orange.
-+ Added a countdown for Arachne spawn. - Cad
++ Countdown for Arachne spawn. - Cad
+ Supports quick spawns.
+ Option to hide the vanilla particles around enderman
@@ -652,22 +654,23 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Scroll within the position editor to independently adjust the GUI scale for each SkyHanni element.
+ Change the global scale of all SkyHanni elements at once (in the config under /sh scale).
+ Change the scale with plus and minus keys. - CalMWolfs
-+ Added **Compact Tab List**.
++ **Compact Tab List**.
+ Compacts the tablist to make it look much nicer (old SBA feature, but fewer bugs). - CalMWolfs
+ Option to hide Hypixel advertisment banners. - CalMWolfs
- + Added **Advanced Player List**. - hannibal2
+ + **Advanced Player List**. - hannibal2
+ Customize the player list (inside the tab list) in various ways.
+ Change the sort order of players: Default, SkyBlock Level, alphabetical name, Iron Man first/bingo level,
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
++ 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 a warning and sound after a custom amount of seconds.
-+ Added Time In Limbo. - hannibal2
++ Time In Limbo. - hannibal2
+ Show the time since you entered limbo.
+ Show a chat message for how long you were in limbo once you leave it.
++ Highlight Party Members. - Cad
## Cosmetics
diff --git a/build.gradle.kts b/build.gradle.kts
index 7c3072672..501ece2f1 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.21.Beta.4"
+version = "0.21.Beta.5"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 2ef4de8e8..127c5c342 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -150,9 +150,9 @@ import at.hannibal2.skyhanni.features.inventory.ItemStars
import at.hannibal2.skyhanni.features.inventory.QuickCraftFeatures
import at.hannibal2.skyhanni.features.inventory.RngMeterInventory
import at.hannibal2.skyhanni.features.inventory.SackDisplay
+import at.hannibal2.skyhanni.features.inventory.ShiftClickEquipment
import at.hannibal2.skyhanni.features.inventory.SkyBlockLevelGuideHelper
import at.hannibal2.skyhanni.features.inventory.StatsTuning
-import at.hannibal2.skyhanni.features.inventory.ShiftClickEquipment
import at.hannibal2.skyhanni.features.itemabilities.FireVeilWandParticles
import at.hannibal2.skyhanni.features.itemabilities.abilitycooldown.ItemAbilityCooldown
import at.hannibal2.skyhanni.features.mining.HighlightMiningCommissionMobs
@@ -307,7 +307,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.21.Beta.4",
+ version = "0.21.Beta.5",
)
class SkyHanniMod {
@Mod.EventHandler