mirror of
https://github.com/felixfoertsch/EurKEY-macOS.git
synced 2026-04-17 23:18:28 +02:00
- fix modifier key order to Apple canonical: Option+Shift (not Shift+Option) across parser, validator, PDF generator, website keyboard viewer, README - add EU badge template icons for v1.2/v1.3/v1.4 matching Apple's built-in keyboard layout icon style (edge-to-edge rounded square, text knockout) - add build-icons.sh to generate .icns from SVG source via rsvg-convert - rename create-dmg.sh → build-dmg.sh, update CI workflows - add website feature icons (install, pdf, versions) - update website icon to star-on-key design Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
567 B
XML
15 lines
567 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024">
|
|
<!-- Template badge: rounded square nearly filling the canvas.
|
|
Matches Apple's built-in keyboard layout icon style (ABC, DE, etc.). -->
|
|
<defs>
|
|
<mask id="textmask">
|
|
<rect width="1024" height="1024" fill="white"/>
|
|
<text x="512" y="700" text-anchor="middle"
|
|
font-family="Helvetica, Arial, sans-serif"
|
|
font-size="640" font-weight="bold"
|
|
fill="black">EU</text>
|
|
</mask>
|
|
</defs>
|
|
<rect x="0" y="0" width="1024" height="1024" rx="220" fill="black" mask="url(#textmask)"/>
|
|
</svg>
|