diff options
-rw-r--r-- | docs/CHANGELOG.md | 50 | ||||
-rw-r--r-- | docs/FEATURES.md | 5 | ||||
-rw-r--r-- | root.gradle.kts | 2 |
3 files changed, 56 insertions, 1 deletions
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index d73810999..6f2dcbba0 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,55 @@ # SkyHanni - Change Log +## Version 0.28 (in Beta) + +### New Features + +#### Hoppity Features + ++ Added an easier way to check your unique Hoppity Eggs collected on each island. - martimavocado (https://github.com/hannibal002/SkyHanni/pull/2625) + + Shows your progress in the Warp Menu. + + Can be automatically hidden when an island is complete. + +#### Inventory Features + ++ Added Focus Mode. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/2694) + + In Focus Mode, only the name of the item is displayed instead of the full description. + +### Improvements + +#### Inventory Improvements + ++ Added Pocket Sack-in-a-Sack support to Estimated Item Value. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/2698) + +#### Chat and Command Improvements + ++ Replaced repeated SkyHanni messages with the previous message. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/2700) ++ Added support for Guilds in player-related tab completions. - ThatGravyBoat (https://github.com/hannibal002/SkyHanni/pull/2637) ++ Added support for all Guild and Friend commands in tab completions. - ThatGravyBoat (https://github.com/hannibal002/SkyHanni/pull/2637) + +### Fixes + +#### Fishing Fixes + ++ Fixed fishing displays showing in dungeons. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/2697) + +#### Inventory Fixes + ++ Fixed "No Guardian Pet warning" not supporting Pet Rule "On open Experimentation Table". - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/2699) ++ Fixed an error with compact experiment rewards chat messages. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/2702) + +#### Combat Fixes + ++ Fixed Ghost Counter display appearing while in incorrect areas on the map. - hannibal2 (https://github.com/hannibal002/SkyHanni/pull/2696) + +### Technical Details + ++ Assigned 'backend' label to PRs with 'backend' in the title. - CalMWolfs (https://github.com/hannibal002/SkyHanni/pull/2690) + + This does not change the functionality of the current bug fix label. ++ Added SuggestionProvider. - ThatGravyBoat (https://github.com/hannibal002/SkyHanni/pull/2637) + + This new class simplifies building suggestion trees. ++ Added Stats API. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/2253) + ## Version 0.27 ### New Features diff --git a/docs/FEATURES.md b/docs/FEATURES.md index a57725958..ed5c74ad3 100644 --- a/docs/FEATURES.md +++ b/docs/FEATURES.md @@ -226,6 +226,8 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Display the price per Stonk when taking the minimum bid in the Stonks Auction (Richard Menu). - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/2195) + Added Ultimate Enchant Star. - Empa (https://github.com/hannibal002/SkyHanni/pull/2612) + Shows a star on Enchanted Books with an Ultimate Enchant. ++ Added Focus Mode. - Thunderblade73 (https://github.com/hannibal002/SkyHanni/pull/2694) + + In Focus Mode, only the name of the item is displayed instead of the full description. </details> <details open><summary> @@ -1005,6 +1007,9 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Abi = Dark Green. + Added a toggle to highlight found rabbits in Hoppity's Collection menu. - the1divider (https://github.com/hannibal002/SkyHanni/pull/2438) + Added the ability to change the color of missing rabbit dyes in Hoppity's Collection to reflect rabbit rarity. - Daveed (https://github.com/hannibal002/SkyHanni/pull/2522) ++ Added an easier way to check your unique Hoppity Eggs collected on each island. - martimavocado (https://github.com/hannibal002/SkyHanni/pull/2625) + + Shows your progress in the Warp Menu. + + Can be automatically hidden when an island is complete. ### The Carnival diff --git a/root.gradle.kts b/root.gradle.kts index a121d65f8..e3af39d26 100644 --- a/root.gradle.kts +++ b/root.gradle.kts @@ -14,7 +14,7 @@ plugins { allprojects { group = "at.hannibal2.skyhanni" - version = "0.27" + version = "0.28.Beta.1" repositories { mavenCentral() mavenLocal() |