fix(update): exclude dist/control-ui from dirty check and restore after build#1976
Closed
Glucksberg wants to merge 4 commits intoopenclaw:mainfrom
Closed
fix(update): exclude dist/control-ui from dirty check and restore after build#1976Glucksberg wants to merge 4 commits intoopenclaw:mainfrom
Glucksberg wants to merge 4 commits intoopenclaw:mainfrom
Conversation
When block streaming succeeds, final replies are dropped but TTS was only applied to final replies. Fix by accumulating block text during streaming and generating TTS-only audio after streaming completes. Also: - Change truncate vs skip behavior when summary OFF (now truncates) - Align TTS limits with Telegram max (4096 chars) - Improve /tts command help messages with examples - Add newline separator between accumulated blocks
- Add value/label support for command arg choices - TTS menu now shows descriptive title listing each action - Capitalize button labels (On, Off, Status, etc.) - Update Telegram, Discord, and Slack handlers to use labels Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
…er build Fixes openclaw#1953 The auto-update process runs ui:build which regenerates dist/control-ui/ assets with new hashes. Since these files are tracked in git, every update left the repo dirty, blocking subsequent updates. This fix: - Excludes dist/control-ui/ from dirty repo detection using git pathspec - Restores dist/control-ui/ to committed state after ui:build completes Both changes work together: the exclusion prevents blocking updates while the restore step keeps the repo clean for users.
thewilloftheshadow
added a commit
that referenced
this pull request
Jan 26, 2026
Co-authored-by: Glucksberg <glucksberg@users.noreply.github.com>
Member
|
Squash-merged into
|
Member
|
Closed after squash-merge to main (commit 6d60c32). |
zooqueen
pushed a commit
to hanzoai/bot
that referenced
this pull request
Mar 6, 2026
Co-authored-by: Glucksberg <glucksberg@users.noreply.github.com>
22 tasks
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.
Summary
Fixes #1953
The auto-update process runs
pnpm ui:buildwhich regeneratesdist/control-ui/assets with new content hashes. Since these files are tracked in git, every successful update left the repo "dirty", causing subsequent update checks to skip.Changes
dist/control-ui/from dirty detection using git pathspecdist/control-ui/afterui:buildcompletesTest plan
🤖 Generated with Claude Code