fix: correct Sparkle appcast version for 2026.2.15#18201
Merged
steipete merged 2 commits intoopenclaw:mainfrom Feb 16, 2026
Merged
fix: correct Sparkle appcast version for 2026.2.15#18201steipete merged 2 commits intoopenclaw:mainfrom
steipete merged 2 commits intoopenclaw:mainfrom
Conversation
added 2 commits
February 16, 2026 15:49
When the gateway connection fails due to device token mismatch (e.g., after re-pairing the device), clear the stored device-auth token so that subsequent connection attempts can obtain a fresh token. This fixes the cron tool failing with 'device token mismatch' error after running 'openclaw configure' to re-pair the device. Fixes openclaw#18175
The sparkle:version was incorrectly set to '11213' instead of '202602150', causing the macOS app to not detect the 2026.2.15 update. Sparkle compares versions as strings, so '11213' < '202602140' (2026.2.14's version), preventing the update from being offered to users. Fixes openclaw#18178
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The sparkle:version was incorrectly set to '11213' instead of '202602150', causing the macOS app to not detect the 2026.2.15 update. Sparkle compares versions as strings, so '11213' < '202602140' (2026.2.14's version), preventing the update from being offered to users.
Fixes #18178
Greptile Summary
This PR contains two independent bug fixes: correcting the Sparkle appcast version from
11213to202602150for the 2026.2.15 release, and clearing stale device-auth tokens when the gateway connection fails due to token mismatch. The appcast version fix ensures macOS users can detect the 2026.2.15 update (Sparkle compares versions lexicographically, so11213<202602140). The device-auth token fix prevents persistent authentication failures after re-pairing a device.Confidence Score: 5/5
Last reviewed commit: e2e7827