Skip to content

Commit

Permalink
Feat[jre_unpack]: add Jre 21 path to the launcher and .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
artdeell committed Jun 14, 2024
1 parent b12429b commit 903e813
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/*/build
app_pojavlauncher/src/main/assets/components/jre
/app_pojavlauncher/src/main/assets/components/jre-new/
/app_pojavlauncher/src/main/assets/components/jre-21/
local.properties
.idea/
app_pojavlauncher/.cxx/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ private static void showRuntimeFail(Activity activity, JMinecraftVersionList.Ver
}

private enum InternalRuntime {
JRE_17(17, "Internal-17", "components/jre-new");
JRE_17(17, "Internal-17", "components/jre-new"),
JRE_21(21, "Internal-21", "components/jre-21");
public final int majorVersion;
public final String name;
public final String path;
Expand Down

0 comments on commit 903e813

Please sign in to comment.