blob: e28b36dbaad86fff5c7cf177ff0a0a348a4e9eba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# YetAnotherConfigLib 3.0 Beta 5
## API Changes
- `OptionDescription.Builder#description` has been renamed to `text`, to make it more clear as it used to look like:
```java
.description(OptionDescription.createBuilder()
.description(Component.literal("This is some text"))
.build())
```
- `ListOption.createBuilder` now no longer takes a class parameter, to match with `Option`. This means you can no longer
do `ListOption.createBuilder(String.class)`, instead you should do `ListOption.<String>createBuilder()`.
## Bug Fixes
- Fixed option list entries sometimes appearing on top of the navbar.
|