aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md15
-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, 18 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a5f2f6ec1..259e8e598 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -62,6 +62,7 @@
+ Option to hide other/wrong/fake Livids (try this out and see if you really want this, it can be counter-productive
in some cases).
+ Added AFK time to Discord RPC. - NetheriteMiner
++ Option to highlight items that are full in the sack inventory.
#### Events
@@ -102,6 +103,12 @@
+ Allow the use of Ctrl + C to copy the current textbox.
+ The effect of visual words is now visible while editing text.
+ Added Diamond/Gold essence to chat filter powder mining. - HiZe
++ Added fillet count and coins to Bronze/Silver Trophy Sack. - HiZe
++ Chest value is now default disabled in the dungeon, and added an option to enable it. - HiZe
++ Added support for lower case item IDs to the Hypixel command /viewrecipe. - walker
++ Added support for tab complete item IDs in the Hypixel command /viewrecipe. - hannibal2
+ + Only items with recipes are tab completed.
++ Added option to set the size of highlighted motes orbs in rift and make them smaller by default. - cimbraien
### Bug Fixes
@@ -143,6 +150,8 @@
+ It got deleted accidentally during code optimisations.
+ Highlight Commission Mobs: The "Golden Goblin Slayer" Commission should not trigger the "Goblin Slayer" Commission
anymore. - Thunderblade73
++ Fixed potential crash with future neu version. - CalMWolfs
++ Added missing beep sound to rejoin SkyBlock after kick warning. - hannibal2
#### Config
@@ -154,6 +163,12 @@
+ Removed **Duplicate Hider**.
+ Hypixel now fixed the bug themselves and hides duplicate farming contests in the Jacob inventory.
+#### Internal Changes
+
++ Add Repo TODOs to regex patterns. - walker
++ Moved many patterns from function scope to members. - hannibal2
++ Avoid hardcoded dispatcher. - walker
+
## Version 0.20
### New Features
diff --git a/FEATURES.md b/FEATURES.md
index 91b18269d..6c0d616d9 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -671,6 +671,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Can be disabled
+ Sortable by price or items stored (both desc/asc)
+ Option to show prices from Bazaar or NPC
++ Option to highlight items that are full in the sack inventory.
+ **Ghost Counter** (Contributed by HiZe)
+ Shows number of ghosts killed in the Mist in Dwarven Mines
+ Shows kill combo, coins per scavenger, all item drops, bestiarity, magic find and more
diff --git a/build.gradle.kts b/build.gradle.kts
index 646091481..bca19c4e1 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.21.Beta.11"
+version = "0.21.Beta.12"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 76b3c0aa1..bdc2e7a7c 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -317,7 +317,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.21.Beta.11",
+ version = "0.21.Beta.12",
)
class SkyHanniMod {
@Mod.EventHandler