diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-05 01:45:04 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-05 01:45:04 +0200 |
commit | 5d894cca99cd9ac7198374ebc1fd1a93da4460cc (patch) | |
tree | 5bccd6539018eef59e4c5a5dfde6290b4cb15eed | |
parent | e4bcb21e10d7bb5f9fefbb3d826ea7182553b0eb (diff) | |
download | skyhanni-5d894cca99cd9ac7198374ebc1fd1a93da4460cc.tar.gz skyhanni-5d894cca99cd9ac7198374ebc1fd1a93da4460cc.tar.bz2 skyhanni-5d894cca99cd9ac7198374ebc1fd1a93da4460cc.zip |
0.21 Beta 2
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b70a15e7e..496eddf20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,11 +10,24 @@ ### Changes ++ Allowing clicks on the farming weight overlay to open the Farming Profile of you or the next person in the leaderboard, or manual reloading the farming weight. - hannibal2 ++ Added "Burning Desert" as a tarantula slayer area. - hannibal2 ++ Slayer features now work only when the slayer type matches the current SkyBlock area. - hannibal2 + ### Bug Fixes ++ The yaw/pitch display does no longer show scientific notations at small values. - hannibal2 ++ Fixed slayer RNG Meter problem to detect the selected item. - hannibal2 + #### Config + Fixed two typos in the config description. - Absterge ++ Fixed small typos in config. - Absterge + +#### Removed Features + ++ Removed **Duplicate Hider**. + + Hypixel now fixed the bug themselves and hides duplicate farming contests in the Jacob inventory. ## Version 0.20 diff --git a/build.gradle.kts b/build.gradle.kts index 968d6f530..3641c3e44 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.21.Beta.1" +version = "0.21.Beta.2" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index c8f5fc3d5..807669791 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -298,7 +298,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.21.Beta.1", + version = "0.21.Beta.2", ) class SkyHanniMod { @Mod.EventHandler |