From 12accac6c20b0344d958c14300e6e1b026f99594 Mon Sep 17 00:00:00 2001 From: Big-Iron-Cheems <52252627+Big-Iron-Cheems@users.noreply.github.com> Date: Sun, 1 Sep 2024 17:01:55 +0200 Subject: [PATCH] update Java links Also, hopefully improve old-versions guide --- src/routes/faq/installation/+page.md | 4 ++-- src/routes/faq/old-versions/+page.md | 21 +++++++++++++-------- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/src/routes/faq/installation/+page.md b/src/routes/faq/installation/+page.md index 31f5846..71706eb 100644 --- a/src/routes/faq/installation/+page.md +++ b/src/routes/faq/installation/+page.md @@ -22,8 +22,8 @@ If you have any concerns feel free to check the source code located within this To play Minecraft, you'll need to have the compatible version of the JRE (Java Runtime Environment). Usually Minecraft downloads it automatically, but if it doesn't, you should get it -from [Adoptium](https://adoptium.net/temurin/releases/?package=jre&version=17). -The current version used by Minecraft is v17. +from [Adoptium](https://adoptium.net/temurin/releases/?package=jre&version=21). +The current version used by Minecraft is Java 21. ### Unsafe cracked launchers diff --git a/src/routes/faq/old-versions/+page.md b/src/routes/faq/old-versions/+page.md index 32589df..eff0ded 100644 --- a/src/routes/faq/old-versions/+page.md +++ b/src/routes/faq/old-versions/+page.md @@ -39,17 +39,22 @@ Keep in mind that this is **not** recommended, as we do **not** provide support Any threads opened in our support forum regarding failed builds of older versions will be closed. If you encounter any issues, you will have to update to the latest version to get support. +To build Meteor for source, you'll need a **Java 21 JDK**, +you can get it from [Adoptium](https://adoptium.net/temurin/releases/?package=jdk&version=21). +
1. Go to the [Meteor GitHub repository](https://github.com/MeteorDevelopment/meteor-client). -2. Click the `master` button under the repository name, then click the `Tags` tab. -3. Click on a tag, this will bring you to the repository at the state of that tag. -4. Click the `gradle.properties` file, it will contain the version of Minecraft that tag is built for. -5. Once you have found the tag you want, go back, click the green `Code` button and then click `Download ZIP`. -6. Extract the zip file and open a terminal in the extracted folder. -7. Run `gradlew build` (or `.\gradlew build` on PowerShell). This will build Meteor and put the JAR file in - the `build/libs` folder. -8. Copy the `meteor-client-x.x.x.jar` file to your `mods` folder. +2. Click the `gradle.properties` file, it will contain the `minecraft_version` that the latest commit is built for. +3. Click the `master` button in the top left, then click the `Tags` tab. +4. Click on a tag, this will bring you to the repository at the state of that tag. +5. Checkout tags from newer to older until you find the one where `minecraft_version` matches the one you want. +6. Once you have found the tag you want, click the `Code` tab in the top left, + then click the green `Code` button on the right and select `Download ZIP`. +7. Extract the zip file and open a terminal in the extracted folder. +8. Run the `gradlew build` command (or `.\gradlew build` on PowerShell). + This will build Meteor and put the JAR file in the `build/libs` folder. +9. Copy the `meteor-client-x.x.x.jar` file to your `mods` folder.