aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-23 03:39:10 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-23 03:39:10 +0100
commit871a604ac2916f63c38271e6d5c462ce656b2ba5 (patch)
treec25b11b1353ad43b579c82c83063e06c5f31a14d
parent596ccd9af873ab49735816f00a1f50495c8b3106 (diff)
downloadskyhanni-871a604ac2916f63c38271e6d5c462ce656b2ba5.tar.gz
skyhanni-871a604ac2916f63c38271e6d5c462ce656b2ba5.tar.bz2
skyhanni-871a604ac2916f63c38271e6d5c462ce656b2ba5.zip
Version 0.22 Beta 17
-rw-r--r--CHANGELOG.md13
-rw-r--r--FEATURES.md1
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1cf603c8e..9dd7f4bc4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -72,6 +72,7 @@
+ Added show special edition number as stack size when below 1k. - hannibal2
+ Added Copy Underbid Price. - hannibal2
+ Copies the price of an item in the "Create BIN Auction" minus 1 coin into the clipboard for faster under-bidding.
++ Highlight your own lowest BIN auctions that are outbid. - hannibal2
#### Minion Features
@@ -135,6 +136,8 @@
+ Show the garden build limit with F3+G on. - hannibal2
+ Added an option to show if the plot is not sprayed. - alexia
+ Changed pest spawn message format. - hannibal2
++ Improve the precision of the compost empty timer. - appable
++ Added Harvest Harbinger and Pest Repellent non-god effects. - alexia
#### Fishing Changes
@@ -164,6 +167,10 @@
+ Resetting the guess and burrow locations when clearing the burrows at Diana NPC. - hannibal2
+ Removed Diana "Smooth Transition" and replaced it with "Line to Next". - hannibal2
+#### Inventory Changes
+
++ Copy Underbid Price now supports stack sizes of more than one. - hannibal2
+
#### Misc Changes
+ Titles sent by SkyHanni look better now. - Cad
@@ -219,6 +226,9 @@
+ Show not revealed brackets in the Jacob Contest time needed display. - hannibal2
+ Fixed wrong Rancher Boots item stack size color in combination with Black Cat or Racing Helmet.- hannibal2
+ Fixed showing medal icons in Jacob inventory. - hannibal2
++ Fixed SkyMart items showing the wrong profit when having other items as costs. - hannibal2
++ Hide "Not sprayed!" text while in the barn or outside the garden area. - hannibal2
++ Fixed armor drop tracker not instantly visible. - hannibal2
#### Bingo Fixes
@@ -250,6 +260,7 @@
+ Fixed an error message on /pt. - nea
+ Fixed the fire sale filter when a rune is selling. - j10a1n15
++ Fixed bestiary compact message. - hannibal2
#### Dungeon Fixes
@@ -276,6 +287,7 @@
+ Fixed Estimated Item Value error in Jerry's Island Deliveries menu. - hannibal2
+ Fixed the /gfs command counting in the Slayer Profit Tracker. - hannibal2
+ Fixed the Fire Veil effect and item ability cooldown not working when clicking in the air. - hannibal2
++ Fixed broken area mini boss highlight during Derpy. - hannibal2
#### Config Fixes
@@ -329,6 +341,7 @@
+ Created PetAPI.isCurrentPet. - hannibal2
+ Refactored Duplicate Code in SkyHanniInstallerFrame. - walker
+ Removed unnecessary non-capturing groups. - walker
++ ComposterOverlay now uses NEUInternalName. - walker
## Version 0.21.1
diff --git a/FEATURES.md b/FEATURES.md
index 48d793893..d8dd95d8d 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -105,6 +105,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Highlight depleted Bonzo's Masks in your inventory.
+ Highlight stuff that is missing in the SkyBlock level guide inventory.
+ **Auction Highlighter** - Highlight own items that are sold in green and that are expired in red.
++ Highlight your own lowest BIN auctions that are outbid. - hannibal2
+ **Unclaimed Rewards** - Highlight contests with unclaimed rewards in the jacob inventory.
+ **Contest Time** - Show the real time format to the farming contest description.
+ **Pet Candies Used number**
diff --git a/build.gradle.kts b/build.gradle.kts
index 67095147c..95a06ba13 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -12,7 +12,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.22.Beta.16"
+version = "0.22.Beta.17"
val gitHash by lazy {
val baos = ByteArrayOutputStream()
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index c04e67c90..3d5bff605 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -361,7 +361,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.22.Beta.16",
+ version = "0.22.Beta.17",
)
class SkyHanniMod {
@Mod.EventHandler