This commit is contained in:
2020-07-06 21:08:13 +00:00
parent 393b89dda0
commit c1a064d14a
2 changed files with 11 additions and 11 deletions

View File

@@ -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: "..\..\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; 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 ;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: "..\..\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\V8Export";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\V8Export";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 ;firebird files

View File

@@ -30,19 +30,19 @@ namespace AyaNova.PlugIn.V8
public string PluginName public string PluginName
{ {
get { return "Export to V8"; } get { return "V8 Migrate"; }
} }
public string PluginVersion public string PluginVersion
{ {
get { return "7.6.1-alpha.8"; } get { return "7.6.1-alpha.9"; }
} }
public string About public string About
{ {
get get
{ {
return "AyaNova V8 export plugin"; return "AyaNova V8 migrate plugin";
} }
} }
@@ -71,13 +71,13 @@ namespace AyaNova.PlugIn.V8
{ {
if (AyaNovaVersion.Major < 7) 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; return false;
} }
if (AyaNovaVersion.Minor < 6) 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; return false;
} }
@@ -107,7 +107,7 @@ namespace AyaNova.PlugIn.V8
{ {
if (!ObjectsWeCanDealWith.Contains(objectType)) return null; if (!ObjectsWeCanDealWith.Contains(objectType)) return null;
List<AyaNovaPluginMenuItem> list = new List<AyaNovaPluginMenuItem>(); List<AyaNovaPluginMenuItem> list = new List<AyaNovaPluginMenuItem>();
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; return list;
} }
@@ -1917,7 +1917,7 @@ namespace AyaNova.PlugIn.V8
s = s.Replace("LocalizedTextLocale", "Translation"); s = s.Replace("LocalizedTextLocale", "Translation");
s = s.Replace("LocalizedText", "TranslatedText"); 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("DateRangeInTheLastYear", "DateRangePastYear");
s = s.Replace("ToolbarCustomizeDialog", "CustomizeDialog"); s = s.Replace("ToolbarCustomizeDialog", "CustomizeDialog");
s = s.Replace("Client", "Customer"); s = s.Replace("Client", "Customer");