From 3fddc8effca227707773b5655c4cae4acb8396a6 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 13 Apr 2012 08:45:26 +0200 Subject: 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 --- share/qt/make_windows_icon.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 share/qt/make_windows_icon.py (limited to 'share/qt/make_windows_icon.py') 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} + -- cgit v1.2.3