-
-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allowed the (knot) launcher to give the intended namespace #435
base: develop
Are you sure you want to change the base?
Commits on May 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d963772 - Browse repository at this point
Copy the full SHA d963772View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12cad12 - Browse repository at this point
Copy the full SHA 12cad12View commit details
Commits on Aug 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f13a5fe - Browse repository at this point
Copy the full SHA f13a5feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5cdfbae - Browse repository at this point
Copy the full SHA 5cdfbaeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 380014e - Browse repository at this point
Copy the full SHA 380014eView commit details -
Configuration menu - View commit details
-
Copy full SHA for cab7c29 - Browse repository at this point
Copy the full SHA cab7c29View commit details -
Configuration menu - View commit details
-
Copy full SHA for 702cab7 - Browse repository at this point
Copy the full SHA 702cab7View commit details -
Added support for 1.21.2 in McVersionLookup (#964)
* Added support for 1.21.2 in McVersionLookup * Update minecraft/src/main/java/net/fabricmc/loader/impl/game/minecraft/McVersionLookup.java Co-authored-by: modmuss <[email protected]> --------- Co-authored-by: modmuss <[email protected]> (cherry picked from commit 991d38d8a62e89f00aa3038b52f428f95b7d44bc)
Configuration menu - View commit details
-
Copy full SHA for 7c662ec - Browse repository at this point
Copy the full SHA 7c662ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for edeb7b4 - Browse repository at this point
Copy the full SHA edeb7b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 379172d - Browse repository at this point
Copy the full SHA 379172dView commit details -
Hardcode 0.10.0 mixin compat to Quilt mods for now
This should work as a fix for now
Configuration menu - View commit details
-
Copy full SHA for bcd60aa - Browse repository at this point
Copy the full SHA bcd60aaView commit details -
Configuration menu - View commit details
-
Copy full SHA for d2e4326 - Browse repository at this point
Copy the full SHA d2e4326View commit details
Commits on Aug 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7ed7914 - Browse repository at this point
Copy the full SHA 7ed7914View commit details -
Configuration menu - View commit details
-
Copy full SHA for b8e7ad0 - Browse repository at this point
Copy the full SHA b8e7ad0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89b42d3 - Browse repository at this point
Copy the full SHA 89b42d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for ddfd8c8 - Browse repository at this point
Copy the full SHA ddfd8c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 010f14c - Browse repository at this point
Copy the full SHA 010f14cView commit details
Commits on Aug 23, 2024
-
Merge Pull Request QuiltMC#448 (Sync with fabric Loader 0.16.2)
Manually merged to not loose history. Also includes a changelog, and new loader beta version
Configuration menu - View commit details
-
Copy full SHA for 9661e47 - Browse repository at this point
Copy the full SHA 9661e47View commit details
Commits on Aug 24, 2024
-
Include the list of options and rules when the solver system returns …
…duplicate mods after solving.
Configuration menu - View commit details
-
Copy full SHA for 02c2a66 - Browse repository at this point
Copy the full SHA 02c2a66View commit details
Commits on Aug 29, 2024
-
Fix the pre-processor accidently removing the output rule when mergin…
…g rules that affect the same options.
Configuration menu - View commit details
-
Copy full SHA for be5ac16 - Browse repository at this point
Copy the full SHA be5ac16View commit details -
Configuration menu - View commit details
-
Copy full SHA for b0606ef - Browse repository at this point
Copy the full SHA b0606efView commit details
Commits on Sep 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 46ab673 - Browse repository at this point
Copy the full SHA 46ab673View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d93dc0 - Browse repository at this point
Copy the full SHA 9d93dc0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8931e70 - Browse repository at this point
Copy the full SHA 8931e70View commit details
Commits on Sep 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 18658ab - Browse repository at this point
Copy the full SHA 18658abView commit details
Commits on Sep 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3379b2e - Browse repository at this point
Copy the full SHA 3379b2eView commit details
Commits on Oct 9, 2024
-
Port to mapping-io (Glitch's Version) (QuiltMC#432)
* Port to mapping-io (Glitch's Version) This is step 0 in adding the ability for Loader to use alternative intermediates for mods, or use something like mojmaps at runtime. This commit migrates the pre-existing MappingConfiguration to use mapping-io, but doesn't do much to actually refactor Loader to take advantage of mapping-io's strengths. This PR moves a few dependencies to be shadowed that Floader moved as well. Tiny Remapper was required to be moved to work with mapping-io, tiny mapping parser was removed by upstream, and I just decided to bring AccessWidener in line with upstream as well. (PS: I know QMT exists-ish, but it's not finished and I want to work on a modloader, not a mappings parser. When and if QMT is finished, we can evaluate migrating to it, but the potential to use a first-party library later shouldn't prevent us from improving Loader today) * Fix "duplicate class" spam from Tiny Remapper in RuntimeModRemapper TR eagerly opens nested ZIP files and flattens them, and this slightly bizarre behavior causes lots of issues when trying to remap mods that include JiJ candidates. To mitigate this, we create a read-only view of *only* the `.class` files. This has minimal memory impact as the FS is copy-on-write, so it is just a big map of file paths. * Update actions for Java 21 * Update actions for Java 21 take 2 * Mount instead of CoW * Remove Proguard Proguard is magically adding SequencedCollection to the LVT of MemoryMappingTree.accept in mapping-io. We couldn't find a minimal reproduction, so we're just going to move away from it for now. * Fix mods that need remapping, but don't contain any class files, causing the remapper to crash because the mod directory didn't exist. Also comment out the DedicatedServerOnly annotation on TestMixinGuiHelper, because we're not testing package-stripping annotations any more. This allows us to run the test mod. * Mount temporary files as READ_ONLY --------- Co-authored-by: AlexIIL <[email protected]> Co-authored-by: AlexIIL <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fe82575 - Browse repository at this point
Copy the full SHA fe82575View commit details -
Configuration menu - View commit details
-
Copy full SHA for 707a497 - Browse repository at this point
Copy the full SHA 707a497View commit details -
Configuration menu - View commit details
-
Copy full SHA for c3bf5ce - Browse repository at this point
Copy the full SHA c3bf5ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for a0c6a81 - Browse repository at this point
Copy the full SHA a0c6a81View commit details -
Configuration menu - View commit details
-
Copy full SHA for 068abbd - Browse repository at this point
Copy the full SHA 068abbdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 092bb23 - Browse repository at this point
Copy the full SHA 092bb23View commit details -
Configuration menu - View commit details
-
Copy full SHA for 514d626 - Browse repository at this point
Copy the full SHA 514d626View commit details
Commits on Oct 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 123962c - Browse repository at this point
Copy the full SHA 123962cView commit details