------------------------------------------------------------ revno: 2112 committer: Rene Engelhard <r...@debian.org> branch nick: debian timestamp: Wed 2010-09-22 17:45:22 +0200 message: resize intro.bmp to 548x364 to work around i#95472 modified: changelog scripts/fix_bmp_rgb
=== modified file 'changelog' --- a/changelog 2010-09-22 15:27:48 +0000 +++ b/changelog 2010-09-22 15:45:22 +0000 @@ -59,8 +59,10 @@ extensions in /usr/lib/openoffice/share/extensions have been installed/updated * debian/control.in, debian/rules: stop building industrial package + * debian/scripts/fix_image_rgb: -resize to 548x364 to work around + i#95472 (closes: #513746) - -- Rene Engelhard <r...@debian.org> Mon, 20 Sep 2010 18:00:22 +0200 + -- Rene Engelhard <r...@debian.org> Wed, 22 Sep 2010 09:43:06 +0200 openoffice.org (1:3.2.1-6) unstable; urgency=high
=== modified file 'scripts/fix_bmp_rgb' --- a/scripts/fix_bmp_rgb 2010-04-16 19:50:47 +0000 +++ b/scripts/fix_bmp_rgb 2010-09-22 15:45:22 +0000 @@ -1,7 +1,7 @@ #!/bin/sh -e temp=`mktemp -q` -convert -compress none $1 $temp +convert -compress none -resize 548x364 $1 $temp bmptoppm $temp | ppmtobmp -bpp 24 > $2 rm -f $temp