1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-28 07:16:27 -05:00

Blast Patreon off the face of the Earth.

This commit is contained in:
reggie
2024-10-02 00:15:03 -05:00
parent c6aa83225e
commit b3b8324a77
4 changed files with 3 additions and 22 deletions

View File

@@ -29,7 +29,7 @@ namespace Ryujinx.UI.Windows
try
{
string patreonJsonString = await httpClient.GetStringAsync("https://patreon.ryujinx.org/");
string patreonJsonString = await httpClient.GetStringAsync("https://example.com/");
_patreonNamesText.Buffer.Text = string.Join(", ", JsonHelper.Deserialize(patreonJsonString, CommonJsonContext.Default.StringArray));
}
@@ -54,7 +54,7 @@ namespace Ryujinx.UI.Windows
private void PatreonButton_Pressed(object sender, ButtonPressEventArgs args)
{
OpenHelper.OpenUrl("https://www.patreon.com/ryujinx");
OpenHelper.OpenUrl("https://example.com/");
}
private void GitHubButton_Pressed(object sender, ButtonPressEventArgs args)

View File

@@ -132,7 +132,7 @@
Background="Transparent"
Click="Button_OnClick"
CornerRadius="15"
Tag="https://www.patreon.com/ryujinx"
Tag="https://example.com/"
ToolTip.Tip="{locale:Locale AboutPatreonUrlTooltipMessage}">
<Image Source="{Binding PatreonLogo}" />
</Button>