feat(gui): polish desktop slash command results#160
Open
pranavp311 wants to merge 10 commits into
Open
Conversation
ea06395 to
5a1c88c
Compare
Co-Authored-By: blackfloofie-a codegraff agent <265516171+blackfloofie@users.noreply.github.com>
249579c to
152e99a
Compare
Regenerate the app/bundle icon set from the white-background source so the macOS dock icon (icon.icns) no longer renders the transparent variant. Keep both masters with explicit names: icon-with-bg.png (white background, now the icon source) and icon-no-bg.png (the previous transparent version). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
renderInline wrapped plain-text leaves in a Fragment, so ChatInlineChildren (which only linkifies string children) never saw a string and bare URLs rendered as inert text. Return the raw string instead, and add hand cursor + hover underline to autolinked controls. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Drive bottom-following with an animation frame loop so streaming responses glide without LegendList snapping. Preserve user scroll-up intent until they scroll back down to the bottom, and keep desktop client mocks aligned with chat link-opening imports used by markdown rendering tests. Co-Authored-By: blackfloofie-a codegraff agent <265516171+blackfloofie@users.noreply.github.com>
Track request agent identity through GUI snapshots so completed MUSE plans can be identified reliably, including first prompts from the landing screen. Preserve the agent mapping across persisted conversation reloads and render the plan decision card in both conversation and landing composers. Co-Authored-By: blackfloofie-a codegraff agent <265516171+blackfloofie@users.noreply.github.com>
Co-Authored-By: blackfloofie-a codegraff agent <265516171+blackfloofie@users.noreply.github.com>
Regenerate the TypeScript SDK package lock so npm ci accepts the 0.2.5 optional native package dependencies used by the sdk-typescript workflow. Co-Authored-By: blackfloofie-a codegraff agent <265516171+blackfloofie@users.noreply.github.com>
Co-Authored-By: blackfloofie-a codegraff agent <265516171+blackfloofie@users.noreply.github.com>
- Remove grab/hand cursor from window-drag regions (chat header spacer, both sidebar headers) while keeping window dragging. - Override dockview's `.dv-tab` pointer/grab cursor on the chat-title tab so existing chats show the native arrow instead of a drag hand. - Disable native HTML5 element dragging app-wide so the chat title can no longer be drag-ghosted out of the top bar. - Regenerate the macOS dock icon as a standard rounded squircle (white tile with transparent margins) and drop the obsolete icon-with-bg.png source. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Co-Authored-By: blackfloofie-a codegraff agent <265516171+blackfloofie@users.noreply.github.com>
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
This PR updates the desktop GUI experience on top of
release/0.2.16, including slash-command result handling, the restored desktop app UX, and the latest purple-slime rebrand assets.What Changed
Slash commands and command results
Rebrand and app icons
Attachments
@[path]blocks.Artifacts
MCP settings
Planning and continuation UX
Desktop helpers and rendering
Verification
Passed before pushing the latest PR updates:
git diff --check origin/release/0.2.16...HEADbun run lintbun testcargo check --manifest-path src-tauri/Cargo.tomlbun run buildcargo test --manifest-path src-tauri/Cargo.tomlcargo checkAfter the rebrand update, also passed:
git diff --check HEADbun run lintbun testbun run buildPR Status
release/0.2.16pranavp311:feat/gui-desktop-app