Skip to content

Commit

Permalink
use 'gm' for conversion to .tga (due to bug in Debian Sid imagemagick)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnalis committed Nov 14, 2020
1 parent 842c9fb commit 93ed008
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Data_Generators/misc/png_to_cpr
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ TMPTGA="$TMPBASE.tga"
echo "Converting $PNGSRC to $FINALCPR (using embedded PAL)"

rm -f "$FINALCPR"
convert "$PNGSRC" "$TMPTGA" || exit 14
gm convert "$PNGSRC" "$TMPTGA" || exit 14
tga2cpr "$TMPBASE" > /dev/null || exit 16

rm -f "$TMPTGA"
Expand Down
2 changes: 2 additions & 0 deletions Documents/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
v 0.2.8
- use 'gm' for conversion to .tga, due to Debian bug https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974750
v 0.2.7
- move debian/* packaging to https://salsa.debian.org/mnalis/ironseed
v 0.2.6
Expand Down
2 changes: 1 addition & 1 deletion version.pas
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ implementation
begin
versionstring :=
{12345678901234567890}
'v1.30.0001 fpc 0.2.7';
'v1.30.0001 fpc 0.2.8';
end.

0 comments on commit 93ed008

Please sign in to comment.