Set up 1024x1024 icon for macOS

This commit is contained in:
Elian Doran 2024-08-04 14:26:30 +03:00
parent 3ce2c98317
commit 712b180f94
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions

View File

@ -21,8 +21,10 @@ magick -background none "../icon-purple.svg" -resize "256x256" "./png/256x256-de
# Build Mac .icns
magick -background none "../icon-color.svg" -resize "512x512" "./png/512x512.png"
icnsutil compose -f "mac/icon.icns" "./png/512x512.png"
magick -background none "../icon-color.svg" -resize "1024x1024" "./png/1024x1024.png"
icnsutil compose -f "mac/icon.icns" "./png/512x512.png" "./png/1024x1024.png"
rm "./png/512x512.png"
rm "./png/1024x1024.png"
# Build Windows icon
magick -background none "../icon-color.svg" -define icon:auto-resize=16,32,48,64,128,256 "./win/icon.ico"

Binary file not shown.