2021-01-08 03:14:13 -05:00
|
|
|
|
using Gtk;
|
|
|
|
|
using Ryujinx.Common.Utilities;
|
2022-05-15 07:30:15 -04:00
|
|
|
|
using Ryujinx.Ui.Common.Helper;
|
2021-01-08 03:14:13 -05:00
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using System.Net.NetworkInformation;
|
2021-01-18 15:33:58 -05:00
|
|
|
|
using System.Reflection;
|
2021-01-08 03:14:13 -05:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Ui.Windows
|
|
|
|
|
{
|
|
|
|
|
public partial class AboutWindow : Window
|
|
|
|
|
{
|
|
|
|
|
public AboutWindow() : base($"Ryujinx {Program.Version} - About")
|
|
|
|
|
{
|
2022-05-15 07:30:15 -04:00
|
|
|
|
Icon = new Gdk.Pixbuf(Assembly.GetAssembly(typeof(OpenHelper)), "Ryujinx.Ui.Common.Resources.Logo_Ryujinx.png");
|
2021-01-08 03:14:13 -05:00
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
_ = DownloadPatronsJson();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task DownloadPatronsJson()
|
|
|
|
|
{
|
|
|
|
|
if (!NetworkInterface.GetIsNetworkAvailable())
|
|
|
|
|
{
|
|
|
|
|
_patreonNamesText.Buffer.Text = "Connection Error.";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HttpClient httpClient = new HttpClient();
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
string patreonJsonString = await httpClient.GetStringAsync("https://patreon.ryujinx.org/");
|
|
|
|
|
|
2023-03-21 19:14:46 -04:00
|
|
|
|
_patreonNamesText.Buffer.Text = string.Join(", ", JsonHelper.Deserialize<string[]>(patreonJsonString));
|
2021-01-08 03:14:13 -05:00
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
_patreonNamesText.Buffer.Text = "API Error.";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Events
|
|
|
|
|
//
|
|
|
|
|
private void RyujinxButton_Pressed(object sender, ButtonPressEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
OpenHelper.OpenUrl("https://ryujinx.org");
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-27 10:41:09 -04:00
|
|
|
|
private void AmiiboApiButton_Pressed(object sender, ButtonPressEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
OpenHelper.OpenUrl("https://amiiboapi.com");
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-08 03:14:13 -05:00
|
|
|
|
private void PatreonButton_Pressed(object sender, ButtonPressEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
OpenHelper.OpenUrl("https://www.patreon.com/ryujinx");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void GitHubButton_Pressed(object sender, ButtonPressEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
OpenHelper.OpenUrl("https://github.com/Ryujinx/Ryujinx");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void DiscordButton_Pressed(object sender, ButtonPressEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
OpenHelper.OpenUrl("https://discordapp.com/invite/N2FmfVc");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void TwitterButton_Pressed(object sender, ButtonPressEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
OpenHelper.OpenUrl("https://twitter.com/RyujinxEmu");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ContributorsButton_Pressed(object sender, ButtonPressEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
OpenHelper.OpenUrl("https://github.com/Ryujinx/Ryujinx/graphs/contributors?type=a");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|