fix: show gateway version in footer instead of gateway URL link#23
Merged
simonCatBot merged 9 commits intomasterfrom Apr 3, 2026
Merged
fix: show gateway version in footer instead of gateway URL link#23simonCatBot merged 9 commits intomasterfrom
simonCatBot merged 9 commits intomasterfrom
Conversation
added 9 commits
April 3, 2026 10:29
Lint cleanup: remove unused handleFleetSelectAgent dead code. probeLocalGateway: extract runtimeVersion from 'openclaw status --json' and expose it in localGateway.runtimeVersion. FooterBar: show gateway version in center slot; remove gateway URL + ExternalLink from left slot; fallback to 'rocCLAW' when disconnected. All 818 unit tests pass.
Resolve conflict in FooterBar.tsx: keep server-side gateway version approach, discard master's client-side /api/gateway-info fetch.
runJsonCommand returns data in .value, not .data. Fixes footer version not displaying.
FooterBar now calls /api/gateway-info when status is 'connected' to retrieve the gateway version, in addition to accepting an optional initial version from installContext. This is more reliable than depending solely on the server-side install context probe.
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.
What
Footer now shows the gateway version (e.g.
2026.3.28) in the center slot instead of a gateway URL link.Changes
probeLocalGatewayextractsruntimeVersionfromopenclaw status --jsonoutput and exposes it in thelocalGatewayobjectruntimeVersion: string | nulltoStudioInstallContext.localGatewaygatewayVersionwith fallback torocCLAWwhen disconnected; removed gateway URL + external link from left slothandleFleetSelectAgentdead code (lint fix)Testing
All 818 unit tests pass.