diff options
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | changelogs/3.0.0-beta.3+1.20.md | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 82dd62f..18cf286 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ architectury { minecraft = libs.versions.minecraft.get() } -version = "3.0.0-beta.2+1.20" +version = "3.0.0-beta.3+1.20" val isBeta = "beta" in version.toString() val changelogText = rootProject.file("changelogs/${project.version}.md").takeIf { it.exists() }?.readText() ?: "No changelog provided." diff --git a/changelogs/3.0.0-beta.3+1.20.md b/changelogs/3.0.0-beta.3+1.20.md new file mode 100644 index 0000000..b232cb0 --- /dev/null +++ b/changelogs/3.0.0-beta.3+1.20.md @@ -0,0 +1,12 @@ +# YetAnotherConfigLib 3.0 Beta 3 + +## Changes + +- Removed being able to set description name. Option or group name is used. +- Added new description image overload `.image(image, u, v, width, height, textureWidth, textureHeight)` +- Images are now loaded synchronously off-thread. +- Added javadoc to all new API things. + +## Bug Fixes + +- Fix arrow key navigation not being able to focus on the button actions. |