YetAnotherConfigLib 3.0 Beta 5
API Changes
OptionDescription.Builder#descriptionhas been renamed totext, to make it more clear as it used to look like:.description(OptionDescription.createBuilder() .description(Component.literal("This is some text")) .build())
ListOption.createBuildernow no longer takes a class parameter, to match withOption. This means you can no longer
doListOption.createBuilder(String.class), instead you should doListOption.<String>createBuilder().
Bug Fixes
- Fixed option list entries sometimes appearing on top of the navbar.