You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fixed bug that caused logfile explosion after a successful TPPA with NINA.
- Fixed an issue where the end of the TPPA was not detected when interrupted by the user.
boolalignmentIsComplete=_allTextList.FindIndex(_examinedLines, l =>l.Contains("PolarAlignment.cs")&&l.Contains("Total Error is below alignment tolerance"))>0;
438
438
stringmessage="Polar alignment succeeded.";
439
439
// User Cancellation?
440
-
if(_allTextList.FindIndex(_examinedLines, l =>l.Contains("ERROR|PolarAlignment.cs|Solve|717"))>0)
440
+
if(_allTextList.FindIndex(_examinedLines, l =>l.Contains("ERROR|PolarAlignment.cs|Solve|"))>0)
441
441
{
442
442
alignmentIsComplete=true;
443
443
message="Polar alignment cancelled by user.";
@@ -508,6 +508,11 @@ void ProcessNinaLogs()
508
508
}
509
509
}
510
510
break;
511
+
case"Complete":
512
+
{
513
+
_examinedLines=lineCount;
514
+
}
515
+
break;
511
516
}
512
517
513
518
boolalignmentComplete=_allTextList.FindIndex(_examinedLines, l =>l.Contains("PolarAlignment.cs")&&l.Contains("Total Error is below alignment tolerance"))>0;
0 commit comments