Skip to content

Commit

Permalink
System: Preparing for another release
Browse files Browse the repository at this point in the history
  • Loading branch information
Octal450 committed Apr 24, 2022
1 parent c05f51d commit c26e709
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion J-Runner/Classes/variables.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public enum Windows
public static string version = "3.1.4";
public static string build = "3140." + DateTime.ParseExact(Properties.Resources.Build.Trim(), "MM-dd-yyyy HH:mm:ss", null).ToString("yyMMdd.HHmm");
public const string staticversion = "3.1.4.0";
public static int revision = 19;
public static int revision = 20;
public static Windows currentOS = Windows.Unknown;
public static bool iswriting;
public static bool isscanningip = false;
Expand Down
7 changes: 4 additions & 3 deletions J-Runner/Panels/XeBuildPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,8 @@ private void checkXLUsb()
{
if (File.Exists(Path.Combine(variables.update_path, comboDash.SelectedValue + @"\bin\xl_usb.bin")))
{
chkXLUsb.Enabled = !rbtnRetail.Checked;
if (rbtnRetail.Checked) chkXLUsb.Checked = chkXLUsb.Enabled = false;
else chkXLUsb.Enabled = true;
}
else chkXLUsb.Checked = chkXLUsb.Enabled = false;
}
Expand Down Expand Up @@ -863,13 +864,13 @@ private void chkXLUsb_CheckedChanged(object sender, EventArgs e)
{
if (chkXLUsb.Checked)
{
Console.WriteLine("XL USB Selected");
Console.WriteLine("XL USB (BETA) Selected");
if (DialogResult.Cancel == MessageBox.Show("XL USB requires HDDs to be formatted via FATXplorer, normal Xbox 360 storage devices will no longer work", "Warning", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning))
{
chkXLUsb.Checked = false;
}
}
else Console.WriteLine("XL USB Deselected");
else Console.WriteLine("XL USB (BETA) Deselected");
}

private void btnGetMB_Click(object sender, EventArgs e)
Expand Down
1 change: 1 addition & 0 deletions J-Runner/Panels/XeBuildPanel.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion J-Runner/Resources/Build.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
04-24-2022 00:51:16
04-24-2022 01:05:14

0 comments on commit c26e709

Please sign in to comment.