From 6a08ec0b6f35e7b353345e01e3e7882eddfe0d75 Mon Sep 17 00:00:00 2001 From: Ryder Belserion Date: Sat, 12 Oct 2024 18:05:23 -0400 Subject: [PATCH] [ci-skip] update CHANGELOG.md --- CHANGELOG.md | 26 +++++++++++++++++++++++++- build.gradle.kts | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11e9166..75d2729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,26 @@ +### Additions: +- Added the shield and the mace to the weapons category. +- Added {page} placeholder to inventory titles that have the ability to have multiple pages + - Previously, this was hard coded and could not be removed. + +### Changes: +- Re-coded how all inventories are handled internally which fixed a large chunk of known issues. +- Improved performance with inventory handling by reducing a lot of unnecessary bloat. + - We no longer check the display name, or inventory titles for information we need. +- Clear all caches on player quit. +- Register permissions on startup. +- Updated vital api, which uses a more performant version of the file manager. + ### Fixed: -- Lore not showing up on items in /ca \ No newline at end of file +- Fixed an issue where you couldn't use hex colors with buttons. +- Fixed an issue where pagination let you keep creating new pages. +- Fixed a spelling mistake in the config.yml, Refesh -> Refresh + - Old configurations will work, but please update in your `config.yml` +- Fixed an issue with blacklist materials. + +### What's in the pipeline? +- Configuration overhauls. +- MiniMessage Support. +- Ability to auction custom items. +- Ability to use items as currency. +- Anything on GitHub that is a feature request \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index c6306ce..f99ca1d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { val buildNumber: String? = System.getenv("BUILD_NUMBER") -rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "1.6.2" +rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "1.7" subprojects.filter { it.name != "api" }.forEach { it.project.version = rootProject.version