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 May 20, 2022
1 parent 1eb1ee4 commit fcaa56b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
8 changes: 4 additions & 4 deletions J-Runner/Classes/variables.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ public enum Windows
Win81,
Win10 // or 11
}
public static string version = "3.1.5 Beta";
public static string build = "3141." + DateTime.ParseExact(Properties.Resources.Build.Trim(), "MM-dd-yyyy HH:mm:ss", null).ToString("yyMMdd.HHmm");
public const string staticversion = "3.1.4.1";
public static int revision = 21;
public static string version = "3.1.5";
public static string build = "3150." + DateTime.ParseExact(Properties.Resources.Build.Trim(), "MM-dd-yyyy HH:mm:ss", null).ToString("yyMMdd.HHmm");
public const string staticversion = "3.1.5.0";
public static int revision = 22;
public static Windows currentOS = Windows.Unknown;
public static bool iswriting;
public static bool isscanningip = false;
Expand Down
20 changes: 18 additions & 2 deletions J-Runner/Panels/XeBuildPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,15 @@ private void chkWB_CheckedChanged(object sender, EventArgs e)
Console.WriteLine("Winbond 2K Deselected");
}

updateWB();
// Don't do it twice
if (!chkWB4G.Checked && chkWB.Checked)
{
updateWB();
}
else if (!chkWB.Checked && !chkWB4G.Checked)
{
updateWB();
}
}

private void chkWB4G_CheckedChanged(object sender, EventArgs e)
Expand All @@ -805,7 +813,15 @@ private void chkWB4G_CheckedChanged(object sender, EventArgs e)
Console.WriteLine("Winbond 2K Buffer Deselected");
}

updateWB();
// Don't do it twice
if (!chkWB.Checked && chkWB4G.Checked)
{
updateWB();
}
else if (!chkWB.Checked && !chkWB4G.Checked)
{
updateWB();
}
}

private void updateWB()
Expand Down
2 changes: 1 addition & 1 deletion J-Runner/Resources/Build.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
05-17-2022 19:43:39
05-20-2022 15:10:54

0 comments on commit fcaa56b

Please sign in to comment.