Update Fork #1

Merged
chmodsayshello merged 696 commits from MineClone5/MineClone5:master into master 2022-03-23 14:40:26 +01:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit a887708fb5 - Show all commits

View File

@ -0,0 +1,10 @@
#!/bin/bash
for name in ./*.tga
do
convert "$name" "${name%.*}".png
# Slow and useless:
# optipng -o7 -zm1-9 "${name%.*}".png
done