mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-10-04 09:08:42 +00:00
Merge branch 'MultiMC:develop' into develop
This commit is contained in:
@@ -36,6 +36,8 @@ OPTIONS
|
||||
|
||||
*-v, --version*::
|
||||
Display program version and exit.
|
||||
*-a, --profile*='PROFILE'::
|
||||
Use the account specified by 'PROFILE' (only valid in combination with --launch).
|
||||
|
||||
EXIT STATUS
|
||||
-----------
|
||||
|
@@ -265,12 +265,18 @@ QList<QString> JavaUtils::FindJavaPaths()
|
||||
QList<JavaInstallPtr> ADOPTOPENJDK64s = this->FindJavaFromRegistryKey(
|
||||
KEY_WOW64_64KEY, "SOFTWARE\\AdoptOpenJDK\\JDK", "Path", "\\hotspot\\MSI");
|
||||
|
||||
// Adoptium (Eclipse)
|
||||
QList<JavaInstallPtr> ECLIPSEJDK32s = this->FindJavaFromRegistryKey(
|
||||
// Foundation (Eclipse)
|
||||
QList<JavaInstallPtr> FOUNDATIONJDK32s = this->FindJavaFromRegistryKey(
|
||||
KEY_WOW64_32KEY, "SOFTWARE\\Eclipse Foundation\\JDK", "Path", "\\hotspot\\MSI");
|
||||
QList<JavaInstallPtr> ECLIPSEJDK64s = this->FindJavaFromRegistryKey(
|
||||
QList<JavaInstallPtr> FOUNDATIONJDK64s = this->FindJavaFromRegistryKey(
|
||||
KEY_WOW64_64KEY, "SOFTWARE\\Eclipse Foundation\\JDK", "Path", "\\hotspot\\MSI");
|
||||
|
||||
// Adoptium (Eclipse)
|
||||
QList<JavaInstallPtr> ADOPTIUMJDK32s = this->FindJavaFromRegistryKey(
|
||||
KEY_WOW64_32KEY, "SOFTWARE\\Eclipse Adoptium\\JDK", "Path", "\\hotspot\\MSI");
|
||||
QList<JavaInstallPtr> ADOPTIUMJDK64s = this->FindJavaFromRegistryKey(
|
||||
KEY_WOW64_64KEY, "SOFTWARE\\Eclipse Adoptium\\JDK", "Path", "\\hotspot\\MSI");
|
||||
|
||||
// Microsoft
|
||||
QList<JavaInstallPtr> MICROSOFTJDK64s = this->FindJavaFromRegistryKey(
|
||||
KEY_WOW64_64KEY, "SOFTWARE\\Microsoft\\JDK", "Path", "\\hotspot\\MSI");
|
||||
@@ -297,7 +303,8 @@ QList<QString> JavaUtils::FindJavaPaths()
|
||||
java_candidates.append(JDK64s);
|
||||
java_candidates.append(NEWJDK64s);
|
||||
java_candidates.append(ADOPTOPENJDK64s);
|
||||
java_candidates.append(ECLIPSEJDK64s);
|
||||
java_candidates.append(FOUNDATIONJDK64s);
|
||||
java_candidates.append(ADOPTIUMJDK64s);
|
||||
java_candidates.append(MICROSOFTJDK64s);
|
||||
java_candidates.append(ZULU64s);
|
||||
java_candidates.append(LIBERICA64s);
|
||||
@@ -311,7 +318,8 @@ QList<QString> JavaUtils::FindJavaPaths()
|
||||
java_candidates.append(JDK32s);
|
||||
java_candidates.append(NEWJDK32s);
|
||||
java_candidates.append(ADOPTOPENJDK32s);
|
||||
java_candidates.append(ECLIPSEJDK32s);
|
||||
java_candidates.append(FOUNDATIONJDK32s);
|
||||
java_candidates.append(ADOPTIUMJDK32s);
|
||||
java_candidates.append(ZULU32s);
|
||||
java_candidates.append(LIBERICA32s);
|
||||
|
||||
|
@@ -2,12 +2,12 @@
|
||||
.\" Title: multimc
|
||||
.\" Author: [see the "AUTHORS" section]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 10/21/2021
|
||||
.\" Date: 11/07/2021
|
||||
.\" Manual: \ \&
|
||||
.\" Source: \ \&
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "MULTIMC" "1" "10/21/2021" "\ \&" "\ \&"
|
||||
.TH "MULTIMC" "1" "11/07/2021" "\ \&" "\ \&"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
@@ -66,6 +66,13 @@ Display help text and exit\&.
|
||||
.RS 4
|
||||
Display program version and exit\&.
|
||||
.RE
|
||||
.PP
|
||||
\fB\-a, \-\-profile\fR=\fIPROFILE\fR
|
||||
.RS 4
|
||||
Use the account specified by
|
||||
\fIPROFILE\fR
|
||||
(only valid in combination with \-\-launch)\&.
|
||||
.RE
|
||||
.SH "EXIT STATUS"
|
||||
.PP
|
||||
\fB0\fR
|
||||
|
Reference in New Issue
Block a user