diff --git a/.github/workflows/Release.yaml b/.github/workflows/Release.yaml index 2e69b09..d8ecf08 100644 --- a/.github/workflows/Release.yaml +++ b/.github/workflows/Release.yaml @@ -16,7 +16,7 @@ jobs: # Константы, используемые далее по тексту env: PROJ: MakeCST - TAG: 2.0.2 + TAG: 2.0.7 steps: # Проверка состава репозитория (без анализа, как может показаться) diff --git a/.release/MakeCST.exe b/.release/MakeCST.exe new file mode 100644 index 0000000..e9d3c8e Binary files /dev/null and b/.release/MakeCST.exe differ diff --git a/.release/Release.md b/.release/Release.md index 1a5bf24..4bbe036 100644 --- a/.release/Release.md +++ b/.release/Release.md @@ -1,4 +1,3 @@ -_Changes for v 2.0.2_: -- XPR control has been implemented; -- Adjusted the control of single active copy; -- Required framework version updated from 4.0 to 4.8 +_Changes for v 2.0.7_: +- Updated the XPR (XPUN) mechanics; +- Removed some redundant code diff --git a/Changes.log b/Changes.log index 098f5e5..babffb9 100644 --- a/Changes.log +++ b/Changes.log @@ -1,5 +1,9 @@ Make CST changes log +Version 2.0.7: +• Updated the XPR (XPUN) mechanics; +• Removed some redundant code + Version 2.0.2: • XPR control has been implemented; • Adjusted the control of single active copy diff --git a/README.md b/README.md index 8def858..8a6c5c2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# MakeCST v 2.0.2 -> PCC: 000147BF05736D2B +# MakeCST v 2.0.7 +> PCC: 000125D33C025F86 diff --git a/src/MakeCST.cs b/src/MakeCST.cs index ceebb21..c1b7080 100644 --- a/src/MakeCST.cs +++ b/src/MakeCST.cs @@ -18,27 +18,31 @@ public class MakeCollisionScriptProgram static public int Main (string[] args) { // Язык интерфейса и контроль XPR - SupportedLanguages al = Localization.CurrentLanguage; - if (!Localization.IsXPRClassAcceptable) - return -21; + /*SupportedLanguages al = Localization.CurrentLanguage; // Проверка запуска единственной копии if (!RDGenerics.IsThisInstanceUnique (al == SupportedLanguages.ru_ru)) - return -22; + return -22;*/ // Заголовок Console.Title = ProgramDescription.AssemblyTitle; - Console.Write ("\n " + ProgramDescription.AssemblyDescription + - "\n by " + RDGenerics.AssemblyCompany + "\n\n"); + Console.Write ("\n " + ProgramDescription.AssemblyDescription + + "\n by RD AAOW Free development lab\n\n"); // Проверка имени файла bool visual = false; + if (!Localization.IsXPUNClassAcceptable) + { + ShowMessage (Localization.InacceptableXPUNClassMessage, visual, true); + return -21; + } + if (args.Length != 1) { ShowMessage ("Usage: " + ProgramDescription.AssemblyMainName + " \n or\n " + - ProgramDescription.AssemblyMainName + " ", + ProgramDescription.AssemblyMainName + " ", visual, false); return 1; } @@ -107,7 +111,7 @@ static public int Main (string[] args) if (dffr.ExtractedPoints.Count == 0) { - ShowMessage ("File \"" + inFileName + "\": this version is unsupported or file is empty", + ShowMessage ("File \"" + inFileName + "\": this version is unsupported or file is empty", visual, true); return -11; }