Document generate-pngs.sh, remove generate-authors.sh

The author list is easy enough to create with git shortlog -s -n
This commit is contained in:
Christopher Eby 2012-02-19 06:10:24 -06:00
parent 20b1c88b2f
commit 1eac934283
2 changed files with 5 additions and 2 deletions

View File

@ -1,2 +0,0 @@
#!/bin/sh
git log --pretty="format:%an %ae" | sort | uniq -c | sort -n -r | sed -e 's/^ *[0-9]* //g'

View File

@ -1,5 +1,10 @@
#!/bin/sh
# This script can be used to generate PNGs from the SVGs stored in orig/.
# For each SVG in orig/, PNGs will be created in the drawable directories
# for each DPI with the same name as the SVG. If the PNGs already exist
# and are newer than the SVG, they will not be recreated.
gen() {
name=`basename "$1" .svgz`
png="res/drawable-$2/$name.png"