diff --git a/XboxEepromEditor/Forms/MainForm.cs b/XboxEepromEditor/Forms/MainForm.cs index 85bde23..c0b22eb 100644 --- a/XboxEepromEditor/Forms/MainForm.cs +++ b/XboxEepromEditor/Forms/MainForm.cs @@ -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) { diff --git a/XboxEepromEditor/Properties/AssemblyInfo.cs b/XboxEepromEditor/Properties/AssemblyInfo.cs index aa7f3e4..3008540 100644 --- a/XboxEepromEditor/Properties/AssemblyInfo.cs +++ b/XboxEepromEditor/Properties/AssemblyInfo.cs @@ -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")]