update MeatKit (9a1a68ab68cd0650227af944ffa30d1166b9e056)

This commit is contained in:
msk
2023-07-26 16:45:05 -07:00
parent 920875f56b
commit d2316bac96
266 changed files with 2855 additions and 9187 deletions
+13
View File
@@ -25,6 +25,9 @@ namespace MeatKit
[SerializeField]
private string _lastSelectedProfileGuid;
[SerializeField]
private string _lastUpdateCheckTime = default(DateTime).ToString(CultureInfo.InvariantCulture);
private static string CacheFilePath
{
@@ -108,5 +111,15 @@ namespace MeatKit
WriteCache();
}
}
public static DateTime LastUpdateCheckTime
{
get { return DateTime.Parse(Instance._lastUpdateCheckTime); }
set
{
Instance._lastUpdateCheckTime = value.ToString(CultureInfo.InvariantCulture);
WriteCache();
}
}
}
}