MCPcopy Create free account
hub / github.com/bigdra50/unity-cli / start_update_check

Function start_update_check

unity_cli/update_checker.py:50–56  ·  view source on GitHub ↗

Start background check for updates (daemon thread, non-blocking).

()

Source from the content-addressed store, hash-verified

48
49
50def start_update_check() -> None:
51 """Start background check for updates (daemon thread, non-blocking)."""
52 cached = get_latest_version_cached()
53 if cached is not None:
54 return
55 t = threading.Thread(target=_fetch_latest_version, daemon=True)
56 t.start()
57
58
59def get_update_message(current: str) -> str | None:

Calls 2

startMethod · 0.45