Skip to content

feat(ui): add Microbridge logo and installer/tray icons - #38

Merged
DevVig merged 1 commit into
mainfrom
feat/microbridge-logo
Jul 18, 2026
Merged

feat(ui): add Microbridge logo and installer/tray icons#38
DevVig merged 1 commit into
mainfrom
feat/microbridge-logo

Conversation

@DevVig

@DevVig DevVig commented Jul 18, 2026

Copy link
Copy Markdown
Owner

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).

Surface Source
App icon master docs/design/logo/microbridge-mark.svg
Menu bar glyph docs/design/logo/microbridge-tray.svg

Changes

  • App icon — regenerated the macOS/Linux icon set (icns, ico, PNG sizes) from the SVG master via tauri icon, and pointed bundle.icon at the full desktop set (was a single placeholder PNG).
  • Tray glyph — the app icon is an opaque squircle and would render as a black blob under macOS template tinting, so the menu bar gets a dedicated transparent monochrome bridge silhouette. Tray now loads it via include_image!("icons/tray.png") instead of default_window_icon().
  • Cargo.lock — synced this app's lockfile to the 0.1.0 workspace version (was stale 0.0.1).
  • Scope is macOS + Linux only; no iOS/Android/Windows-Store tiles are committed.

Verification

  • cargo check on the tauri crate passes.
  • App icon and tray glyph both visually confirmed at Dock and menu-bar sizes.

🤖 Generated with Claude Code

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>
Copilot AI review requested due to automatic review settings July 18, 2026 14:06
@coderabbitai

coderabbitai Bot commented Jul 18, 2026

Copy link
Copy Markdown

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 1 minute

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

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 configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: b2372f34-be04-442a-a947-bf482b168c30

📥 Commits

Reviewing files that changed from the base of the PR and between a80b371 and 008e277.

⛔ Files ignored due to path filters (10)
  • apps/microbridge-ui/src-tauri/Cargo.lock is excluded by !**/*.lock
  • apps/microbridge-ui/src-tauri/icons/128x128.png is excluded by !**/*.png
  • apps/microbridge-ui/src-tauri/icons/128x128@2x.png is excluded by !**/*.png
  • apps/microbridge-ui/src-tauri/icons/32x32.png is excluded by !**/*.png
  • apps/microbridge-ui/src-tauri/icons/64x64.png is excluded by !**/*.png
  • apps/microbridge-ui/src-tauri/icons/icon.ico is excluded by !**/*.ico
  • apps/microbridge-ui/src-tauri/icons/icon.png is excluded by !**/*.png
  • apps/microbridge-ui/src-tauri/icons/tray.png is excluded by !**/*.png
  • docs/design/logo/microbridge-mark.svg is excluded by !**/*.svg
  • docs/design/logo/microbridge-tray.svg is excluded by !**/*.svg
📒 Files selected for processing (3)
  • apps/microbridge-ui/src-tauri/icons/icon.icns
  • apps/microbridge-ui/src-tauri/src/lib.rs
  • apps/microbridge-ui/src-tauri/tauri.conf.json

Comment @coderabbitai help to get the list of available commands.

@DevVig
DevVig merged commit b66df92 into main Jul 18, 2026
7 checks passed
@DevVig
DevVig deleted the feat/microbridge-logo branch July 18, 2026 14:07

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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’s Cargo.lock versions to 0.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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants