Florian Spieß
Florian Spieß
@seailz you can use the current PR through jitpack. This is explained in [our wiki](https://jda.wiki/using-jda/using-new-features/). Please only use the comments of pull requests for discussion of the implementation and feedback.
@CreaCloudz Discord blocks you from using it because its not released.
Whats the status on this?
I've added [SplitUtil](https://github.com/DV8FromTheWorld/JDA/blob/feature/message-rework/src/main/java/net/dv8tion/jda/api/utils/SplitUtil.java) as a replacement for [MessageBuilder#buildAll](https://github.com/DV8FromTheWorld/JDA/blob/master/src/main/java/net/dv8tion/jda/api/MessageBuilder.java#L1114). Example: ```java String longtext = ...; for (String part : SplitUtil.split(longtext, 2000, true, SplitUtil.Strategy.NEWLINE, SplitUtil.Strategy.ANYWHERE)) { channel.sendMessage(part).queue(); } ``` This will try...
I downgraded the gateway API to v9 again, since v10 seems to unnecessarily enforce the content intent before the deadline. You will still get a warning if you disable the...
Should we add unit tests for this?
Could you rebase this on `master`?
There is an open pull request for this: #2047
Could we allow to use `setRequiredRange` for these as well? https://github.com/DV8FromTheWorld/JDA/blob/master/src/main/java/net/dv8tion/jda/api/interactions/commands/build/OptionData.java#L559
> something like OptionData#setRequiredLengthRange? no, just the same method with a conditional check for type.