feat(brand): new app/tray icon from the DropPilot logo#67
Merged
Conversation
Dark rounded tile + violet droplet mark, rendered to icons/icon.png (1024x1024 RGBA) from icons/icon.svg via a dependency-free Electron offscreen script (npm run build:icon). electron-builder derives the installer .ico from this PNG and the tray reuses it. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3 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
Replaces the old AI-mascot app icon with the new DropPilot mark — a violet droplet with a white navigation arrow on a dark rounded tile — matching the README/brand refresh shipped in #64.
This swaps a single asset:
icons/icon.png. Persrc/main/index.ts(resolveTrayIcon) the tray reuses that same PNG, and electron-builder is configured withicon: icons/icon.pngand derives the installer.icofrom it — so this one file covers the window icon, taskbar, installer, and tray.What changed
icons/icon.svg— new vector source for the icon (dark#0e1014rounded tile + the droplet mark). Derived fromicons/logo.svg.icons/icon.png— regenerated, now 1024×1024 RGBA (was RGB). Alpha keeps the rounded-tile corners transparent.scripts/build-icon.mjs— dependency-free generator that renders the SVG → PNG using the Electron binary already in the project (offscreen render, no new npm dep, no network). Matches the repo's existing dependency-free-scripts style.package.json— addsnpm run build:iconto regenerate the PNG after editingicons/icon.svg.Why
The previous
icon.pngwas a busy 1024px raster mascot that didn't scale or stay consistent with the new brand. The icon now has a clean vector source and a reproducible build step.Reviewer notes
npm run build:icon(editsicons/icon.svg→ rewritesicons/icon.png).icons/tray/folder is unused by the code and left untouched.Test plan
verifypasses.🤖 Generated with Claude Code