mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-08-08 09:08:43 +00:00
Fix MacOS icon oopsie (#789)
This commit is contained in:
parent
5beb9d8b17
commit
b286306648
4 changed files with 32 additions and 20 deletions
26
.github/mac-bundle-qt.sh
vendored
26
.github/mac-bundle-qt.sh
vendored
|
@ -11,16 +11,22 @@ convert docs/img/mac_icon.ico -alpha on -background none -resize 1024x1024 PNG32
|
|||
# Apply the mask to our icon
|
||||
convert temp.png rounded_mask.png -compose DstIn -composite temp.png
|
||||
|
||||
convert temp.png -resize 16x16 alber.iconset/icon_16x16.png
|
||||
convert temp.png -resize 32x32 alber.iconset/icon_16x16@2x.png
|
||||
convert temp.png -resize 32x32 alber.iconset/icon_32x32.png
|
||||
convert temp.png -resize 64x64 alber.iconset/icon_32x32@2x.png
|
||||
convert temp.png -resize 128x128 alber.iconset/icon_128x128.png
|
||||
convert temp.png -resize 256x256 alber.iconset/icon_128x128@2x.png
|
||||
convert temp.png -resize 256x256 alber.iconset/icon_256x256.png
|
||||
convert temp.png -resize 512x512 alber.iconset/icon_256x256@2x.png
|
||||
convert temp.png -resize 512x512 alber.iconset/icon_512x512.png
|
||||
convert temp.png -resize 1024x1024 alber.iconset/icon_512x512@2x.png
|
||||
# Normal icons
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 16x16 alber.iconset/icon_16x16.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 32x32 alber.iconset/icon_32x32.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 64x64 alber.iconset/icon_64x64.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 128x128 alber.iconset/icon_128x128.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 256x256 alber.iconset/icon_256x256.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 512x512 alber.iconset/icon_512x512.png
|
||||
|
||||
# High DPI icons
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 32x32 alber.iconset/icon_16x16@2x.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 64x64 alber.iconset/icon_32x32@2x.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 128x128 alber.iconset/icon_64x64@2x.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 256x256 alber.iconset/icon_128x128@2x.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 512x512 alber.iconset/icon_256x256@2x.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 1024x1024 alber.iconset/icon_512x512@2x.png
|
||||
|
||||
iconutil --convert icns alber.iconset
|
||||
rm rounded_mask.png temp.png
|
||||
|
||||
|
|
26
.github/mac-bundle.sh
vendored
26
.github/mac-bundle.sh
vendored
|
@ -11,16 +11,22 @@ convert docs/img/mac_icon.ico -alpha on -background none -resize 1024x1024 PNG32
|
|||
# Apply the mask to our icon
|
||||
convert temp.png rounded_mask.png -compose DstIn -composite temp.png
|
||||
|
||||
convert temp.png -resize 16x16 alber.iconset/icon_16x16.png
|
||||
convert temp.png -resize 32x32 alber.iconset/icon_16x16@2x.png
|
||||
convert temp.png -resize 32x32 alber.iconset/icon_32x32.png
|
||||
convert temp.png -resize 64x64 alber.iconset/icon_32x32@2x.png
|
||||
convert temp.png -resize 128x128 alber.iconset/icon_128x128.png
|
||||
convert temp.png -resize 256x256 alber.iconset/icon_128x128@2x.png
|
||||
convert temp.png -resize 256x256 alber.iconset/icon_256x256.png
|
||||
convert temp.png -resize 512x512 alber.iconset/icon_256x256@2x.png
|
||||
convert temp.png -resize 512x512 alber.iconset/icon_512x512.png
|
||||
convert temp.png -resize 1024x1024 alber.iconset/icon_512x512@2x.png
|
||||
# Normal icons
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 16x16 alber.iconset/icon_16x16.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 32x32 alber.iconset/icon_32x32.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 64x64 alber.iconset/icon_64x64.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 128x128 alber.iconset/icon_128x128.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 256x256 alber.iconset/icon_256x256.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 72 -resize 512x512 alber.iconset/icon_512x512.png
|
||||
|
||||
# High DPI icons
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 32x32 alber.iconset/icon_16x16@2x.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 64x64 alber.iconset/icon_32x32@2x.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 128x128 alber.iconset/icon_64x64@2x.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 256x256 alber.iconset/icon_128x128@2x.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 512x512 alber.iconset/icon_256x256@2x.png
|
||||
convert temp.png -alpha on -background none -units PixelsPerInch -density 144 -resize 1024x1024 alber.iconset/icon_512x512@2x.png
|
||||
|
||||
iconutil --convert icns alber.iconset
|
||||
rm rounded_mask.png temp.png
|
||||
|
||||
|
|
BIN
alber.iconset/icon_64x64.png
Normal file
BIN
alber.iconset/icon_64x64.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
alber.iconset/icon_64x64@2x.png
Normal file
BIN
alber.iconset/icon_64x64@2x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
Loading…
Add table
Add a link
Reference in a new issue