diff --git a/package.sh b/package.sh index be8c1a0..2272ebc 100755 --- a/package.sh +++ b/package.sh @@ -1,4 +1,4 @@ #!/bin/bash -SCOURVER="0.07" +SCOURVER="0.09" tar cvf scour-$SCOURVER.tar scour.py LICENSE NOTICE README.txt gzip scour-$SCOURVER.tar diff --git a/scour.py b/scour.py index aac8647..d00bb7d 100755 --- a/scour.py +++ b/scour.py @@ -45,11 +45,6 @@ # * Collapse all group based transformations # Next Up: -# + Remove unnecessary nested elements -# + Remove duplicate gradient stops (same offset, stop-color, stop-opacity) -# + Always keep fonts inside , always keep ids on fonts -# + rework command-line argument processing so that options are configurable -# + make ID stripping optional (disabled by default) # - Convert all colors to #RRGGBB format # - Reduce #RRGGBB format to #RGB format when possible # https://bugs.edge.launchpad.net/ubuntu/+source/human-icon-theme/+bug/361667/ @@ -78,7 +73,7 @@ import os.path import urllib APP = 'scour' -VER = '0.08' +VER = '0.09' COPYRIGHT = 'Copyright Jeff Schiller, 2009' NS = { 'SVG': 'http://www.w3.org/2000/svg',