aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-23 13:59:53 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-23 13:59:53 +0200
commit0f375522e6a4ac326c27b1f8b02e5de2b8491c4f (patch)
tree02adf2fd08e2d6e2b8f49299ba28d358c033a4ff
parent26c2daac604ee2dacae087cf7bdb04d9e07795ca (diff)
downloadskyhanni-0f375522e6a4ac326c27b1f8b02e5de2b8491c4f.tar.gz
skyhanni-0f375522e6a4ac326c27b1f8b02e5de2b8491c4f.tar.bz2
skyhanni-0f375522e6a4ac326c27b1f8b02e5de2b8491c4f.zip
0.20 Beta 11
-rw-r--r--CHANGELOG.md10
-rw-r--r--FEATURES.md13
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
4 files changed, 20 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a04ae4097..6028972a2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -30,7 +30,10 @@
+ Added command /shfarmingprofile [player name]
+ Opens the elitebot.dev website in your web browser to show your Farming Weight profile.
+ Pet Experience Tooltip
- + Show the full pet exp and the progress to level 100 (ignoring rarity) when hovering over an pet while pressing shift key.
+ + Show the full pet exp and the progress to level 100 (ignoring rarity) when hovering over a pet while pressing
+ shift key.
++ Anita Extra Farming Fortune:
+ + Show current tier and cost to max out in the item tooltip.
### Changes
@@ -57,6 +60,9 @@
+ Changed Bestiary Display number format - HiZe
+ Changed ff buffs for Elephant and Anita.
+ Changed chicken head timer from 20s to 5s.
++ Added option to show reputation locations only when pressing the hotkey.
++ Delay the custom garden level up message by a few milliseconds to not cut into the garden milestone message.
++ Added runic support for Zealots/Bruiser.
### Fixes
@@ -87,6 +93,8 @@
+ Fixed rare cases where special laptop keys trigger behavior unintended. - hannibal2
+ Fixed rendering problems with stack background and custom text lore. - nea
+ Hopefully fixed Derpy problems with Trevor Trapper, Arachne, Arachne Keeper and Zealots.
++ Fixed Anita upgrade detection from the Anita Shop inventory.
++ Fixed error message when clicking a finished upgrade in the community shop.
### Removed Features
diff --git a/FEATURES.md b/FEATURES.md
index e0d2c32b2..7556ec1c9 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -326,8 +326,12 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
require any crop)
+ **Money per Hour Advanced stats** - Show not only Sell Offer price but also Instant Sell price and NPC Sell price (
Suggestion: Enable Compact Price as well for this)
-+ **Anita Medal Profit** - Helps to identify profitable items to buy at the Anita item shop and potential profit from
- selling the item at the auction house.
++ **Anita Inventory**
+ + **Medal Profit**
+ + Helps to identify profitable items to buy at the Anita item shop and potential profit from
+ + selling the item at the auction house.
+ + **Extra Farming Fortune**
+ + Show current tier and cost to max out in the item tooltip.
+ **Composter Compact Display** - Displays the compost data from the tab list in a compact form as gui element.
+ **Composter Upgrade Price** - Show the price for the composter upgrade in the lore
+ **Highlight Upgrade** - Highlight Upgrades that can be bought right now.
@@ -474,7 +478,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ `/pt <player>` as alias for `/party transfer <player>`
+ SkyBlock Command `/tp` to check the play time still works
+ **/shfarmingprofile [player name]**
- + Opens the elitebot.dev website in your web browser to show your Farming Weight profile.
+ + Opens the elitebot.dev website in your web browser to show your Farming Weight profile.
## Misc
@@ -558,4 +562,5 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Only on Private island.
+ Account upgrade complete reminder. - appable0
+ Pet Experience Tooltip
- + Show the full pet exp and the progress to level 100 (ignoring rarity) when hovering over an pet while pressing shift key. \ No newline at end of file
+ + Show the full pet exp and the progress to level 100 (ignoring rarity) when hovering over an pet while pressing
+ shift key. \ No newline at end of file
diff --git a/build.gradle.kts b/build.gradle.kts
index 86b229175..92fae8caa 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.20.Beta.10"
+version = "0.20.Beta.11"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index cee9dafbf..b4bdbb75e 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -126,7 +126,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.20.Beta.10",
+ version = "0.20.Beta.11",
)
class SkyHanniMod {
@Mod.EventHandler