From da80db3648e73efe0d9726c90bd88378f6d6b90a Mon Sep 17 00:00:00 2001 From: Ernegien Date: Wed, 3 Aug 2022 22:29:16 -0500 Subject: [PATCH] Fix ArduinoProm write bug and bump app version --- XboxEepromEditor/Forms/MainForm.cs | 1 + XboxEepromEditor/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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")]