diff --git a/AboutPage.cs b/AboutPage.cs index 927bf8747..f31a0dd45 100644 --- a/AboutPage.cs +++ b/AboutPage.cs @@ -118,7 +118,7 @@ namespace MatterHackers.MatterControl DataStorage.ApplicationSession firstSession; firstSession = DataStorage.Datastore.Instance.dbSQLite.Table().OrderBy(v => v.SessionStart).Take(1).FirstOrDefault(); if (firstSession != null - && DateTime.Compare(firstSession.SessionStart.AddDays(14), DateTime.Now) < 0) + && DateTime.Compare(firstSession.SessionStart.AddDays(7), DateTime.Now) < 0) { NeedToCheckForUpdateFirstTimeEver = true; } diff --git a/PrinterCommunication.cs b/PrinterCommunication.cs index c32762163..833311cdd 100644 --- a/PrinterCommunication.cs +++ b/PrinterCommunication.cs @@ -973,7 +973,7 @@ namespace MatterHackers.MatterControl } } string firmwareVersionReported = ""; - if (GCodeFile.GetFirstStringAfter("PROTOCOL_VERSION:", foundStringEventArgs.LineToCheck, " ", ref firmwareVersionReported)) + if (GCodeFile.GetFirstStringAfter("MACHINE_TYPE:", foundStringEventArgs.LineToCheck, " EXTRUDER_COUNT", ref firmwareVersionReported)) { //Firmware version was detected and is different if (firmwareVersionReported != "" && firmwareVersion != firmwareVersionReported)