aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md27
-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, 35 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 37573f0e8..50fe60127 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -42,9 +42,9 @@
+ No need to open the calendar every SkyBlock year again.
+ Grab Jacob Contest data from the elitebot.dev website.
+ Option to send local contest data to elitebot.dev at the start of the new SkyBlock year.
-+ Added **SkyHanni Installer** - NetheriteMiner
++ Added SkyHanni **Installer** - NetheriteMiner
+ Double-clicking the mod jar file will open a window that asks you where to move the mod into.
-+ Added Chat Translator - NetheriteMiner
++ Added Chat **Translator** - NetheriteMiner
+ After enabling, click on any chat message sent by another player to translate it to English.
+ Show the progress bar until maxed crop milestone in the crop milestone inventory. - hannibal2
+ Show a line to the enderman slayer beacon. - hannibal2
@@ -86,7 +86,15 @@
+ Scroll within the position editor to independently adjust the GUI scale for each SkyHanni element.
+ Change the global scale of all SkyHanni elements at once (in the config under /sh scale).
+ Added Fishing Hook Display. - hannibal2
- + Display the Hypixel timer until the fishing hook can be pulled out of the water/lava, only bigger and on your screen.
+ + Display the Hypixel timer until the fishing hook can be pulled out of the water/lava, only bigger and on your
+ screen.
++ Added **Trevor the Trapper Tracker**. - CalMWolfs
+ + Quests done
+ + A breakdown of their rarity
+ + Animals killed vs. animals that kill themselves
+ + Pelts per hour
++ Press the hotkey to accept the next Trevor the Trapper quest. - CalMWolfs
++ Added a countdown for Arachne spawn. - Cad
### Changes
@@ -144,6 +152,9 @@
+ Moving many GUI elements in the config around. - hannibal2
+ This will not reset anything.
+ This includes the creation of new categories and regrouping.
++ Better Trevor the Trapper detection. - CalMWolfs
++ Show Trevor the Trapper's mob name next to the waypoint. - CalMWolfs
++ Small performance improvements when working with color codes. - brainage04
### Fixes
@@ -236,6 +247,16 @@
+ Fixed that the Paste Into Sign feature only pastes into the first line. - hannibal2 + nea
+ Hopefully fixed rare config reset cases. - nea
+ This should also fix problems with false positive detections in the crimson isle.
++ Fixed item rarity problems. - hannibal2
++ Fixed a rare error when opening minion inventory. - hannibal2
++ Fixed stuff in the **Trozen Treasure Tracker**. - CalMWolfs
+ + The ice/hour calculation
+ + Rate Timer
+ + Typos
++ Fixed a small typo in the config. - hannibal2
++ Fixed inconsistencies with Arachne brood highlighting. - Cad
++ Fixed Crimson Reputation Helper doesn't count trophy fish when sacks exist. - Fix3dll
++ Fixed a rare error when switching to a dicer farming tool too quickly. - Cad
### Removed Features
diff --git a/FEATURES.md b/FEATURES.md
index fa1cc851e..588b9da86 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -182,7 +182,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Hides your own Chum/Chumcap Bucket.
+ Highlight and outline feature for rare sea creatures. - Cad
+ Added Fishing Hook Display. - hannibal2
- + Display the Hypixel timer until the fishing hook can be pulled out of the water/lava, only bigger and on your screen.
+ + Display the Hypixel timer until the fishing hook can be pulled out of the water/lava, only bigger and on your
+ screen.
## Damage Indicator
@@ -293,6 +294,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Highlight corrupted mobs.
+ **Arachne Minis Hider** - Hides the nametag above arachne minis.
+ **Arachne Boss Highlighter** - Highlight the arachne boss in red and mini bosses and orange.
++ Added a countdown for Arachne spawn. - Cad
+ Option to hide the vanilla particles around enderman
## Garden Features
@@ -622,6 +624,12 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ **Travor Trapper** Features in Farming Islands
+ Trapper Cooldown GUI. - NetheriteMiner
+ Show the cooldown on screen in an overlay (intended for abiphone users).
+ + **Trevor the Trapper Tracker**. - CalMWolfs
+ + Quests done
+ + A breakdown of their rarity
+ + Animals killed vs. animals that kill themselves
+ + Pelts per hour
+ + Press the hotkey to accept the next Trevor the Trapper quest. - CalMWolfs
+ **GUI Scale**: - nea
+ Scroll within the position editor to independently adjust the GUI scale for each SkyHanni element.
+ Change the global scale of all SkyHanni elements at once (in the config under /sh scale).
diff --git a/build.gradle.kts b/build.gradle.kts
index f1f8057e4..59225627d 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.20.Beta.21.1"
+version = "0.20.Beta.22"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 88dc05924..75dc4eef9 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -132,7 +132,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.20.Beta.21.1",
+ version = "0.20.Beta.22",
)
class SkyHanniMod {
@Mod.EventHandler