From 14b55844e3b7df9e9c1f625b4a10da64cb434f53 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 3 Oct 2022 14:15:47 +0200 Subject: released 1.12 - diana --- CHANGELOG.md | 3 ++- FEATURES.md | 1 + build.gradle.kts | 2 +- src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 2 +- 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; -- cgit