mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-05-09 05:19:55 -05:00
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:
Binary file not shown.
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 88 KiB |
Executable
+12
@@ -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
|
||||
Reference in New Issue
Block a user