aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-02 18:47:08 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-02 18:47:08 +0200
commita36437c604a8eee5f15c26042c54ad8a41520fa0 (patch)
tree02aea72902883d5b4c63be97718a04423b520a65
parente5ca167c6c46ec069e63682ff64fa9769ac62637 (diff)
downloadskyhanni-a36437c604a8eee5f15c26042c54ad8a41520fa0.tar.gz
skyhanni-a36437c604a8eee5f15c26042c54ad8a41520fa0.tar.bz2
skyhanni-a36437c604a8eee5f15c26042c54ad8a41520fa0.zip
0.20 Beta 1
-rw-r--r--CHANGELOG.md25
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
3 files changed, 25 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b447ef5f4..fe7a0b933 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,27 @@
# SkyHanni - Change Log
-## Version 0.19 (2023-08-01)
+## Version 0.20 (Unreleased)
+
+### New Features
++ Replacing command `/warp is` with `/is`.
++ Added command `/shbingotoggle` to toggle the bingo card.
++ Added option to disable quick bingo card toggle with sneaking.
++ **King Talisman Helper**
+ + Show kings you have not talked to yet, and when the next missing king will appear.
++ **Harp Keybinds** - NetheriteMiner
+ + In Melodys Harp, press buttons with your number row on the keyboard instead of clicking.
++ **Ender Node Tracker** - ericpretzel
+ + Tracks items and profit obtained from mining ender nodes and killing normal endermen.
+
+###
++ Added option to disable quick bingo card toggle with sneaking.
++ Made damage indicator more performant. - nea
++ Ghost bestiary update. - HiZe
+
+### Fixes
++ Removed `Simple Carrot Candy` from composter overlay.
+
+## Version 0.19
### Rift Features
+ Added **Rift Timer**
@@ -809,4 +830,4 @@
- Added item ability cooldown background display (over the slot, work in progress)
- Added Ashfang freeze cooldown (when you get hit by “anti ability” and slowness effect)
- Changed “hot clickable items” to show items again, but only with dark gray overlay. Looks nicer
-- Made the GitHub repository public
+- Made the GitHub repository public \ No newline at end of file
diff --git a/build.gradle.kts b/build.gradle.kts
index 3f5d65d20..e1928b949 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -10,7 +10,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.19"
+version = "0.20.Beta.1"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 3106933b4..15baf702d 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -121,7 +121,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.19",
+ version = "0.20.Beta.1",
)
class SkyHanniMod {
@Mod.EventHandler