diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-28 12:14:02 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-28 12:14:02 +0200 |
commit | 1053fb5ebf83d1a75ade1b0fba0a4eeb6ec59f4f (patch) | |
tree | fcf7fed993b5a203cbfaf7d810c7eedc8561868e | |
parent | 0191f3c79c9287b07f9036895a4258ba44dac9f3 (diff) | |
download | skyhanni-1053fb5ebf83d1a75ade1b0fba0a4eeb6ec59f4f.tar.gz skyhanni-1053fb5ebf83d1a75ade1b0fba0a4eeb6ec59f4f.tar.bz2 skyhanni-1053fb5ebf83d1a75ade1b0fba0a4eeb6ec59f4f.zip |
0.20 Beta 12
-rw-r--r-- | CHANGELOG.md | 17 | ||||
-rw-r--r-- | FEATURES.md | 8 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 26 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6028972a2..507fa5fb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,12 @@ shift key. + Anita Extra Farming Fortune: + Show current tier and cost to max out in the item tooltip. ++ Sync Jacob Contests - Kaeso + CalMWolfs + + No need to open the calendar every SkyBlock year again. + + Grab Jacob Contest data from the elitebot.dev website. + + Option to send local contest data to elitebot.dev at the start of the new SkyBlock year. ++ Added **SkyHanni Installer** - NetheriteMiner + + Double-clicking the mod jar file will open a window that asks you where to move the mod into. ### Changes @@ -63,6 +69,10 @@ + 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. ++ Added cultivating and replenish to the visitor rewards. - ReyMaratov ++ Added Bee pet support to /ff - derholzmann12321 ++ Added exportable carrot to /ff. - CalMWolfs + + If SkyHanni doesn't know you have it, run /shcarrot ### Fixes @@ -95,6 +105,13 @@ + 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. ++ Fixed everything **crop milestone** related. - CalMWolfs ++ Fixed estimated item value detects master stars on non-dungeon items. - hannibal2 ++ Fixed wrong progress bar for pet exp display. - hannibal2 ++ Fixed compatibility problem with NEU for pet exp number format. - hannibal2 ++ Various **/ff fixes** - CalMWolfs ++ Numbers, rounding and pets being reset. ++ Fixed inventory item number offset being wrong. - CalMWolfs ### Removed Features diff --git a/FEATURES.md b/FEATURES.md index 7556ec1c9..7e4de1eca 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -389,6 +389,10 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Override the Overtake ETA to show when you will reach the specified rank + If not there yet + Default: #10k ++ Sync Jacob Contests - Kaeso + CalMWolfs + + No need to open the calendar every SkyBlock year again. + + Grab Jacob Contest data from the elitebot.dev website. + + Option to send local contest data to elitebot.dev at the start of the new SkyBlock year. ## The Rift @@ -563,4 +567,6 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + 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 + shift key. ++ Added **SkyHanni Installer** - NetheriteMiner + + Double-clicking the mod jar file will open a window that asks you where to move the mod into.
\ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 080f6fe2e..34adbc7e7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.20.Beta.11" +version = "0.20.Beta.12" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 3e8aae8f2..752d5a413 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.11", + version = "0.20.Beta.12", ) class SkyHanniMod { @Mod.EventHandler |