images/smilies/render-smilies.sh
author Dan
Thu, 29 Jul 2010 12:25:14 -0400
changeset 1270 bd3ee7f12bc1
parent 944 073a42e4177f
permissions -rw-r--r--
Some fixes to autofill with Unicode usernames; fixed a few end user experience pieces of the group CP. Users are now allowed to freely leave GROUP_OPEN and GROUP_REQUEST groups, and must be removed by a group mod for GROUP_CLOSED and GROUP_HIDDEN.

#!/bin/bash
for f in *.svg; do
    echo Converting $f
    fname=`echo $f | cut -d '.' -f 1`
    rm -f $fname.png
    inkscape -z -f $f -w 22 -h 22 -e ./$fname.png
done