fix(desktop): tray icon, readable logs, autostart checkbox & server landing page#26
Merged
Merged
Conversation
…nding page - Set the tray icon from the bundled app icon so it no longer shows as a blank box in the Linux system tray. - Strip ANSI colour codes from server output when stderr is not a terminal (the sidecar case), and disable ANSI in the desktop file logger, so the captured logs are readable instead of full of escape sequences. - Replace the relabeling "Enable/Disable start on login" item with a real CheckMenuItem whose checkmark reflects the actual autostart state and updates on toggle; surface previously-swallowed enable/disable errors. - Add a GET / landing page (replacing the bare 404) with live status, stats, server endpoints, a connect-a-client guide, and links to the client download and docs at daccord.gg. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
The invite and SEO snapshot pages still linked to the old daccord.cc domain; align them with the canonical daccord.gg site used elsewhere. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
CI lint (cargo fmt --check) flagged the new banner/status_line calls and the desktop build_menu signature. No behaviour change. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Add tauri-plugin-updater so the desktop app checks GitHub Releases in the background, stages signed bundles, and applies them on next restart. Surface update phase in the tray menu label and on the server landing page via a shared update_status.json polled through a new /update-status endpoint. The release workflow now signs installers and assembles a latest.json manifest from every platform's signed artifacts. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.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
Fixes four desktop/server papercuts reported on Linux Mint:
tray.icon(app.default_window_icon()...)).with_ansi(use_color())and the banner/status lines route through astatus_line()helper that strips escapes when piped (the sidecar case). The desktop's own file logger getswith_ansi(false).MenuItemwith a realCheckMenuItem, initialised from the actual autostart state. Toggling updates the checkbox to the real enabled/disabled state and logs failures (previously swallowed)./route. Addedsrc/routes/landing.rsserving a styled landing page with live status, stats (users/spaces/channels/messages), server endpoints, a connect-a-client guide, and links to the client download + docs at daccord.gg.Notes for reviewers
https://www.daccord.gg(home/client) andhttps://www.daccord.gg/docs.html#deploying-a-server(docs); the desktop bundlehomepagewas updated to match. Confirmed canonical with the user.src/routes/invite_page.rsstill hardcodes the olderhttps://daccord.ccfor its "Get daccord" button — left out of scope here, but a candidate follow-up if daccord.gg is now canonical.binaries/accordserver-*,binaries/livekit-server-*) aren't present; both crates were type-checked (server viacargo check, desktop viacargo checkwith throwaway placeholder binaries that were then removed).Test plan
🤖 Generated with Claude Code