From bcc5481cae9ddb303a06f0be65f553cc95968684 Mon Sep 17 00:00:00 2001 From: Lojemiru <33508026+Lojemiru@users.noreply.github.com> Date: Sat, 17 Apr 2021 02:44:26 -0500 Subject: [PATCH] Add version number, update AssemblyInfo.cs --- ModPacker.cs | 2 ++ Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ModPacker.cs b/ModPacker.cs index 0bdc897..8fdc204 100644 --- a/ModPacker.cs +++ b/ModPacker.cs @@ -18,6 +18,7 @@ namespace AM2R_ModPacker { public partial class ModPacker : Form { + private static readonly string VERSION = "2.0.2"; private static readonly string ORIGINAL_MD5 = "f2b84fe5ba64cb64e284be1066ca08ee"; private bool isOriginalLoaded, isModLoaded, isApkLoaded, isLinuxLoaded; private string localPath, originalPath, modPath, apkPath, linuxPath; @@ -39,6 +40,7 @@ public ModPacker() linuxPath = ""; apkPath = ""; + Text = "AM2R ModPacker " + VERSION; } #region WinForms events diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 8a77bdd..26c363d 100644 --- a/Properties/AssemblyInfo.cs +++ b/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("2.0.2.0")] +[assembly: AssemblyFileVersion("2.0.2.0")]