zml

Results 88 comments of zml

Currently, Sponge's implementation ships classes for all phases of its runtime shaded into one jar. This works with careful development and the pre-Java Module loading system we currently use, but...

For some extra context, this issue is encountered after running a build of https://github.com/SpongePowered/Sponge/pull/3656, which works around an issue with Infernal Expansion's additions to the MobCategory enum. The relevant Mixin...

I can't seem to reproduce this result on the 4.4.0 snapshots using the following test: ```java @Test void testReplaceDoesNotReplaceOwnResult() { final Component start = Component.text("asdf1234"); final Component replaced = start.replaceText(builder...

This tag will also want a companion pr to https://github.com/KyoriPowered/adventure-docs.

As it stands, here are some pet peeves about what I've done so far: - The way SerializiableResolver.claimStyle and .claimComponent have relatively different layouts -- Style has an additional holder...

- Clarify some of the language around self-closing/unclosable tags, to better distinguish between the `` shorthand syntax, and cases where `` doesn't allow any children, so cannot be separately closed.

Looks good -- probably more useful for native implementations than `-platform` because -platform is more dynamic about which sources it adds pointers from. One thing i'd like to see is...

Yeah, I think this is too specialized as well. A general-purpose title.editAll(), or title.edit(titleConsumer, subtitleConsumer) might make more sense?

seems sensible yeah, a title builder would be a good addition

It would be good to implement some colour detection strategies from https://gist.github.com/XVilka/8346728 if it's possible to do without a hard dependency on JLine -- maybe some method like: ```java enum...