- Timestamp:
- 2014-09-05T17:08:31+02:00 (10 years ago)
- Location:
- trunk
- Files:
-
- 3 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.classpath
r7403 r7507 5 5 <classpathentry kind="src" path="test/functional"/> 6 6 <classpathentry kind="src" path="test/performance"/> 7 <classpathentry excluding="build/|data_nodist/|dist/| doc/|lib/|macosx/|nb/|src/|test/|test/build/|test/functional/|test/performance/|test/unit/|tools/|utils/|linux/" kind="src" path=""/>7 <classpathentry excluding="build/|data_nodist/|dist/|linux/|macosx/|nb/|src/|test/|test/build/|test/functional/|test/performance/|test/unit/|tools/|utils/" kind="src" path=""/> 8 8 <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/> 9 9 <classpathentry kind="lib" path="test/lib/fest/fest-assert-1.0.jar"/> -
trunk/optimize-images
r4939 r7507 3 3 for x in $(find images/ -name "*.png"); do 4 4 echo "Processing ${x}" 5 identify -quiet -verbose "${x}" | grep "alpha: 1-bit" > /dev/null 6 if [ "$?" -ne "0" ]; then 7 # non-1-bit-alpha image, process normally 8 optipng -o7 -quiet "${x}" 9 else 10 # disable color type reduction because that will break 11 # transparency for the images in JOSM using the current 12 # image loading method (see #1576) 13 optipng -nc -o7 -quiet "${x}" 14 fi 5 optipng -o7 -quiet "${x}" 15 6 done
Note:
See TracChangeset
for help on using the changeset viewer.