mirror of
https://codeberg.org/yuzu-emu/yuzu.git
synced 2025-12-16 12:09:04 +00:00
Remove quickstart guide references to address legal concerns
- Removed "Open Quickstart Guide" menu item and associated functions - Replaced ROM loading error popup containing quickstart guide links with a neutral disclaimer stating the software is provided as-is without warranty or support - This change helps minimize legal liability by avoiding specific instructional content while directing users to community resources for assistance
This commit is contained in:
parent
26f0251b93
commit
481bf648aa
@ -1528,7 +1528,6 @@ void GMainWindow::ConnectMenuEvents() {
|
|||||||
connect_menu(ui->action_Pause, &GMainWindow::OnPauseContinueGame);
|
connect_menu(ui->action_Pause, &GMainWindow::OnPauseContinueGame);
|
||||||
connect_menu(ui->action_Stop, &GMainWindow::OnStopGame);
|
connect_menu(ui->action_Stop, &GMainWindow::OnStopGame);
|
||||||
connect_menu(ui->action_Report_Compatibility, &GMainWindow::OnMenuReportCompatibility);
|
connect_menu(ui->action_Report_Compatibility, &GMainWindow::OnMenuReportCompatibility);
|
||||||
connect_menu(ui->action_Open_Quickstart_Guide, &GMainWindow::OnOpenQuickstartGuide);
|
|
||||||
connect_menu(ui->action_Open_FAQ, &GMainWindow::OnOpenFAQ);
|
connect_menu(ui->action_Open_FAQ, &GMainWindow::OnOpenFAQ);
|
||||||
connect_menu(ui->action_Restart, &GMainWindow::OnRestartGame);
|
connect_menu(ui->action_Restart, &GMainWindow::OnRestartGame);
|
||||||
connect_menu(ui->action_Configure, &GMainWindow::OnConfigure);
|
connect_menu(ui->action_Configure, &GMainWindow::OnConfigure);
|
||||||
@ -1834,9 +1833,7 @@ bool GMainWindow::LoadROM(const QString& filename, Service::AM::FrontendAppletPa
|
|||||||
tr("Error while loading ROM! %1", "%1 signifies a numeric error code.")
|
tr("Error while loading ROM! %1", "%1 signifies a numeric error code.")
|
||||||
.arg(QString::fromStdString(error_code));
|
.arg(QString::fromStdString(error_code));
|
||||||
const auto description =
|
const auto description =
|
||||||
tr("%1<br>Please follow <a href='https://yuzu-emu.org/help/quickstart/'>the "
|
tr("%1<br>This software is provided as-is without any warranty or support.<br>Please refer to community resources or documentation for assistance.",
|
||||||
"yuzu quickstart guide</a> to redump your files.<br>You can refer "
|
|
||||||
"to the yuzu wiki</a> or the yuzu Discord</a> for help.",
|
|
||||||
"%1 signifies an error string.")
|
"%1 signifies an error string.")
|
||||||
.arg(QString::fromStdString(
|
.arg(QString::fromStdString(
|
||||||
GetResultStatusString(static_cast<Loader::ResultStatus>(error_id))));
|
GetResultStatusString(static_cast<Loader::ResultStatus>(error_id))));
|
||||||
@ -3561,10 +3558,6 @@ void GMainWindow::OpenURL(const QUrl& url) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void GMainWindow::OnOpenQuickstartGuide() {
|
|
||||||
OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/help/quickstart/")));
|
|
||||||
}
|
|
||||||
|
|
||||||
void GMainWindow::OnOpenFAQ() {
|
void GMainWindow::OnOpenFAQ() {
|
||||||
OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/wiki/faq/")));
|
OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/wiki/faq/")));
|
||||||
}
|
}
|
||||||
|
|||||||
@ -340,7 +340,6 @@ private slots:
|
|||||||
void OnStopGame();
|
void OnStopGame();
|
||||||
void OnPrepareForSleep(bool prepare_sleep);
|
void OnPrepareForSleep(bool prepare_sleep);
|
||||||
void OnMenuReportCompatibility();
|
void OnMenuReportCompatibility();
|
||||||
void OnOpenQuickstartGuide();
|
|
||||||
void OnOpenFAQ();
|
void OnOpenFAQ();
|
||||||
/// Called whenever a user selects a game in the game list widget.
|
/// Called whenever a user selects a game in the game list widget.
|
||||||
void OnGameListLoadFile(QString game_path, u64 program_id);
|
void OnGameListLoadFile(QString game_path, u64 program_id);
|
||||||
|
|||||||
@ -373,11 +373,6 @@
|
|||||||
<string>Open &Mods Page</string>
|
<string>Open &Mods Page</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="action_Open_Quickstart_Guide">
|
|
||||||
<property name="text">
|
|
||||||
<string>Open &Quickstart Guide</string>
|
|
||||||
</property>
|
|
||||||
</action>
|
|
||||||
<action name="action_Open_FAQ">
|
<action name="action_Open_FAQ">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&FAQ</string>
|
<string>&FAQ</string>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user