added missing warning and are you sure prompts from v8-migrate

also some left over bare linefeeds stuff that turned out to be AVG antivirus but whatever it's done
This commit is contained in:
2022-08-27 20:55:11 +00:00
parent 6aafe4b826
commit e77a457f19
6 changed files with 14 additions and 13 deletions

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 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("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
[assembly: AssemblyVersion("8.0.2.0")]
[assembly: AssemblyFileVersion("8.0.2.0")]

View File

@@ -35,7 +35,7 @@ namespace AyaNova.PlugIn.V8
public string PluginVersion
{
get { return "8.0.1"; }
get { return "8.0.2"; }
}
public string About
@@ -164,8 +164,9 @@ namespace AyaNova.PlugIn.V8
util.InitClient();
//here because we logged in fine and can proceed
//MessageBox.Show("Login successful! JWT is " + util.JWT);
if (MessageBox.Show("Warning: if you continue the AyaNova 8 destination server's database will be erased.\r\nAre you sure you want to continue?", "Erase data warning", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) return;
if (MessageBox.Show("Last chance: the next step will start migration and the AyaNova 8 target server's data will be erased.\r\nAre you sure you want to proceed?", "Continue migration", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) return;
//Only one command
DoExport();
}