Update Windows icon and add script for creating new icons in the future

Add a script that takes the PNG application icon and converts it into a
multi-res Windows icon file.

Update the Windows icon file to match the new application icon.
This commit is contained in:
Martin Kleusberg
2014-05-11 12:31:51 +02:00
parent c33344a3e8
commit 1daff4a32c
2 changed files with 12 additions and 0 deletions
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 88 KiB

+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
# This script depends on imagemagick being installed
for imgsize in 16 32 64 128
do
convert ../icons/sqlitebrowser.png -resize "$imgsize"x"$imgsize" -background transparent icon"$imgsize".png
files="$files icon$imgsize.png"
done
convert $files ../iconwin.ico
rm $files