diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-22 12:08:35 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-22 12:08:35 +0100 |
commit | 5d1e9a07eabe3872c714b17b64b7a6e0a0073d73 (patch) | |
tree | 32292beca5810bdba5fc305a1066c3d2f1b3c750 | |
parent | 522e516d4edf0c2f5f96883ba223ea625a0befa7 (diff) | |
download | skyhanni-5d1e9a07eabe3872c714b17b64b7a6e0a0073d73.tar.gz skyhanni-5d1e9a07eabe3872c714b17b64b7a6e0a0073d73.tar.bz2 skyhanni-5d1e9a07eabe3872c714b17b64b7a6e0a0073d73.zip |
0.21.1
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 17e028cb7..884017ef6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # SkyHanni - Change Log -## Version 0.21.1 (unreleased) +## Version 0.21.1 ### New Features @@ -29,6 +29,7 @@ + Only show the Total Crop Milestone info in crop milestone inventory when below tier 20. - hannibal2 + Hypixel now has their own line for the same information for tier 20+ + Make the FF Display only visible while holding a farming tool in hand. - hannibal2 ++ Hide in crop milestone display the line with time remaining entirely when the milestone is maxed. - hannibal2 #### Other Changes @@ -59,6 +60,9 @@ + Fixed /ff upgrade suggests updating bustling reforge even when no farming armor is found. - hannibal2 + Fixed maxed sunder fortune in the /ff stats breakdown. - alexia + Fixed the farming contest summary not showing when the crop is buffed by Anita Talisman/Ring/Artifact. - hannibal2 ++ Fixed Farming Fortune Display not showing for non crop-specific tools. - hannibal2 ++ Fixed green thumb fortune in /ff to include Maeve. - hannibal2 ++ Fixed crops per second and time remaining not using the 100 base ff in their formula. - alexia #### Other Fixes @@ -71,6 +75,8 @@ + Fixed Sack Display sometimes not formatting a million correctly. - Hize + Fixed Estimated Item Value getting shown in stats breakdown menu. - hannibal2 + Fixed a bug with the ender chest and SkyHanni GUI editor. - hannibal2 ++ Fixed crimson isle faction icon in tab list showing twice and not going away fully when enabling the "hide faction" + option of advanced player list. - hannibal2 ### Technical Details diff --git a/build.gradle.kts b/build.gradle.kts index 8f7171956..5abe8290f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.21.1.Beta.7" +version = "0.21.1" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 8cf9cab27..f974d3d1d 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -332,7 +332,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.21.1.Beta.7", + version = "0.21.1", ) class SkyHanniMod { @Mod.EventHandler |