diff --git a/Changelog.md b/Changelog.md index 374b7f7ea..64fe3ca7c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,31 @@ Changelog for versions since 2.0.0. +## 2.0.5 + +### New Features +- Add track and use_track options to sources menu + - Used to rearrange the source items in any way rather than just a rectangle +- Add custom_model_data option to source item filter meta + - To use, add it to a custom XP source item filter section for filtering a specific model data + +### Changes +- Update messages and move identical messages across languages to global.yml + +### Bug Fixes +- Fix Regions API errors +- Fix hex colors not working in titles and boss bar +- Fix trailing color codes not working in stat symbols +- Fix user skill levels being below start_level when increased +- Fix multiplier command displaying incorrect values +- Fix newlines not working in reward chat messages +- Fix Retrieval detecting tridents as arrows +- Fix skill reset command not using config start_level +- Fix Lightning Blade being activated by thorns +- Fix Alchemist replacing lore and not working for custom effects +- Fix hex colors not working in skill messages +- Fix errors with WorldGuard 7.1 + ## 2.0.4 ### New Features diff --git a/bukkit/build.gradle.kts b/bukkit/build.gradle.kts index 03af69ccf..76e9e6d99 100644 --- a/bukkit/build.gradle.kts +++ b/bukkit/build.gradle.kts @@ -28,7 +28,9 @@ dependencies { implementation("co.aikar:acf-paper:0.5.1-SNAPSHOT") implementation("de.tr7zw:item-nbt-api:2.12.2") implementation("org.bstats:bstats-bukkit:3.0.2") - implementation("com.github.Archy-X:Slate:edfdfda629") + implementation("com.github.Archy-X:Slate:682ec092e6") { + exclude("org.yaml", "snakeyaml") + } // implementation(files("../../Slate/build/libs/Slate-1.0.0.jar")) implementation("net.kyori:adventure-text-minimessage:4.16.0") implementation("net.kyori:adventure-platform-bukkit:4.3.2") diff --git a/bukkit/src/main/resources/plugin.yml b/bukkit/src/main/resources/plugin.yml index e7ea0381d..c01fa589a 100644 --- a/bukkit/src/main/resources/plugin.yml +++ b/bukkit/src/main/resources/plugin.yml @@ -1,5 +1,5 @@ name: AuraSkills -version: 2.0.4 +version: 2.0.5 main: dev.aurelium.auraskills.bukkit.AuraSkills description: The ultra-versatile RPG skills plugin author: Archyx diff --git a/gradle.properties b/gradle.properties index ac1659887..01770419f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -projectVersion = 2.0.4 \ No newline at end of file +projectVersion = 2.0.5 \ No newline at end of file