diff options
author | isXander <xandersmith2008@gmail.com> | 2023-05-25 22:13:16 +0100 |
---|---|---|
committer | isXander <xandersmith2008@gmail.com> | 2023-05-25 22:13:16 +0100 |
commit | c00071184f469664fe8c9cd2876c2818a80df2d9 (patch) | |
tree | 32d8cacae72cee2da26ba981b4aa135064431a92 | |
parent | b1909c9c820b16f9f3adda64d3332d867d6ef2f7 (diff) | |
download | YetAnotherConfigLib-c00071184f469664fe8c9cd2876c2818a80df2d9.tar.gz YetAnotherConfigLib-c00071184f469664fe8c9cd2876c2818a80df2d9.tar.bz2 YetAnotherConfigLib-c00071184f469664fe8c9cd2876c2818a80df2d9.zip |
Changelog
-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. |