diff --git a/Installs/AyaNovaINNO/AyaNova.iss b/Installs/AyaNovaINNO/AyaNova.iss index 7e1b478..1650f3a 100644 --- a/Installs/AyaNovaINNO/AyaNova.iss +++ b/Installs/AyaNovaINNO/AyaNova.iss @@ -103,11 +103,11 @@ Source: "..\..\source\Plugins\AyaNova.PlugIn.Merger\bin\Release\AyaNova.PlugIn.M Source: "..\..\source\Plugins\AyaNova.PlugIn.XTools\bin\Release\AyaNova.PlugIn.XTools.dll"; DestDir: "{app}\plugins\XTools";Permissions: everyone-full;Flags:ignoreversion; Source: "..\..\release\AyaNova.PlugIn.ClientRemover.dll"; DestDir: "{app}\plugins\ClientRemover";Permissions: everyone-full;Flags:ignoreversion; ;-------- -;v8 exporter +;v8 migrate ;Note: commented out until we're ready to release as alpha or beta test -Source: "..\..\release\AyaNova.PlugIn.V8.dll"; DestDir: "{app}\plugins\V8Export";Permissions: everyone-full;Flags:ignoreversion; -Source: "..\..\source\Plugins\AyaNova.Plugin.V8\libs\HtmlAgilityPack.dll"; DestDir: "{app}\plugins\V8Export";Permissions: everyone-full;Flags:ignoreversion; -Source: "..\..\source\Plugins\AyaNova.Plugin.V8\libs\ReverseMarkdown.dll"; DestDir: "{app}\plugins\V8Export";Permissions: everyone-full;Flags:ignoreversion; +Source: "..\..\release\AyaNova.PlugIn.V8.dll"; DestDir: "{app}\plugins\V8Migrate";Permissions: everyone-full;Flags:ignoreversion; +Source: "..\..\source\Plugins\AyaNova.Plugin.V8\libs\HtmlAgilityPack.dll"; DestDir: "{app}\plugins\V8Migrate";Permissions: everyone-full;Flags:ignoreversion; +Source: "..\..\source\Plugins\AyaNova.Plugin.V8\libs\ReverseMarkdown.dll"; DestDir: "{app}\plugins\V8Migrate";Permissions: everyone-full;Flags:ignoreversion; ;-------- ;firebird files diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index 32478f5..49bc3f9 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -30,19 +30,19 @@ namespace AyaNova.PlugIn.V8 public string PluginName { - get { return "Export to V8"; } + get { return "V8 Migrate"; } } public string PluginVersion { - get { return "7.6.1-alpha.8"; } + get { return "7.6.1-alpha.9"; } } public string About { get { - return "AyaNova V8 export plugin"; + return "AyaNova V8 migrate plugin"; } } @@ -71,13 +71,13 @@ namespace AyaNova.PlugIn.V8 { if (AyaNovaVersion.Major < 7) { - MessageBox.Show("The V8 export plugin requires AyaNova version 7.6 or newer"); + MessageBox.Show("The V8 migrate plugin requires AyaNova version 7.6 or newer"); return false; } if (AyaNovaVersion.Minor < 6) { - MessageBox.Show("The V8 export plugin requires AyaNova version 7.6 or newer"); + MessageBox.Show("The V8 migrate plugin requires AyaNova version 7.6 or newer"); return false; } @@ -107,7 +107,7 @@ namespace AyaNova.PlugIn.V8 { if (!ObjectsWeCanDealWith.Contains(objectType)) return null; List list = new List(); - list.Add(new AyaNovaPluginMenuItem("V8 Export", "Export to AyaNova 8 server", null, null)); + list.Add(new AyaNovaPluginMenuItem("V8 Migrate", "Export to AyaNova 8 server", null, null)); return list; } @@ -1917,7 +1917,7 @@ namespace AyaNova.PlugIn.V8 s = s.Replace("LocalizedTextLocale", "Translation"); s = s.Replace("LocalizedText", "TranslatedText"); - //items that came up after moving this to v8 export plugin + //items that came up after moving this to v8 migrate plugin s = s.Replace("DateRangeInTheLastYear", "DateRangePastYear"); s = s.Replace("ToolbarCustomizeDialog", "CustomizeDialog"); s = s.Replace("Client", "Customer");