mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
Replace some URLs
This commit is contained in:
parent
17512f2a28
commit
d37b9497a2
4 changed files with 6 additions and 6 deletions
|
@ -19,7 +19,7 @@ about_dialog::about_dialog(QWidget* parent) : QDialog(parent), ui(new Ui::about_
|
||||||
R"(
|
R"(
|
||||||
<p style="white-space: nowrap;">
|
<p style="white-space: nowrap;">
|
||||||
RPCS3 is an open-source Sony PlayStation 3 emulator and debugger.<br>
|
RPCS3 is an open-source Sony PlayStation 3 emulator and debugger.<br>
|
||||||
It is written in C++ for Windows, Linux, FreeBSD and MacOS funded with <a %0 href="https://www.patreon.com/Nekotekina">Patreon</a>.<br>
|
It is written in C++ for Windows, Linux, FreeBSD and MacOS funded with <a %0 href="https://rpcs3.net/patreon">Patreon</a>.<br>
|
||||||
Our developers and contributors are always working hard to ensure this project is the best that it can be.<br>
|
Our developers and contributors are always working hard to ensure this project is the best that it can be.<br>
|
||||||
There are still plenty of implementations to make and optimizations to do.
|
There are still plenty of implementations to make and optimizations to do.
|
||||||
</p>
|
</p>
|
||||||
|
@ -28,9 +28,9 @@ about_dialog::about_dialog(QWidget* parent) : QDialog(parent), ui(new Ui::about_
|
||||||
|
|
||||||
// Events
|
// Events
|
||||||
connect(ui->gitHub, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://www.github.com/RPCS3")); });
|
connect(ui->gitHub, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://www.github.com/RPCS3")); });
|
||||||
connect(ui->website, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://www.rpcs3.net")); });
|
connect(ui->website, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://rpcs3.net")); });
|
||||||
connect(ui->forum, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://forums.rpcs3.net")); });
|
connect(ui->forum, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://forums.rpcs3.net")); });
|
||||||
connect(ui->patreon, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://www.patreon.com/Nekotekina")); });
|
connect(ui->patreon, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://rpcs3.net/patreon")); });
|
||||||
connect(ui->discord, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://discord.me/RPCS3")); });
|
connect(ui->discord, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://discord.me/RPCS3")); });
|
||||||
connect(ui->wiki, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://wiki.rpcs3.net/index.php?title=Main_Page")); });
|
connect(ui->wiki, &QPushButton::clicked, [] { QDesktopServices::openUrl(QUrl("https://wiki.rpcs3.net/index.php?title=Main_Page")); });
|
||||||
connect(ui->close, &QPushButton::clicked, this, &QWidget::close);
|
connect(ui->close, &QPushButton::clicked, this, &QWidget::close);
|
||||||
|
|
|
@ -3078,7 +3078,7 @@ void main_window::CreateConnects()
|
||||||
|
|
||||||
connect(ui->supportAct, &QAction::triggered, this, [this]
|
connect(ui->supportAct, &QAction::triggered, this, [this]
|
||||||
{
|
{
|
||||||
QDesktopServices::openUrl(QUrl("https://www.patreon.com/Nekotekina"));
|
QDesktopServices::openUrl(QUrl("https://rpcs3.net/patreon"));
|
||||||
});
|
});
|
||||||
|
|
||||||
connect(ui->aboutAct, &QAction::triggered, this, [this]
|
connect(ui->aboutAct, &QAction::triggered, this, [this]
|
||||||
|
|
|
@ -227,7 +227,7 @@ bool update_manager::handle_json(bool automatic, bool check_only, bool auto_acce
|
||||||
.arg(localized.GetVerboseTimeByMs(std::abs(diff_msec), true));
|
.arg(localized.GetVerboseTimeByMs(std::abs(diff_msec), true));
|
||||||
}
|
}
|
||||||
|
|
||||||
m_update_message = m_update_message.arg("<br>You can empower our project at <a href=\"https://patreon.com/Nekotekina\">RPCS3 Patreon</a><br>");
|
m_update_message = m_update_message.arg("<br>You can empower our project at <a href=\"https://rpcs3.net/patreon\">RPCS3 Patreon</a>.<br>");
|
||||||
|
|
||||||
m_request_url = latest[os]["download"].toString().toStdString();
|
m_request_url = latest[os]["download"].toString().toStdString();
|
||||||
m_expected_hash = latest[os]["checksum"].toString().toStdString();
|
m_expected_hash = latest[os]["checksum"].toString().toStdString();
|
||||||
|
|
|
@ -32,7 +32,7 @@ welcome_dialog::welcome_dialog(std::shared_ptr<gui_settings> gui_settings, bool
|
||||||
R"(
|
R"(
|
||||||
<p style="white-space: nowrap;">
|
<p style="white-space: nowrap;">
|
||||||
RPCS3 is an open-source Sony PlayStation 3 emulator and debugger.<br>
|
RPCS3 is an open-source Sony PlayStation 3 emulator and debugger.<br>
|
||||||
It is written in C++ for Windows, Linux, FreeBSD and MacOS funded with <a %0 href="https://www.patreon.com/Nekotekina">Patreon</a>.<br>
|
It is written in C++ for Windows, Linux, FreeBSD and MacOS funded with <a %0 href="https://rpcs3.net/patreon">Patreon</a>.<br>
|
||||||
Our developers and contributors are always working hard to ensure this project is the best that it can be.<br>
|
Our developers and contributors are always working hard to ensure this project is the best that it can be.<br>
|
||||||
There are still plenty of implementations to make and optimizations to do.
|
There are still plenty of implementations to make and optimizations to do.
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue