openclonk/planet/Objects.ocd/Effects.ocd
Julius Michaelis 0df19491e7 Get rid of incorrect sRGB headers in png files.
libpng >1.6 keeps nagging because of that.

Quick bash script to do so:
find . -name *.png \
| while read f; do
	n=$(pngcrush -ow -rem allb-reduce "$f" 2>&1 | grep -c 'incorrect sRGB');
	if [[ $n -gt 0 ]]; then
		git add "$f"
	else
		git checkout "$f"
	fi
done
2015-09-12 21:27:53 +09:00
..
Bubble.ocd CreateObject/CreateObjectAbove (#1214) 2015-01-11 19:02:03 +01:00
Cloud.ocd remove some more empty graphics 2015-07-20 18:11:16 +02:00
Flame.ocd remove Flame graphics and clean up script 2015-03-24 21:37:51 +01:00
Light.ocd remove some more empty graphics 2015-07-20 18:11:16 +02:00
Particles.ocd Get rid of incorrect sRGB headers in png files. 2015-09-12 21:27:53 +09:00
Trajectory.ocd fixed gravity calculation for trajectories 2015-09-06 13:46:45 +02:00