AlexIIL
AlexIIL
Uses https://github.com/QuiltMC/quilt-loader-bootstrap to allow loader to not be on the root classpath. (Although the bootstrap must be on the root classpath instead). This will make it easier for users to...
Since it's a bit rude to use fabric's for user installation. This affects the installer JSONs *and* the buildscript, although ideally we'd re-publish all older version jsons to replace `https://maven.fabricmc.net/`...
Since this can sometimes make diagnosing the cause for a crash much easier. To be clear, this does *not* affect crash reports generated by minecraft itself. Relevant information: - Free...
For example this crash doesn't include the config file that failed to read. While it should be possible for us to figure out which file this is by looking at...
This means: * Moving `org.quiltmc.loader.api.plugin.gui` to `org.quiltmd.loader.api.gui`, and changing their "Internal Hidden" status from `PLUGIN_API` to not be annotated at all (since it's in the API it's not restricted). *...
Specifically to allow some way of telling the ````IWireManager```` that two completely seperate pipe wires are connected. Original request by @multiplemonomials for https://github.com/tcooc/AdditionalPipesBC 's teleport pipes functionality. I'm not sure...
As requested by IceadReaper here: https://www.curseforge.com/minecraft/mc-mods/buildcraft-compat?comment=62
Use quilt's stitch instead, and generate quilt sided annotations instead of fabric's. See https://github.com/QuiltMC/quilt-loader/pull/63 for the relevant annotations, and https://github.com/QuiltMC/stitch/pull/5 for the relevant stitch changes.
[Rendered View](https://github.com/AlexIIL/rfcs/blob/alexiil-normalise-mod-ids/rfc/0070-normalise-mod-ids.md)
This is because [ServiceLoader.iterator](https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/ServiceLoader.html#iterator()) may attempt to load services during either hasNext or next, however only the second call was being caught correctly. Similar logic should probably be applied to...