Skip to content
This repository has been archived by the owner on Apr 23, 2023. It is now read-only.

Commit

Permalink
Assembly v 2.0.7 (19.02.23)
Browse files Browse the repository at this point in the history
  • Loading branch information
adslbarxatov committed Feb 19, 2023
1 parent 711c07e commit e86e56b
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# Константы, используемые далее по тексту
env:
PROJ: MakeCST
TAG: 2.0.2
TAG: 2.0.7

steps:
# Проверка состава репозитория (без анализа, как может показаться)
Expand Down
Binary file added .release/MakeCST.exe
Binary file not shown.
7 changes: 3 additions & 4 deletions .release/Release.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions Changes.log
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MakeCST v 2.0.2
> PCC: 000147BF05736D2B
# MakeCST v 2.0.7
> PCC: 000125D33C025F86


Expand Down
20 changes: 12 additions & 8 deletions src/MakeCST.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 + " <QHullOFF_FileName" + QHullOFFReader.MasterExtension +
">\n or\n " +
ProgramDescription.AssemblyMainName + " <DFF_FileName" + DFFReader.MasterExtension + ">",
ProgramDescription.AssemblyMainName + " <DFF_FileName" + DFFReader.MasterExtension + ">",
visual, false);
return 1;
}
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit e86e56b

Please sign in to comment.