aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-02-10 02:31:59 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-02-10 02:31:59 +0100
commit1af3c89a8daf1eac3921c8b26a49e379f0d18f08 (patch)
treedc0ec39394a6582cfe8e7c85d1aa751b8023e2f4
parentf3f63199d2fea8b8b2f63252ea5d4a0de02840b6 (diff)
downloadskyhanni-1af3c89a8daf1eac3921c8b26a49e379f0d18f08.tar.gz
skyhanni-1af3c89a8daf1eac3921c8b26a49e379f0d18f08.tar.bz2
skyhanni-1af3c89a8daf1eac3921c8b26a49e379f0d18f08.zip
Version 0.23 Beta 18
-rw-r--r--CHANGELOG.md17
-rw-r--r--FEATURES.md6
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 25 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3cf748d79..2bea506dd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,12 @@
+ Added Atmospheric Filter Display. - Erymanthus
+ This display shows the currently active buff as a GUI element.
+ For an optimal experience, please have the Atmospheric Filter accessory active.
++ Added Sensitivity Reducer. - martimavocado
+ + Lowers mouse sensitivity while in the garden.
+ + Either when pressing a keybind or holding a farming tool in hand.
+ + Changes by how much the sensitivity is lowered by.
+ + Show a GUI element while the feature is enabled.
+ + Option to only allow this feature while on ground and/or on barn plot.
#### Fishing Features
@@ -123,6 +129,10 @@
+ Show the guide text when hovering over the missing bingo goal list. - hannibal2
+#### Crimson Isle Changes
+
++ Added option to hide tasks after they've been completed in Crimson Isle Reputation Helper. - martimavocado
+
#### Inventory Changes
+ Removed flawless gemstones from sack display. - CalMWolfs
@@ -170,6 +180,10 @@
+ Added option to ignore Everything Chroma in the chat. - VixidDev
+ Added Item Ability Cooldown support for Talbot's Theodolite (the Farming Island Trapper tracker thing). - Erymanthus
+ Fewer election API updates, fewer election API errors. - CalMWolfs
++ SkyHanni's own /wiki command logic now works better in SkyBlock Level guide and allows changing weather to use
+ official Hypixel Wiki or the older Fandom Wiki. - Obsidian
++ Added option to hide the already existing F3 SkyBlock Area Debug Feature. - Obsidian
+ + This feature shows the current area in SkyBlock while f3 is open.
### Fixes
@@ -189,6 +203,7 @@
+ Fixed the detection of Anita and Jacob visitors. - hannibal2
+ Fixed the pets menu detection for /ff. - martimavocado
+ Fixed Anita and Jacob workaround working outside of garden. - CalMWolfs
++ Fixed opening visitor Milestones menu not loading visitor amount for /ff. - martimavocado
#### Combat Fixes
@@ -344,6 +359,8 @@
+ Added outgoing chat log to /shchathistory. - nea
+ Added sending mining events to Soopy's API to test for new Mining Event feature. - CalMWolfs
+ Added /shcopybossbar to copy bossbar - Erymanthus
++ Splitting many utils functions from LorenzUtils up into other classes: ChatUtils, CollectionUtils, ConditionalUtils. - Thunderblade73
++ A ton of code cleanup, mainly on imports. - Thunderblade73 & hannibal2
## Version 0.22
diff --git a/FEATURES.md b/FEATURES.md
index 63b4ccd31..a3f837854 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -595,6 +595,12 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Atmospheric Filter Display. - Erymanthus
+ This display shows the currently active buff as a GUI element.
+ For an optimal experience, please have the Atmospheric Filter accessory active.
++ Sensitivity Reducer. - martimavocado
+ + Lowers mouse sensitivity while in the garden.
+ + Either when pressing a keybind or holding a farming tool in hand.
+ + Changes by how much the sensitivity is lowered by.
+ + Show a GUI element while the feature is enabled.
+ + Option to only allow this feature while on ground and/or on barn plot.
</details>
<details open><summary>
diff --git a/build.gradle.kts b/build.gradle.kts
index fa6b47df0..be0287b4b 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -14,7 +14,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.23.Beta.17"
+version = "0.23.Beta.18"
val gitHash by lazy {
val baos = ByteArrayOutputStream()
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 1b596b327..c885101dc 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -384,7 +384,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.23.Beta.17",
+ version = "0.23.Beta.18",
)
class SkyHanniMod {