summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-15 11:07:09 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-15 11:07:09 +0200
commit8024d7b8ddd5c12df26e2cdd3fcac6f1a2305b78 (patch)
tree2f8fc1a1e1d16704078a990832e502cab211b21f
parenteebc1d00df5fa6cc56c09a1226ffa2a97d6af6f1 (diff)
downloadskyhanni-8024d7b8ddd5c12df26e2cdd3fcac6f1a2305b78.tar.gz
skyhanni-8024d7b8ddd5c12df26e2cdd3fcac6f1a2305b78.tar.bz2
skyhanni-8024d7b8ddd5c12df26e2cdd3fcac6f1a2305b78.zip
0.20 Beta 20
-rw-r--r--CHANGELOG.md9
-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, 20 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a2d17dae2..a9cb97bba 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -82,6 +82,9 @@
+ Added icons for the medals received in a contest. - CalMWolfs
+ Different symbol for when it was a Finnegan contest.
+ Added Tab Complete support to sacks command /gfs and /getfromsacks. - J10a1n15
++ Added 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).
### Changes
@@ -135,6 +138,7 @@
+ Added support for slayer profit trackers on stranded. - hannibal2
+ Added Trapper Cooldown GUI. - NetheriteMiner
+ Show the cooldown on screen in an overlay (intended for abiphone users).
++ Made the fake garden level up message (after level 15) clickable. - J10a1n15
### Fixes
@@ -216,6 +220,11 @@
+ Summoning souls should no longer be counted as sea creatures for the fishing timer. - hannibal2
+ Fixed Jacob Contests times needed display showing impossible FF values. - ReyMaratov
+ Fixed item cooldown issues with fire fury staff and jinxed voodoo doll. - Cad
++ Fixed the percentage going above 100% for bestiary progress. - HiZe
++ Fixed max kills from Ghost Counter using old bestiary data when resetting the config. - HiZe
++ Fixed part of Zealot Hideout area showing as The End. - Cad
++ Fixed many typos in the config. - schlaumeyer, oofy, CalMWolfs & hannibal2
++ Fixed a missing bracket in the reforge apply cost display from Estimated Item Value. - jaNI
### Removed Features
diff --git a/FEATURES.md b/FEATURES.md
index bfd0a549c..8d589bc5c 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -318,6 +318,11 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Also available to select directly in the rancher boots overlay (contributed by nea)
+ Desk shortcut in SkyBlock Menu.
+ **Garden Level Display** - Show the current garden level and progress to the next level.
++ **Fake garden level up** message: - hannibal2
+ + In 10k garden exp steps after level 15.
+ + Uses the overflow exp that hypixel still caluclates (maybe official upgrade with more garden levels in the
+ future?).
+ + Click on the message to open the garden level display. - J10a1n15
+ **Farming Weight and Leaderboard**
+ provided by the Elite SkyBlock farmers.
+ next leaderboard position eta.
@@ -612,9 +617,12 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
super-pairs minigames.
+ Anniversary Event Active Player Ticket Timer. - nea
+ Option to play a sound as well.
-* **Travor Trapper** Features in Farming Islands
++ **Travor Trapper** Features in Farming Islands
+ Trapper Cooldown GUI. - NetheriteMiner
+ Show the cooldown on screen in an overlay (intended for abiphone users).
++ **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).
## Cosmetics
diff --git a/build.gradle.kts b/build.gradle.kts
index baf6c6f6b..31b4348b3 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.20.Beta.19"
+version = "0.20.Beta.20"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 83ef3360f..790cf2a6a 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -131,7 +131,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.20.Beta.19",
+ version = "0.20.Beta.20",
)
class SkyHanniMod {
@Mod.EventHandler