From daedf5be8c077689af1987fd6932568d9ad64a9f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 13 Jan 2014 23:18:25 +1100 Subject: UI Icons: use a python script rather then a shell (for non unix systems) --- release/datafiles/blender_icons.sh | 8 -------- release/datafiles/blender_icons_update.py | 12 ++++++++++++ release/datafiles/prvicons.sh | 7 ------- release/datafiles/prvicons_update.py | 10 ++++++++++ 4 files changed, 22 insertions(+), 15 deletions(-) delete mode 100755 release/datafiles/blender_icons.sh create mode 100755 release/datafiles/blender_icons_update.py delete mode 100755 release/datafiles/prvicons.sh create mode 100755 release/datafiles/prvicons_update.py (limited to 'release') diff --git a/release/datafiles/blender_icons.sh b/release/datafiles/blender_icons.sh deleted file mode 100755 index 62746d0ab7e..00000000000 --- a/release/datafiles/blender_icons.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# This script updates icons from the SVG file - -BASEDIR=$(dirname "$0") - -inkscape "$BASEDIR/blender_icons.svg" --export-dpi=90 --without-gui --export-png="$BASEDIR/blender_icons16.png" -inkscape "$BASEDIR/blender_icons.svg" --export-dpi=180 --without-gui --export-png="$BASEDIR/blender_icons32.png" - diff --git a/release/datafiles/blender_icons_update.py b/release/datafiles/blender_icons_update.py new file mode 100755 index 00000000000..6f8f366544c --- /dev/null +++ b/release/datafiles/blender_icons_update.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python3 + +# This script updates icons from the SVG file +import os + +BASEDIR = os.path.abspath(os.path.dirname(__file__)) + os.sep + +cmd = 'inkscape "%sblender_icons.svg" --export-dpi=90 --without-gui --export-png="%sblender_icons16.png"' % (BASEDIR, BASEDIR) +os.system(cmd) +cmd = 'inkscape "%sblender_icons.svg" --export-dpi=180 --without-gui --export-png="%sblender_icons32.png"' % (BASEDIR, BASEDIR) +os.system(cmd) + diff --git a/release/datafiles/prvicons.sh b/release/datafiles/prvicons.sh deleted file mode 100755 index 95546ff0a4a..00000000000 --- a/release/datafiles/prvicons.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -# This script updates icons from the SVG file - -BASEDIR=$(dirname "$0") - -inkscape "$BASEDIR/prvicons.svg" --without-gui --export-png="$BASEDIR/prvicons.png" - diff --git a/release/datafiles/prvicons_update.py b/release/datafiles/prvicons_update.py new file mode 100755 index 00000000000..ecc466aab72 --- /dev/null +++ b/release/datafiles/prvicons_update.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +# This script updates icons from the SVG file +import os + +BASEDIR = os.path.abspath(os.path.dirname(__file__)) + os.sep + +cmd = 'inkscape "%sprvicons.svg" --without-gui --export-png="%sprvicons.png"' % (BASEDIR, BASEDIR) +os.system(cmd) + -- cgit v1.2.3