Skip to content

Commit

Permalink
Fix ArduinoProm write bug and bump app version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernegien committed Aug 4, 2022
1 parent 21bfedd commit da80db3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions XboxEepromEditor/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ private void mnuArduinoPromWrite_Click(object sender, EventArgs e)
string port = ((ToolStripMenuItem)sender).Text;

ArduinoPromTest(port);
UpdateEepromFromForm();

if (_eeprom.Version == EepromVersion.Unknown && MessageBox.Show("You're about to write an EEPROM of unknown version. The security section will be written as-is and likely won't work with your Xbox!", "Warning", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning) == DialogResult.Cancel)
{
Expand Down
4 changes: 2 additions & 2 deletions XboxEepromEditor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]

0 comments on commit da80db3

Please sign in to comment.