1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 03:35:53 +01:00

Added missing density setting

This commit is contained in:
Martin Tůma 2018-04-14 20:54:18 +02:00
parent 6266d71463
commit e5db00a4f4
2 changed files with 9 additions and 9 deletions

View File

@ -12,17 +12,17 @@ for e in $EXTENSIONS; do
ICONSET=$1.iconset
mkdir $ICONSET
convert -background none -resize '!16x16' "$1.svg" "$ICONSET/icon_16x16.png"
convert -background none -resize '!32x32' "$1.svg" "$ICONSET/icon_16x16@2x.png"
convert -density 400 -background none -resize '16x16' "$1.svg" "$ICONSET/icon_16x16.png"
convert -density 400 -background none -resize '32x32' "$1.svg" "$ICONSET/icon_16x16@2x.png"
cp "$ICONSET/icon_16x16@2x.png" "$ICONSET/icon_32x32.png"
convert -background none -resize '!64x64' "$1.svg" "$ICONSET/icon_32x32@2x.png"
convert -background none -resize '!128x128' "$1.svg" "$ICONSET/icon_128x128.png"
convert -background none -resize '!256x256' "$1.svg" "$ICONSET/icon_128x128@2x.png"
convert -density 400 -background none -resize '64x64' "$1.svg" "$ICONSET/icon_32x32@2x.png"
convert -density 400 -background none -resize '128x128' "$1.svg" "$ICONSET/icon_128x128.png"
convert -density 400 -background none -resize '256x256' "$1.svg" "$ICONSET/icon_128x128@2x.png"
cp "$ICONSET/icon_128x128@2x.png" "$ICONSET/icon_256x256.png"
convert -background none -resize '!512x512' "$1.svg" "$ICONSET/icon_256x256@2x.png"
convert -density 400 -background none -resize '512x512' "$1.svg" "$ICONSET/icon_256x256@2x.png"
cp "$ICONSET/icon_256x256@2x.png" "$ICONSET/icon_512x512.png"
convert -background none -resize '!1024x1024' "$1.svg" "$ICONSET/icon_512x512@2x.png"
convert -density 400 -background none -resize '1024x1024' "$1.svg" "$ICONSET/icon_512x512@2x.png"
iconutil -c icns -o $1.icns "$ICONSET"
rm -R "$ICONSET" $1.svg
# rm -R "$ICONSET" $1.svg
done

View File

@ -8,6 +8,6 @@ for e in $EXTENSIONS; do
EXT=`echo $1 | tr /a-z/ /A-Z/`
sed -e "s/\$EXTENSION/$EXT/" -e "s/\$COLOR/$2/" icon-template.svg > $1.svg
convert $1.svg -define icon:auto-resize $1.ico
convert -density 400 $1.svg -define icon:auto-resize $1.ico
rm $1.svg
done