aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-07 14:22:23 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-07 14:22:23 +0200
commita1b308e3c51a500cdd308cbc8605678dd13c538f (patch)
tree29b809d394469739ee7ae643c8e2913499685f18
parent44d6ef82022e65b7760de4d827462ba78073e69e (diff)
downloadskyhanni-a1b308e3c51a500cdd308cbc8605678dd13c538f.tar.gz
skyhanni-a1b308e3c51a500cdd308cbc8605678dd13c538f.tar.bz2
skyhanni-a1b308e3c51a500cdd308cbc8605678dd13c538f.zip
0.20 Beta 17
-rw-r--r--CHANGELOG.md9
-rw-r--r--FEATURES.md25
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 26 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a6c1c5926..05fa8dd1b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -68,6 +68,11 @@
+ Fully customizable: change what items or stats to show.
+ Has support for the maxed Great Explorer perk.
+ Option to hide while not grinding powder.
++ Added Anniversary Event Active Player Ticket Timer. - nea
+ + Option to play a sound as well.
++ Added highlight and outline feature for rare sea creatures. - Cad
++ Added Price Website button. - hannibal2
+ + Adds a button to the bazaar product inventory that will open the item page in skyblock.bz.
### Changes
@@ -115,6 +120,7 @@
+ This has no effect right now but allows Kaeso to change the values easier in the future.
+ Slightly changed the FF guide tab colors to make more sense. - Obsidian
+ Changed the bingo tips description to show the actual data source.
++ Added Fire Fury Staff support to to item ability cooldown feature. - Cad
### Fixes
@@ -176,6 +182,9 @@
+ Hopefully fixed a rare chat error. - hannibal2
+ Fixed duration format in non-god-potion display. - appable0
+ Fixed various typos. - pretz
++ Fixed minion nametag not getting removed after picking it up. - Cad
++ Fixed 3k hp spiders being falsely highlighted as Arachne's Keepers. - oofy
++ Fixed a bug in GhostCounter for the 48th time. - HiZe
### Removed Features
diff --git a/FEATURES.md b/FEATURES.md
index 3bcb0666b..a9cb74499 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -142,10 +142,12 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
## Bazaar
-- Showing colors in the order inventory for outbid or fully bought/sold items.
-- 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.
++ Showing colors in the order inventory for outbid or fully bought/sold items.
++ 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
+ + Adds a button to the bazaar product inventory that will open the item page in skyblock.bz.
## Fishing
@@ -175,6 +177,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Hide the name tags of Chum/Chumcap Bucket from other players.
+ Hide the Chum/Chumcap Bucket.
+ Hides your own Chum/Chumcap Bucket.
++ Highlight and outline feature for rare sea creatures. - Cad
## Damage Indicator
@@ -480,12 +483,12 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Highlight Mobs that are part of active commissions
+ Show the names of the **4 areas** while in the center of **crystal Hollows**.
+ **Powder Grinding Tracker** - HiZe
- + Shows the Mithril/Gemstone Powder gained, the number of chests opened, if Double Powder is active, and the items
- collected.
- + Change between current session and total (open the inventory and click on Display Mode).
- + Fully customizable: change what items or stats to show.
- + Has support for the maxed Great Explorer perk.
- + Option to hide while not grinding powder.
+ + Shows the Mithril/Gemstone Powder gained, the number of chests opened, if Double Powder is active, and the items
+ collected.
+ + Change between current session and total (open the inventory and click on Display Mode).
+ + Fully customizable: change what items or stats to show.
+ + Has support for the maxed Great Explorer perk.
+ + Option to hide while not grinding powder.
## Commands
@@ -600,6 +603,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Show alert when reaching max super-pairs clicks. - pretz
+ Plays a beep sound and sends a message in chat when the player reaches the maximum number of clicks gained for
super-pairs minigames.
++ Anniversary Event Active Player Ticket Timer. - nea
+ + Option to play a sound as well.
## Cosmetics
diff --git a/build.gradle.kts b/build.gradle.kts
index ade832df3..79205ed5c 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.20.Beta.16"
+version = "0.20.Beta.17"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 17aa52347..20b664ae8 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -128,7 +128,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.20.Beta.16",
+ version = "0.20.Beta.17",
)
class SkyHanniMod {
@Mod.EventHandler