aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md26
-rw-r--r--FEATURES.md10
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 38 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dc73d7eda..3bfa8cb34 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -81,6 +81,17 @@
+ Added Waypoints for 2023 Lobby Presents. - walker
+#### Stranded Featuers
+
++ Highlights NPCs in the stranded menu that are placeable but not placed. - walker
+
+#### Diana Features
+
++ Added Diana Profit Tracker. - hannibal2
+ + Same options as slayer and fising trackers.
+
+####
+
### Changes
#### Garden Changes
@@ -107,6 +118,7 @@
#### Fishing Changes
+ Show the fishing tracker for a couple of seconds after catching something even while moving. - hannibal2
++ Show breakdown of different shark types caught during festivals. - Cad
#### Winter Changes
@@ -133,6 +145,11 @@
+ Option to change the color of Marked Players in chat and in the world. - walker & hannibal2
+ Added support for the new item rarity "Ultimate Cosmetic". - hannibal2
+ Hide "Winter Island Close" timer during the month of December. - hannibal2
++ Changes Ctrl+V in signs to better sign editing. - Obsidian
+ + Allows pasting (Ctrl+V), copying (Ctrl+C), and deleting whole words/lines (Ctrl+Backspace/Ctrl+Shift+Backspace) in signs.
++ Improve accuracy of movement speed display. - alexia
++ Added toggle to hide autopet messages. - CalMWolfs
++ Not only Slayer, also Fishing and Diana item drops will now show in chat & title when over a custom defined price. - hannibal2
### Fixes
@@ -155,6 +172,10 @@
+ Fixed an error message in the composter inventory when hovering over some items.- hannibal2
+ Correctly load the plot names of locked plots from inventory. - hannibal2
+ Fixed the boosted crop not being highlighted during contest participation. - alexia
++ Fixed farming weight leaderboard showing new position as -1 sometimes. - alexia
++ Fix typo with Not Clickable Items in Composter. - absterge
++ Added missing preview number from Visitor Drop Statistics. - absterge
++ Fixed error message with newly bought fungi cutter. - hannibal2
#### Bingo Fixes
@@ -186,6 +207,7 @@
+ Fixed the city project time remaining "soon!" error. - hannibal2
+ Fixed Slayer Profit Tracker display and price problems with Wisp's Ice Flavored Water Potion. - hannibal2
+ Fixed an error message when closing the wheat minion in the Hub. - Thunderblade73
++ Fixed locraw sending outside Hypixel. - walker
#### Config Fixes
@@ -231,6 +253,10 @@
+ Cleanup getItemsInOpenChest. - walker
+ Changed MinionCraftHelper to use NeuInternalName. - walker
+ Added a separate debug hotkey for Bypass Advanced Tab List. - hannibal2
++ Added Config Transform function. - walker
++ Migrate Deprecated Config Values to Enums. - walker
++ Migrate Config Value in EliteFarmingWeight. - walker
++ Add limbo time PB. - mar
## Version 0.21.1
diff --git a/FEATURES.md b/FEATURES.md
index a027f85bc..2a59c0cb9 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -324,6 +324,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ **Inquisitor Sharing**
+ Share aypoints for inquisitors you find with your party.
+ Show a timer until the inquisitor will despawn.
++ Diana Profit Tracker. - hannibal2
+ + Same options as slayer and fising trackers.
</details>
<details open><summary>
@@ -667,6 +669,14 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
</details>
<details open><summary>
+## Stranded
+</summary>
+
++ Highlights NPCs in the stranded menu that are placeable but not placed. - walker
+
+</details>
+<details open><summary>
+
## Misc
</summary>
diff --git a/build.gradle.kts b/build.gradle.kts
index fcdbf8721..e0e07132a 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -12,7 +12,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.22.Beta.10"
+version = "0.22.Beta.11"
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 7b32558cc..6c27a0be1 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -354,7 +354,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.22.Beta.10",
+ version = "0.22.Beta.11",
)
class SkyHanniMod {
@Mod.EventHandler