aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-10-03 14:15:47 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-10-03 14:15:47 +0200
commit14b55844e3b7df9e9c1f625b4a10da64cb434f53 (patch)
treefdd821b564fbfabefea9abe2cf849ee61b59fc39
parentd64d56ed113ef85d408909ddf0cfe303ef668625 (diff)
downloadskyhanni-14b55844e3b7df9e9c1f625b4a10da64cb434f53.tar.gz
skyhanni-14b55844e3b7df9e9c1f625b4a10da64cb434f53.tar.bz2
skyhanni-14b55844e3b7df9e9c1f625b4a10da64cb434f53.zip
released 1.12 - diana
-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;