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
That remote endpoint is not available yet, so the checker currently fails safely with the "Could not check for updates" state until the web/CDN side is published.
Scope
Publish latest.json at the expected URL, or confirm the final manifest URL and update the client constant if it changes.
Point downloadUrl to the current release artifact, initially likely MicroClawInstaller.zip until a formal MicroClawSetup.exe exists.
GET https://microclaw.microsoftol.com/releases/latest.json returns HTTP 200 with valid JSON.
version is a numeric dotted version string, for example 1.0.1.
downloadUrl is HTTPS and points to a downloadable release artifact.
MicroClaw Desktop Settings > About > Check for updates can show either "up to date" or "update available" instead of failing due to a missing endpoint.
Background
PR #45 adds the MicroClaw Desktop client-side manual update checker in Settings > About. The client expects a public update manifest at:
That remote endpoint is not available yet, so the checker currently fails safely with the "Could not check for updates" state until the web/CDN side is published.
Scope
latest.jsonat the expected URL, or confirm the final manifest URL and update the client constant if it changes.downloadUrlto the current release artifact, initially likelyMicroClawInstaller.zipuntil a formalMicroClawSetup.exeexists.Expected manifest shape
{ "version": "1.0.1", "releasedAt": "2026-07-15", "downloadUrl": "https://microclaw.microsoftol.com/downloads/MicroClawInstaller.zip", "sha256": "<artifact sha256>", "openclawVersion": "2026.3.12", "releaseNotes": [ "Add manual update checker" ] }Acceptance criteria
GET https://microclaw.microsoftol.com/releases/latest.jsonreturns HTTP 200 with valid JSON.versionis a numeric dotted version string, for example1.0.1.downloadUrlis HTTPS and points to a downloadable release artifact.Related