-
Notifications
You must be signed in to change notification settings - Fork 3
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
Updated Fabric Installer to 0.11.2 #3
Conversation
…ric API` to `Legacy Fabric API`, Updated to 0.11.2, Removed "standalone server installer" notice from server tab as it linked to FabricMC.
…er required. Additionally fixed the old snapshots manifest that was missing in a previous commit.
@@ -77,7 +77,7 @@ public static void main(String[] args) throws IOException { | |||
HANDLERS.forEach(handler -> System.out.printf("%s %s\n", handler.name().toLowerCase(), handler.cliHelp())); | |||
loadMetadata(); | |||
|
|||
System.out.printf("\nLatest Loader: %s\n", Main.LOADER_META.getLatestVersion(false).getVersion()); | |||
System.out.printf("\nLatest Version: %s\nLatest Loader: %s\n", GAME_VERSION_META.getLatestVersion(argumentParser.has("snapshot")).getVersion(), Main.LOADER_META.getLatestVersion(false).getVersion()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Latest Version is not applicable to Legacy Fabric.
@@ -41,7 +41,7 @@ public static void main(String[] args) throws IOException { | |||
System.setProperty("javax.net.ssl.trustStoreType", "WINDOWS-ROOT"); | |||
} | |||
|
|||
System.out.println("Loading LegacyFabric Installer: " + Main.class.getPackage().getImplementationVersion()); | |||
System.out.println("Loading Fabric Installer: " + Main.class.getPackage().getImplementationVersion()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why change everything else to LegacyFabric and revert back this one?
libraries.add(new Library(String.format("net.fabricmc:fabric-loader:%s", loaderVersion.name), null, loaderVersion.path)); | ||
libraries.add(new Library(String.format("net.fabricmc:intermediary:%s", gameVersion), "https://maven.fabricmc.net/", null)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why again? Legacy Fabric intermediaries are on our maven, not on official fabric one
I apologize for the overlooked changes, they should be fixed now. |
Legacy Fabric Installer