fix(branding): enlarge the logo in icon.png - #8
Merged
Merged
Conversation
The previous icon.png was generated with qlmanage, which placed the 36x36 SVG untouched in the top-left corner of a 512x512 canvas — the logo showed up as a tiny speck in Claude Desktop's extension UI. Re-render with sharp: rasterize the SVG, trim the transparent border, and centre the mark at ~84% of the 512x512 canvas. icon.svg also gains an explicit viewBox so it rasterizes correctly. 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.
Problem
In Claude Desktop's "Configure" dialog the logo showed up as a tiny speck. The previous
icon.pngwas generated withqlmanage, which dropped the 36×36 SVG untouched into the top-left corner of a 512×512 canvas instead of scaling it — so the mark occupied ~7% of the image.Fix
Re-rendered with
sharp: rasterize the SVG, trim the transparent border, and centre the mark at ~84% of the 512×512 canvas (small even margin).icon.svgalso gains an explicitviewBox="0 0 36 36"so it rasterizes correctly with any renderer.The new
icon.pngis a properly sized, centred 512×512 icon — visible in the file diff.Once merged, cut a release (
v0.1.4) so the new icon ships in the.mcpbbundle.🤖 Generated with Claude Code