aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md9
-rw-r--r--FEATURES.md5
-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 11b303363..fd46d0cba 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,6 +23,8 @@
+ Shows a list of all items and their price when inside a chest on your private island.
+ In Melody's Harp, show buttons as stack size. - NetheriteMiner
+ Intended to be used with Harp Keybinds
++ Added keybind to manually reset the barn/worm fishing timer. - CarsCupcake
++ Added timer till shared inquisitors will despawn. - hannibal2
### Changes
@@ -37,6 +39,8 @@
+ Shark fish counter now counts twice for Double hook. - appable0
+ Ghost counter check for Mist now ignores y coordiantes - HiZe
+ Telling the user about the bypass hotkey when the visitor drop warning blocks a visitor refusal. - CalMWolfs
++ Added warning sound when the worm fishing cap of 60 is hit. - CarsCupcake
++ Shared inquisitor waypoints will now get removed after 75 seconds. - hannibal2
### Fixes
@@ -56,6 +60,11 @@
+ Fixed End Node Tracker not updating when changing the text format.
+ Fixed neu repo error messages with runes.
+ Fixed rare crashes with scoreboard.
++ Fixed feature that replaces the sack stitched lore message. - hannibal2
++ Fixed some typos in config descriptions and correctly rounding down in composter overlay. - CalMWolfs
++ Fixed a typo in an error message. - Obsidian
++ Fixed Chest Value fails to detect chests when using a resource pack. - HiZe
++ Fixed Sea Creature Timer not working on barn. - hannibal2
## Version 0.19
diff --git a/FEATURES.md b/FEATURES.md
index bc4463fd6..87e848dd6 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -164,6 +164,8 @@
+ **Barn Timer**
+ Show the time and amount of sea creatures while fishing on the barn via hub.
+ Works in crystal hollows too (worm fishing)
+ + Keybind to manually reset the barn/worm fishing timer. - CarsCupcake
+ + Warning sound when the worm fishing cap of 60 is hit. - CarsCupcake
+ **Shark Fish Counter** - Counts how many sharks have been caught.
+ **Odger waypoint** - Show the Odger waypoint when trophy fishes are in the inventory and no lava rod in hand.
+ Showing fished item names
@@ -249,6 +251,9 @@
+ Warps to the nearest warp point on the hub, if closer to the next burrow.
+ **Griffin Pet Warning**
+ Warn when holding an Ancestral Spade while no Griffin pet is selected.
++ **Inquisitor Sharing**
+ + Share aypoints for inquisitors you find with your party.
+ + Show a timer until the inquisitor will despawn.
## Marked Players
diff --git a/build.gradle.kts b/build.gradle.kts
index 4aa8d0edf..d9a95fbf2 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.20.Beta.6"
+version = "0.20.Beta.7"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 7d72e73f8..df33eaa2a 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -124,7 +124,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.20.Beta.6",
+ version = "0.20.Beta.7",
)
class SkyHanniMod {
@Mod.EventHandler