aboutsummaryrefslogtreecommitdiff
path: root/share/qt/make_windows_icon.py
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-04-13 08:45:26 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2012-04-14 08:46:16 +0200
commit3fddc8effca227707773b5655c4cae4acb8396a6 (patch)
tree27e25d70af6de0e7a38a919b8865edee347ba4c8 /share/qt/make_windows_icon.py
parentc3c203ccd9ce9ee958cdf090b2cdf038554c038d (diff)
downloadbitcoin-3fddc8effca227707773b5655c4cae4acb8396a6.tar.xz
Update translations for bitcoin core
- Move scripts/qt to share/qt, to clean up toplevel directories - Update english ts file which is used to source messages for Transifex - In extract_strings_qt.py use a glob *.h *.cpp, this is safe now that the Wx UI files are removed
Diffstat (limited to 'share/qt/make_windows_icon.py')
-rwxr-xr-xshare/qt/make_windows_icon.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/share/qt/make_windows_icon.py b/share/qt/make_windows_icon.py
new file mode 100755
index 0000000000..bf607b1c62
--- /dev/null
+++ b/share/qt/make_windows_icon.py
@@ -0,0 +1,9 @@
+#!/bin/bash
+# create multiresolution windows icon
+ICON_SRC=../../src/qt/res/icons/bitcoin.png
+ICON_DST=../../src/qt/res/icons/bitcoin.ico
+convert ${ICON_SRC} -resize 16x16 bitcoin-16.png
+convert ${ICON_SRC} -resize 32x32 bitcoin-32.png
+convert ${ICON_SRC} -resize 48x48 bitcoin-48.png
+convert bitcoin-16.png bitcoin-32.png bitcoin-48.png ${ICON_DST}
+