-
Notifications
You must be signed in to change notification settings - Fork 9
/
Form_AboutBox.cs
55 lines (46 loc) · 1.87 KB
/
Form_AboutBox.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
using System.Diagnostics;
using System.Windows.Forms;
namespace yuzu_Early_Access_Launcher
{
public partial class Form_AboutBox : Form
{
public Form_AboutBox(String ver)
{
InitializeComponent();
label_LauncherVersion.Text = "Version " + ver.Replace('-', ' ');
}
private void link_yuzuSite_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://yuzu-emu.org/");
}
private void link_yuzuSource_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/yuzu-emu");
}
private void link_yuzuContrib_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/yuzu-emu/yuzu/graphs/contributors");
}
private void link_yuzuLicense_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/yuzu-emu/yuzu/blob/master/license.txt");
}
private void linkLabel_LauncherSource_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/HimDek/yuzu-Early-Access-Launcher");
}
private void linkLabel_EARepo_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/pineappleEA/pineapple-src/releases");
}
private void linkLabel_prodRepo_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://archive.org/download/prod.keys/");
}
private void linkLabel_FirmwareRepo_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://archive.org/download/nintendo-switch-global-firmwares/");
}
}
}