diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-06-18 22:30:54 +0200 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-06-18 22:30:54 +0200 |
commit | a246dc96756621ec43595ef7659e27f23d548f81 (patch) | |
tree | 56903b8957c9549259e10db0362c2e8819123ae3 /Resources/graphics/update-icon.sh | |
parent | 37a81af74869c4788afeb7d724558f499ab7312c (diff) | |
download | open-keychain-a246dc96756621ec43595ef7659e27f23d548f81.tar.gz open-keychain-a246dc96756621ec43595ef7659e27f23d548f81.tar.bz2 open-keychain-a246dc96756621ec43595ef7659e27f23d548f81.zip |
Fix new actionbar icon sizes, rename icon to ic_launcher following Android naming conventions
Diffstat (limited to 'Resources/graphics/update-icon.sh')
-rwxr-xr-x | Resources/graphics/update-icon.sh | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/Resources/graphics/update-icon.sh b/Resources/graphics/update-icon.sh deleted file mode 100755 index 05b80e6b3..000000000 --- a/Resources/graphics/update-icon.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -APP_DIR=../../OpenKeychain/src/main -LDPI_DIR=$APP_DIR/res/drawable-ldpi -MDPI_DIR=$APP_DIR/res/drawable-mdpi -HDPI_DIR=$APP_DIR/res/drawable-hdpi -XDPI_DIR=$APP_DIR/res/drawable-xhdpi -XXDPI_DIR=$APP_DIR/res/drawable-xxhdpi -XXXDPI_DIR=$APP_DIR/res/drawable-xxxhdpi -PLAY_DIR=./ - - -# Launcher Icon: -# ----------------------- -# ldpi: 36x36 -# mdpi: 48x48 -# hdpi: 72x72 -# xhdpi: 96x96 -# xxhdpi: 144x144. -# xxxhdpi 192x192. -# google play: 512x512 - -NAME="icon" - -inkscape -w 36 -h 36 -e "$LDPI_DIR/$NAME.png" $NAME.svg -inkscape -w 48 -h 48 -e "$MDPI_DIR/$NAME.png" $NAME.svg -inkscape -w 72 -h 72 -e "$HDPI_DIR/$NAME.png" $NAME.svg -inkscape -w 96 -h 96 -e "$XDPI_DIR/$NAME.png" $NAME.svg -inkscape -w 144 -h 144 -e "$XXDPI_DIR/$NAME.png" $NAME.svg -inkscape -w 192 -h 192 -e "$XXXDPI_DIR/$NAME.png" $NAME.svg -inkscape -w 512 -h 512 -e "$PLAY_DIR/$NAME.png" $NAME.svg - |