From daef3b643a699da598a3acb087dc072abfc5426e Mon Sep 17 00:00:00 2001 From: Luke Warner <65521430+LukeWarnut@users.noreply.github.com> Date: Fri, 4 Oct 2024 10:22:56 -0400 Subject: [PATCH] Replace Github links --- src/Ryujinx.Gtk3/UI/Widgets/UserErrorDialog.cs | 2 +- src/Ryujinx.Gtk3/UI/Windows/AboutWindow.cs | 6 +++--- .../ApplicationProxy/IApplicationFunctions.cs | 2 +- src/Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs | 2 +- .../HOS/Services/Ssl/BuiltInCertificateManager.cs | 2 +- .../HOS/Services/Time/TimeZone/TimeZoneContentManager.cs | 2 +- src/Ryujinx/UI/Helpers/UserErrorDialog.cs | 2 +- src/Ryujinx/UI/Windows/AboutWindow.axaml | 6 +++--- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/Ryujinx.Gtk3/UI/Widgets/UserErrorDialog.cs b/src/Ryujinx.Gtk3/UI/Widgets/UserErrorDialog.cs index f0b55cd8b..fe783a87e 100644 --- a/src/Ryujinx.Gtk3/UI/Widgets/UserErrorDialog.cs +++ b/src/Ryujinx.Gtk3/UI/Widgets/UserErrorDialog.cs @@ -6,7 +6,7 @@ namespace Ryujinx.UI.Widgets { internal class UserErrorDialog : MessageDialog { - private const string SetupGuideUrl = "https://github.com/Ryujinx/Ryujinx/wiki/Ryujinx-Setup-&-Configuration-Guide"; + private const string SetupGuideUrl = "https://github.com/LukeWarnut/Ryujinx2/wiki/Ryujinx-Setup-&-Configuration-Guide"; private const int OkResponseId = 0; private const int SetupGuideResponseId = 1; diff --git a/src/Ryujinx.Gtk3/UI/Windows/AboutWindow.cs b/src/Ryujinx.Gtk3/UI/Windows/AboutWindow.cs index f4bb533c3..67a694193 100644 --- a/src/Ryujinx.Gtk3/UI/Windows/AboutWindow.cs +++ b/src/Ryujinx.Gtk3/UI/Windows/AboutWindow.cs @@ -59,7 +59,7 @@ private void PatreonButton_Pressed(object sender, ButtonPressEventArgs args) private void GitHubButton_Pressed(object sender, ButtonPressEventArgs args) { - OpenHelper.OpenUrl("https://github.com/Ryujinx/Ryujinx"); + OpenHelper.OpenUrl("https://github.com/LukeWarnut/Ryujinx2"); } private void DiscordButton_Pressed(object sender, ButtonPressEventArgs args) @@ -74,12 +74,12 @@ private void TwitterButton_Pressed(object sender, ButtonPressEventArgs args) private void ContributorsButton_Pressed(object sender, ButtonPressEventArgs args) { - OpenHelper.OpenUrl("https://github.com/Ryujinx/Ryujinx/graphs/contributors?type=a"); + OpenHelper.OpenUrl("https://github.com/LukeWarnut/Ryujinx2/graphs/contributors?type=a"); } private void ChangelogButton_Pressed(object sender, ButtonPressEventArgs args) { - OpenHelper.OpenUrl("https://github.com/Ryujinx/Ryujinx/wiki/Changelog#ryujinx-changelog"); + OpenHelper.OpenUrl("https://github.com/LukeWarnut/Ryujinx2/wiki/Changelog#ryujinx-changelog"); } } } diff --git a/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/IApplicationFunctions.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/IApplicationFunctions.cs index 9a7fdcc16..7b736c1a4 100644 --- a/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/IApplicationFunctions.cs +++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/IApplicationFunctions.cs @@ -659,7 +659,7 @@ public ResultCode PrepareForJit(ServiceCtx context) if (string.IsNullOrWhiteSpace(filePath)) { - throw new InvalidSystemResourceException("JIT (010000000000003B) system title not found! The JIT will not work, provide the system archive to fix this error. (See https://github.com/Ryujinx/Ryujinx#requirements for more information)"); + throw new InvalidSystemResourceException("JIT (010000000000003B) system title not found! The JIT will not work, provide the system archive to fix this error. (See https://github.com/LukeWarnut/Ryujinx2#requirements for more information)"); } context.Device.LoadNca(filePath); diff --git a/src/Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs index 641795890..21810218a 100644 --- a/src/Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs +++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs @@ -105,7 +105,7 @@ FontInfo CreateFont(string name) titleName = "Unknown"; } - throw new InvalidSystemResourceException($"{titleName} ({fontTitle:x8}) system title not found! This font will not work, provide the system archive to fix this error. (See https://github.com/Ryujinx/Ryujinx#requirements for more information)"); + throw new InvalidSystemResourceException($"{titleName} ({fontTitle:x8}) system title not found! This font will not work, provide the system archive to fix this error. (See https://github.com/LukeWarnut/Ryujinx2#requirements for more information)"); } } else diff --git a/src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs index 5d2e06a4f..2a828068b 100644 --- a/src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs +++ b/src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs @@ -23,7 +23,7 @@ class BuiltInCertificateManager { private const long CertStoreTitleId = 0x0100000000000800; - private const string CertStoreTitleMissingErrorMessage = "CertStore system title not found! SSL CA retrieving will not work, provide the system archive to fix this error. (See https://github.com/Ryujinx/Ryujinx/wiki/Ryujinx-Setup-&-Configuration-Guide#initial-setup-continued---installation-of-firmware for more information)"; + private const string CertStoreTitleMissingErrorMessage = "CertStore system title not found! SSL CA retrieving will not work, provide the system archive to fix this error. (See https://github.com/LukeWarnut/Ryujinx2/wiki/Ryujinx-Setup-&-Configuration-Guide#initial-setup-continued---installation-of-firmware for more information)"; private static BuiltInCertificateManager _instance; diff --git a/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs index abf3cd7d6..e01c57b57 100644 --- a/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs +++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs @@ -23,7 +23,7 @@ public class TimeZoneContentManager { private const long TimeZoneBinaryTitleId = 0x010000000000080E; - private const string TimeZoneSystemTitleMissingErrorMessage = "TimeZoneBinary system title not found! TimeZone conversions will not work, provide the system archive to fix this error. (See https://github.com/Ryujinx/Ryujinx/wiki/Ryujinx-Setup-&-Configuration-Guide#initial-setup-continued---installation-of-firmware for more information)"; + private const string TimeZoneSystemTitleMissingErrorMessage = "TimeZoneBinary system title not found! TimeZone conversions will not work, provide the system archive to fix this error. (See https://github.com/LukeWarnut/Ryujinx2/wiki/Ryujinx-Setup-&-Configuration-Guide#initial-setup-continued---installation-of-firmware for more information)"; private VirtualFileSystem _virtualFileSystem; private IntegrityCheckLevel _fsIntegrityCheckLevel; diff --git a/src/Ryujinx/UI/Helpers/UserErrorDialog.cs b/src/Ryujinx/UI/Helpers/UserErrorDialog.cs index 9a44b862b..4a5af82d7 100644 --- a/src/Ryujinx/UI/Helpers/UserErrorDialog.cs +++ b/src/Ryujinx/UI/Helpers/UserErrorDialog.cs @@ -7,7 +7,7 @@ namespace Ryujinx.Ava.UI.Helpers { internal class UserErrorDialog { - private const string SetupGuideUrl = "https://github.com/Ryujinx/Ryujinx/wiki/Ryujinx-Setup-&-Configuration-Guide"; + private const string SetupGuideUrl = "https://github.com/LukeWarnut/Ryujinx2/wiki/Ryujinx-Setup-&-Configuration-Guide"; private static string GetErrorCode(UserError error) { diff --git a/src/Ryujinx/UI/Windows/AboutWindow.axaml b/src/Ryujinx/UI/Windows/AboutWindow.axaml index 69fa82517..9a168464b 100644 --- a/src/Ryujinx/UI/Windows/AboutWindow.axaml +++ b/src/Ryujinx/UI/Windows/AboutWindow.axaml @@ -88,7 +88,7 @@ HorizontalAlignment="Center" Background="Transparent" Click="Button_OnClick" - Tag="https://github.com/Ryujinx/Ryujinx/wiki/Changelog#ryujinx-changelog"> + Tag="https://github.com/LukeWarnut/Ryujinx2/wiki/Changelog#ryujinx-changelog"> @@ -237,7 +237,7 @@ HorizontalAlignment="Left" Background="Transparent" Click="Button_OnClick" - Tag="https://github.com/Ryujinx/Ryujinx/graphs/contributors?type=a"> + Tag="https://github.com/LukeWarnut/Ryujinx2/graphs/contributors?type=a">