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:
parent
20b1c88b2f
commit
1eac934283
@ -1,2 +0,0 @@
|
||||
#!/bin/sh
|
||||
git log --pretty="format:%an %ae" | sort | uniq -c | sort -n -r | sed -e 's/^ *[0-9]* //g'
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user