mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-23 20:12:34 +00:00
misc stuff (#99)
* Remove more mojang account references where they don't belong
I forgor 💀 to put this in the last PR
* Update README.md
* Change patreon button to "Support MultiMC" instead of "Support UltimMC"
* requested changes
This commit is contained in:
@@ -4,7 +4,9 @@
|
|||||||
|
|
||||||
## Pre-built binaries:
|
## Pre-built binaries:
|
||||||
- Windows / Linux / MacOS: https://nightly.link/AfoninZ/MultiMC5-Cracked/workflows/main/develop
|
- Windows / Linux / MacOS: https://nightly.link/AfoninZ/MultiMC5-Cracked/workflows/main/develop
|
||||||
To update the launcher delete the bin directory and the executable and replace with the newer one. Do not use inbuilt option.
|
|
||||||
|
To update the launcher replace all replaceable files and folders with the newer one from the above link. Do not use the inbuilt option, as that downloads the MultiMC launcher instead (this will be fixed in a future version).
|
||||||
|
|
||||||
|
|
||||||
## How to install and use
|
## How to install and use
|
||||||
1. Download pre-built binaries for your system.
|
1. Download pre-built binaries for your system.
|
||||||
@@ -17,7 +19,7 @@ To update the launcher delete the bin directory and the executable and replace w
|
|||||||
|
|
||||||
In case if you are using MacOS/Linux then additional step is to make a script `UltimMC` executable by using the command `chmod +x UltimMC` in the terminal
|
In case if you are using MacOS/Linux then additional step is to make a script `UltimMC` executable by using the command `chmod +x UltimMC` in the terminal
|
||||||
|
|
||||||
To remove the "localhost:nnnn" or "ElyBy" in the minecraft main menu and F3, add `-Dauthlibinjector.noShowServerName` to the java arguments.
|
To remove the "localhost:nnnn" or "ElyBy" in the minecraft main menu and F3, add `-Dauthlibinjector.noShowServerName` to the java arguments in UltimMC settings.
|
||||||
|
|
||||||
# Details about the ORIGINAL launcher below:
|
# Details about the ORIGINAL launcher below:
|
||||||
|
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ AccountListPage::AccountListPage(QWidget *parent)
|
|||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
ui->listView->setEmptyString(tr(
|
ui->listView->setEmptyString(tr(
|
||||||
"Welcome!\n"
|
"Welcome!\n"
|
||||||
"If you're new here, you can click the \"Add\" button to add your Mojang or Minecraft account."
|
"If you're new here, you can click the \"Add\" button to add your Mojang, local, or ElyBy account."
|
||||||
));
|
));
|
||||||
ui->listView->setEmptyMode(VersionListView::String);
|
ui->listView->setEmptyMode(VersionListView::String);
|
||||||
ui->listView->setContextMenuPolicy(Qt::CustomContextMenu);
|
ui->listView->setContextMenuPolicy(Qt::CustomContextMenu);
|
||||||
@@ -114,7 +114,7 @@ void AccountListPage::on_actionAddMojang_triggered()
|
|||||||
{
|
{
|
||||||
MinecraftAccountPtr account = LoginDialog::newAccount(
|
MinecraftAccountPtr account = LoginDialog::newAccount(
|
||||||
this,
|
this,
|
||||||
tr("Please enter your Mojang account email and password to add your account.")
|
tr("Please enter your account email and password to add your account.")
|
||||||
);
|
);
|
||||||
|
|
||||||
if (account != nullptr)
|
if (account != nullptr)
|
||||||
@@ -142,7 +142,7 @@ void AccountListPage::on_actionAddMicrosoft_triggered()
|
|||||||
}
|
}
|
||||||
MinecraftAccountPtr account = MSALoginDialog::newAccount(
|
MinecraftAccountPtr account = MSALoginDialog::newAccount(
|
||||||
this,
|
this,
|
||||||
tr("Please enter your Mojang account email and password to add your account.")
|
tr("Please enter your account email and password to add your account.")
|
||||||
);
|
);
|
||||||
|
|
||||||
if (account != nullptr)
|
if (account != nullptr)
|
||||||
|
|||||||
Reference in New Issue
Block a user