aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md3
-rw-r--r--FEATURES.md1
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java2
4 files changed, 5 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index aae801438..6dbf3ca5d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,11 +1,12 @@
# SkyHanni - Change Log
-## Version 0.11.1
+## Version 0.12
### Diana
+ Show burrows near you.
+ Uses Soopy's Guess Logic to find the next burrow. Does not require SoopyV2 or chat triggers to be installed.
+ Let Soopy guess the next burrow location for you.
++ Warps to the nearest warp point on the hub, if closer to the next burrow.
### Crimson Isle
+ Option to remove the wrong blaze slayer dagger messages from chat.
diff --git a/FEATURES.md b/FEATURES.md
index 94527a7b7..d4d83c95c 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -122,6 +122,7 @@
+ Show burrows near you.
+ Uses Soopy's Guess Logic to find the next burrow. Does not require SoopyV2 or chat triggers to be installed.
+ Show the way from one burrow to another smoothly.
++ Warps to the nearest warp point on the hub, if closer to the next burrow.
## Marked Players
+ Adding or removing players as marked with command /shmarkplayer
diff --git a/build.gradle.kts b/build.gradle.kts
index f859f9c7d..53f61a2ad 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -10,7 +10,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.11.1"
+version = "0.12"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java
index 21b5bc1d7..9e736681b 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java
@@ -61,7 +61,7 @@ import java.util.List;
public class SkyHanniMod {
public static final String MODID = "skyhanni";
- public static final String VERSION = "0.11.1";
+ public static final String VERSION = "0.12";
public static Features feature;