bump to 1.4.4 (the nonupdate update)

chore: clean up code, deprecate status config.
This commit is contained in:
serversdwn
2026-03-17 21:54:15 -04:00
parent 439feb9942
commit 010016d515
8 changed files with 18 additions and 24 deletions

View File

@@ -60,8 +60,6 @@ def load_config(path: str) -> Dict[str, Any]:
return {
"WATCH_PATH": get_str("SERIES3_PATH", r"C:\Blastware 10\Event\autocall home"),
"SCAN_INTERVAL": get_int("SCAN_INTERVAL_SECONDS", 300),
"OK_HOURS": float(get_int("OK_HOURS", 12)),
"MISSING_HOURS": float(get_int("MISSING_HOURS", 24)),
"ENABLE_LOGGING": get_bool("ENABLE_LOGGING", True),
"LOG_FILE": get_str("LOG_FILE", os.path.join(
os.environ.get("LOCALAPPDATA") or os.environ.get("APPDATA") or "C:\\",
@@ -219,7 +217,7 @@ def scan_latest(
# --- API heartbeat / SFM telemetry helpers ---
VERSION = "1.4.3"
VERSION = "1.4.4"
def _read_log_tail(log_file: str, n: int = 25) -> Optional[list]: