aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md27
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
3 files changed, 26 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5da370f96..05bc74465 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,11 +1,20 @@
# SkyHanni - Change Log
-## Version 0.21.11 (unreleased)
+## Version 0.21.1 (unreleased)
+### New Features
+
++ Organised the config into sub categories. - nea & walker
+
+### Changes
+
++ Added guess seconds to the Visitor Timer when the tab list doesn't show seconds. - hannibal2
++ Add option to hide the chat message when toggling /shmouselock. - hannibal2
+
### Changes
-+ Added mythic/Maeve visitor support. - walker + hannibal2
++ Added mythic/Maeve visitor support. - walker & hannibal2
+ Added option to use custom Blocks per Second value in some Garden GUIs instead of the real one. - hannibal2
### Fixes
@@ -13,19 +22,31 @@
#### Garden Fixes
+ Fixed new visitor alerts triggering wrongly and constantly. - Cad
-+ Fixed visitor timer. - hannibal2****
++ Fixed visitor timer. - hannibal2
+ Fixed wrong Fungi Cutter mode warning not working. - walker
+ Fixed Maximum FF Needed display not showing in Jacob NPC menu. - hannibal2
+ Fixed calendar contest detection failing. - hannibal2
+ Fixed plot borders flickering and consistency errors when pressing the keybind - hannibal2
+ Fixed wrong ff needed values in Time Needed for Gold Medal GUI. - hannibal2
+ Fixed Farming Contest Medal Icons in Inventory not showing. - hannibal2
++ Fixed /ff not detecting collection analyst fortune. - hannibal2
++ Fixed Mushroom Cow Perk display not working. - hannibal2
#### Other Fixes
+ Fixed showing "slayer boss spawn soon" message outside the correct slayer area. - hannibal2
+ Fixed blocking clicks on bazaar with player name "wiki". - hannibal2
+ Fixed highlighting some mobs in the dungeon wrongly as area mini bosses. - hannibal2
++ Fixed opening the Pet menu no longer updating the current pet display. - hannibal2
+
+### Technical Details
+
++ Updated to a newer version of MoulConfig. - nea & walker
+ + This includes support for the new sub category part in the config.
++ Added TimeUtils.getDuration and deprecated TimeUtils.getMillis. - hannibal2
++ Created PetAPI and deprecated String.matchRegex(). - hannibal2
++ Extracted sacks, friends, known features and Jacob contests in to their separate files. - CalMWolfs
++ Add log clearing. - CalMWolfs
## Version 0.21
diff --git a/build.gradle.kts b/build.gradle.kts
index 0402b998a..6df3bad10 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.21.1.Beta.1"
+version = "0.21.1.Beta.2"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index bb9855949..0facb0f65 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -331,7 +331,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.21.1.Beta.1",
+ version = "0.21.1.Beta.2",
)
class SkyHanniMod {
@Mod.EventHandler