v0.5.4 — new app icon, appearance-aware Dock icon, bigger menu-bar glyph - #11
Merged
Conversation
Sources are AI renders with no alpha (artifacts/logo-*.png); all assets are derived by scripts/gen-icons.py: squircle cut + shadow for the 1024 masters, luminance-to-alpha for the 64x44 tray template, and a hand-built icon.icns whose <=64px slots use a legibility variant (header dots inpainted, no shadow, larger glyph).
macOS only re-renders bundle icons for the system appearance, so set_dock_icon_dark swaps NSApplication.applicationIconImage between the light and dark masters at runtime, driven from theme.ts on every resolved-theme change (Settings toggle, OS switch in System mode).
The header relied on -webkit-app-region: drag, which is Electron-only and does nothing in WKWebView, so the overlay-titlebar window had no drag surface at all. Tauri's data-tauri-drag-region attribute goes on the header bar and the wordmark (it only fires on the element itself, not children), leaving the tab buttons click-through as before.
core:window:default only grants getters — start_dragging is not in it, so the drag region's invoke was silently permission-denied and the data-tauri-drag-region attribute alone changed nothing.
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.
New logo rollout for the GUI.
Features
artifacts/logo-*.pngviascripts/gen-icons.pyNSApplication.applicationIconImage; System mode tracks macOS live)Changes
icon.icnsis hand-built: ≤64px slots use a legibility variant (header dots inpainted away, no shadow, larger glyph)Notes
tauri iconclobbers the hand-built icns — rerunuv run scripts/gen-icons.pyafter it (documented in CLAUDE.md)