feat(ui): add Microbridge logo and installer/tray icons - #38
Conversation
Introduce a proper brand mark and wire it through the desktop bundle so
the installer, Dock, and menu bar all carry the identity instead of a
placeholder icon.
- docs/design/logo/microbridge-mark.svg — the app-icon master: a
focus-blue bridge on a dark squircle that doubles as a lowercase "m",
with a glowing white live-signal node on the deck (the product's soul:
live agent state on the deck). Reproducible SVG, verified at 1024px
and 32px.
- docs/design/logo/microbridge-tray.svg — a dedicated monochrome bridge
glyph for the menu bar. The app icon is an opaque squircle and would
render as a black blob under macOS template tinting, so the tray gets
its own transparent silhouette.
- Regenerate the macOS/Linux icon set from the master (icns, ico, PNGs)
and point bundle.icon at the full desktop set.
- Tray now loads the dedicated glyph via include_image!("icons/tray.png")
instead of the opaque window icon.
- Sync this app's Cargo.lock to the 0.1.0 workspace version (stale 0.0.1).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 1 minute Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (10)
📒 Files selected for processing (3)
Comment |
There was a problem hiding this comment.
Pull request overview
This PR introduces Microbridge branding assets (app icon master + tray glyph) and wires them into the Tauri desktop bundle so the installer/app icon and the system tray/menu bar icon reflect the new brand.
Changes:
- Added new SVG sources for the main app mark and a monochrome tray glyph under
docs/design/logo/. - Updated Tauri bundling config to use the full multi-size icon set (
png,icns,ico) instead of a single placeholder PNG. - Updated the tray icon code path to use a dedicated template-friendly tray image (
icons/tray.png) and refreshed the Tauri crate’sCargo.lockversions to0.1.0.
Reviewed changes
Copilot reviewed 2 out of 13 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| docs/design/logo/microbridge-tray.svg | Adds the monochrome SVG source for the tray/menu bar glyph. |
| docs/design/logo/microbridge-mark.svg | Adds the primary SVG master mark used to generate desktop icon assets. |
| apps/microbridge-ui/src-tauri/tauri.conf.json | Switches bundling config from a single icon to a multi-icon set (32/128/2x, icns, ico). |
| apps/microbridge-ui/src-tauri/src/lib.rs | Uses a dedicated tray icon image via tauri::include_image!("icons/tray.png") for proper macOS template tinting. |
| apps/microbridge-ui/src-tauri/Cargo.lock | Updates lockfile package versions (notably mb-protocol and microbridge-ui) to 0.1.0. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
What
Gives Microbridge a real brand mark and wires it through the desktop bundle so the installer, Dock, and menu bar all carry the identity instead of the placeholder icon — in time for the launch.
The mark
A focus-blue bridge on a dark squircle that doubles as a lowercase "m", with a glowing white live-signal node on the deck. The bridge is the product's mechanism (a neutral span connecting many agents to one deck); the lit node is its soul (live agent state rendered on the hardware). Dark tile matches the menu bar UI. Reproducible as SVG, verified legible at both 1024px (Dock/DMG) and 32px (tray).
docs/design/logo/microbridge-mark.svgdocs/design/logo/microbridge-tray.svgChanges
icns,ico, PNG sizes) from the SVG master viatauri icon, and pointedbundle.iconat the full desktop set (was a single placeholder PNG).include_image!("icons/tray.png")instead ofdefault_window_icon().0.1.0workspace version (was stale0.0.1).Verification
cargo checkon the tauri crate passes.🤖 Generated with Claude Code