Updated version number to match Nømura's

This commit is contained in:
AdAstra-LD 2021-01-01 21:23:52 +01:00
parent 1e20fed557
commit 79e9a8917c
2 changed files with 3 additions and 3 deletions

View File

@ -6015,7 +6015,7 @@
this.MainMenuStrip = this.menuStrip1;
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "DS Pokémon Rom Editor 1.0.3 (Nømura, AdAstra, Mixone)";
this.Text = "DS Pokémon Rom Editor 1.0.4a (Nømura, AdAstra, Mixone)";
this.Load += new System.EventHandler(this.Form1_Load);
this.mainTabControl.ResumeLayout(false);
this.headerEditorTabPage.ResumeLayout(false);

View File

@ -928,9 +928,9 @@ namespace DS_Map
}
private void aboutToolStripMenuItem1_Click(object sender, EventArgs e)
{
string message = "DS Pokémon Rom Editor by Nømura (AdAstra's edit of Mixone's branch)" + Environment.NewLine + "gameVersion 1.0.3" + Environment.NewLine
string message = "DS Pokémon Rom Editor by Nømura (Unofficial Branch)" + Environment.NewLine + "version 1.0.4a" + Environment.NewLine
+ Environment.NewLine + "This tool was largely inspired by Markitus95's Spiky's DS Map Editor, from which certain assets were also recycled. Credits go to Markitus, Ark, Zark, Florian, and everyone else who owes credit for SDSME." + Environment.NewLine +
"Special thanks go to Trifindo, Mikelan98, BagBoy, and JackHack96, who provided tons of help, research and expertise in the field of NDS Rom Hacking that made the development of this tool possible.";
"Special thanks go to Trifindo, Mikelan98, BagBoy, and JackHack96, whose help, research and expertise in the field of NDS Rom Hacking made the development of this tool possible.";
MessageBox.Show(message, "about", MessageBoxButtons.OK, MessageBoxIcon.Information);
}