diff --git a/XCI_Explorer/MainForm.cs b/XCI_Explorer/MainForm.cs index de1a9e4..ca76fda 100644 --- a/XCI_Explorer/MainForm.cs +++ b/XCI_Explorer/MainForm.cs @@ -69,7 +69,7 @@ public partial class MainForm : Form if (MessageBox.Show("keys.txt is missing.\nDo you want to automatically download it now?\n\nBy pressing 'Yes' you agree that you own these keys.\n", "XCI Explorer", MessageBoxButtons.YesNo) == DialogResult.Yes) { using HttpClient client = new(); - using HttpResponseMessage response = client.Send(new HttpRequestMessage(HttpMethod.Get, Util.Base64Decode("aHR0cHM6Ly9wYXN0ZWJpbi5jb20vcmF3LzVnN3cxN2tF"))); + using HttpResponseMessage response = client.Send(new HttpRequestMessage(HttpMethod.Get, Util.Base64Decode("aHR0cHM6Ly9wYXN0ZWJpbi5jb20vcmF3L0Z2M25GRzJR"))); using Stream stream = response.Content.ReadAsStream(); using FileStream fs = new("keys.txt", FileMode.CreateNew); stream.CopyTo(fs); diff --git a/XCI_Explorer/Util.cs b/XCI_Explorer/Util.cs index 0527d14..f9b6716 100644 --- a/XCI_Explorer/Util.cs +++ b/XCI_Explorer/Util.cs @@ -36,9 +36,9 @@ internal static class Util 10 => "MasterKey9 (9.0.0-9.0.1)", 11 => "MasterKey10 (9.1.0-12.0.3)", 12 => "MasterKey11 (12.1.0)", - 13 => "MasterKey12 (13.0.0-?)", - 14 => "MasterKey13", - 15 => "MasterKey14", + 13 => "MasterKey12 (13.0.0-13.2.1)", + 14 => "MasterKey13 (14.0.0-14.1.2)", + 15 => "MasterKey14 (15.0.0-?)", 16 => "MasterKey15", 17 => "MasterKey16", 18 => "MasterKey17",