-
Notifications
You must be signed in to change notification settings - Fork 33
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
Locator rewrite #112
Merged
Merged
Locator rewrite #112
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Last commit published: d65af2fe7676d16fa80e2beef52a1707ebb7a0b2. PR PublishingThe artifacts published by this PR:
Repository DeclarationIn order to use the artifacts published by the PR, add the following repository to your buildscript: repositories {
maven {
name 'Maven for PR #112' // https://github.com/neoforged/FancyModLoader/pull/112
url 'https://prmaven.neoforged.net/FancyModLoader/pr112'
content {
includeModule('net.neoforged.fancymodloader', 'earlydisplay')
includeModule('net.neoforged.fancymodloader', 'loader')
}
}
} |
Technici4n
force-pushed
the
locator-rewrite
branch
from
April 9, 2024 08:03
c084dcf
to
2a35c91
Compare
shartte
reviewed
Apr 12, 2024
loader/src/main/java/net/neoforged/neoforgespi/locating/IModProvider.java
Outdated
Show resolved
Hide resolved
shartte
reviewed
Apr 12, 2024
loader/src/main/java/net/neoforged/neoforgespi/locating/IModProvider.java
Outdated
Show resolved
Hide resolved
shartte
reviewed
Apr 12, 2024
loader/src/main/java/net/neoforged/neoforgespi/locating/IModProvider.java
Outdated
Show resolved
Hide resolved
shartte
force-pushed
the
locator-rewrite
branch
from
April 12, 2024 14:50
a6e2101
to
1b41c94
Compare
Technici4n
reviewed
Apr 12, 2024
Technici4n
reviewed
Apr 12, 2024
loader/src/main/java/net/neoforged/neoforgespi/locating/IModProvidersFacade.java
Outdated
Show resolved
Hide resolved
shartte
force-pushed
the
locator-rewrite
branch
4 times, most recently
from
April 16, 2024 23:53
fad1320
to
53f4350
Compare
lukebemish
reviewed
Apr 19, 2024
loader/src/main/java/net/neoforged/fml/loading/moddiscovery/InvalidModIdentifier.java
Outdated
Show resolved
Hide resolved
shartte
force-pushed
the
locator-rewrite
branch
from
April 20, 2024 10:57
59f88b5
to
d948210
Compare
lukebemish
reviewed
Apr 20, 2024
shartte
force-pushed
the
locator-rewrite
branch
2 times, most recently
from
April 20, 2024 17:41
bb2b143
to
ab90b46
Compare
shartte
force-pushed
the
locator-rewrite
branch
from
April 20, 2024 18:18
ab90b46
to
724f88f
Compare
@Matyrobbrt, this PR introduces breaking changes. Compatibility checks
|
…eporting of errors and warnings Co-authored-by: Matyrobbrt <[email protected]> Co-authored-by: Technici4n <[email protected]>
Closed
Technici4n
requested changes
Apr 28, 2024
loader/src/main/java/net/neoforged/fml/loading/ModDirTransformerDiscoverer.java
Show resolved
Hide resolved
...src/main/java/net/neoforged/fml/loading/moddiscovery/locators/JarInJarDependencyLocator.java
Show resolved
Hide resolved
loader/src/main/java/net/neoforged/fml/loading/moddiscovery/providers/ISystemModSource.java
Outdated
Show resolved
Hide resolved
loader/src/main/java/net/neoforged/fml/loading/moddiscovery/providers/NeoForgeDevProvider.java
Outdated
Show resolved
Hide resolved
Technici4n
reviewed
Apr 28, 2024
loader/src/main/java/net/neoforged/neoforgespi/locating/IModFileReader.java
Outdated
Show resolved
Hide resolved
loader/src/main/java/net/neoforged/neoforgespi/locating/ModFileDiscoveryAttributes.java
Outdated
Show resolved
Hide resolved
loader/src/test/java/net/neoforged/fml/loading/FMLLoaderTest.java
Outdated
Show resolved
Hide resolved
Su5eD
reviewed
Apr 28, 2024
loader/src/main/java/net/neoforged/neoforgespi/locating/IModFileCandidateLocator.java
Outdated
Show resolved
Hide resolved
Technici4n
approved these changes
May 1, 2024
Technici4n
approved these changes
May 1, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The overall goal of this PR is to make the code structure in the FML mod discovery process easier to follow and to support a better end-to-end error reporting experience for mod loading issues of all kinds.
To this end, the PR rewrites the mod discovery system with the following changes:
ModLoadingIssue
, and provide a single exception that can report one or more such issues up the call chain (ModLoadingException
)mods
folder)Update PR in NeoForge: neoforged/NeoForge#834