aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/CHANGELOG.md54
-rw-r--r--docs/FEATURES.md7
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
3 files changed, 62 insertions, 1 deletions
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 6589d2e3a..b53e9b1fe 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -2,6 +2,60 @@
## Version 0.26 (In Beta)
+### New Features
+
+#### Combat Features
+
++ SOS/Alert/Warning Flare Display. - HiZe + hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1803)
+ + Warn when the flare is about to despawn (chat, title or both).
+ + Change the display type (as a GUI element, in the world, or both).
+ + Show effective area (as a wireframe, filled or circle).
+ + Show mana regeneration buff next to the GUI element.
+ + Option to hide flare particles.
+
+#### Misc Features
+
++ Click on breakdown display in /playtimedetailed to copy the stats into the clipboard. - seraid (https://github.com/hannibal002/SkyHanni/pull/1807)
+
+### Improvements
+
+#### Farming Island Improvements
+
++ Trevor Mob Detection now works with Oasis mobs. - Awes (https://github.com/hannibal002/SkyHanni/pull/1812)
+
+#### Garden Improvements
+
++ Added `/shtpinfested` command to teleport to nearest infested plot. - Empa (https://github.com/hannibal002/SkyHanni/pull/1763)
+
+#### Hoppity Event Improvements
+
++ Renamed "Unfound Eggs" to "Unclaimed Eggs" for the Hoppity event. - Luna (https://github.com/hannibal002/SkyHanni/pull/1876)
++ Added Compact Hoppity Chat option. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1748)
+
+#### Mining Improvements
+
++ Highlight Treasure Hoarders during Treasure Hoarder Puncher commissions. - Luna (https://github.com/hannibal002/SkyHanni/pull/1852)
+
+#### Misc Improvements
+
++ Added a toggle for 24-hour time. - seraid (https://github.com/hannibal002/SkyHanni/pull/1804)
++ Improved the NEU missing/outdated warning. - Luna (https://github.com/hannibal002/SkyHanni/pull/1847)
+ + Link to the latest GitHub release instead of 2.2.0.
+ + Also link to Modrinth.
++ Improved performance with Slayer Items on Ground and Fished Item Names. - Empa (https://github.com/hannibal002/SkyHanni/pull/1875)
+
+### Fixes
+
+#### Mining Fixes
+
++ Fixed Tunnel Maps GUI position not saving. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/1882)
++ Fixed Glacite Walkers not being highlighted during commissions. - Luna (https://github.com/hannibal002/SkyHanni/pull/1850)
+
+#### Garden Fixes
+
++ Fixed farming contests showing in the election GUI. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/1871)
++ Fixed wrong icon for the rat crop type in Stereo Harmony display. - raven (https://github.com/hannibal002/SkyHanni/pull/1849)
+
## Version 0.25
### New Features
diff --git a/docs/FEATURES.md b/docs/FEATURES.md
index 595709575..95d1d781a 100644
--- a/docs/FEATURES.md
+++ b/docs/FEATURES.md
@@ -392,6 +392,12 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Warns when right-clicking with a Wither Impact weapon (e.g. Hyperion) no longer gains combat exp
+ Kill a mob with melee-hits to fix this hypixel bug
+ Only works while doing slayer
++ SOS/Alert/Warning Flare Display. - HiZe + hannibal2 (https://github.com/hannibal002/SkyHanni/pull/1803)
+ + Warn when the flare is about to despawn (chat, title or both).
+ + Change the display type (as a GUI element, in the world, or both).
+ + Show effective area (as a wireframe, filled or circle).
+ + Show mana regeneration buff next to the GUI element.
+ + Option to hide flare particles.
+ Title warning when picking up an expensive slayer item
+ **RNG Meter Display**
+ Display amount of bosses needed until the next RNG Meter item drops
@@ -1134,6 +1140,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
martimavocado (https://github.com/hannibal002/SkyHanni/pull/848)
+ Support for `/playtime` and `/pt` while in Limbo.
+ Added your playtime to Hypixel's `/playtimedetailed`.
++ Click on breakdown display in /playtimedetailed to copy the stats into the clipboard. - seraid (https://github.com/hannibal002/SkyHanni/pull/1807)
+ Custom Scoreboard - j10a1n15 (https://github.com/hannibal002/SkyHanni/pull/893)
+ Customizable; New, never seen before lines like the current mayor with perks, your party, and more!
+ Custom Title and Footer, align them on different sides of the scoreboard.
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 3b9c8e361..2e5502e60 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -490,7 +490,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.25",
+ version = "0.26.Beta.1",
)
class SkyHanniMod {