Corrected location of AppX logos
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
|
@ -53,10 +53,11 @@ if command -v convert >/dev/null 2>&1; then
|
||||||
convert "${TMP_ICO}"/icon_*.png -colorspace sRGB -compress Zip "${OUT_ICO}"
|
convert "${TMP_ICO}"/icon_*.png -colorspace sRGB -compress Zip "${OUT_ICO}"
|
||||||
|
|
||||||
# Windows AppX
|
# Windows AppX
|
||||||
resize 44 44 "${SRC}" 'Square44x44Logo.png'
|
mkdir -p "appx"
|
||||||
resize 150 150 "${SRC}" 'Square150x150Logo.png'
|
resize 44 44 "${SRC}" 'appx/Square44x44Logo.png'
|
||||||
resize 400 400 "${SRC}" 'StoreLogo.png'
|
resize 150 150 "${SRC}" 'appx/Square150x150Logo.png'
|
||||||
resize 310 150 "${SRC}" 'Wide310x150Logo.png'
|
resize 400 400 "${SRC}" 'appx/StoreLogo.png'
|
||||||
|
resize 310 150 "${SRC}" 'appx/Wide310x150Logo.png'
|
||||||
else
|
else
|
||||||
echo "ImageMagick is not available - cannot convert icons"
|
echo "ImageMagick is not available - cannot convert icons"
|
||||||
fi
|
fi
|
||||||
|
|