From: fred Date: Tue, 26 Mar 2002 22:14:55 +0000 (+0000) Subject: lilypond-1.1.56 X-Git-Tag: release/1.5.59~2299 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c3bcfe6b0a6082a58b14df5b0e50bf18a9261f41;p=lilypond.git lilypond-1.1.56 --- diff --git a/NEWS b/NEWS index 614d60fffa..f2193e35fd 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,49 @@ +pl 55.uu1 + - use GS' anti aliasing + +pl 55.jcn1 + - auto-beamer: consider current duration first in ending/starting beam + this way, you can have 16ths auto-beamed, in some way, but 8ths never + beamAutoEnd_16 = 1; + beamAutoEnd_8 = 1/8; + - added some classes and few lines of doco to .dstreamrc + - refman: + * comment out broken + * commented out stale tex macros (tex/* dir too) + * bfs/new syntax: chords + - more midi2ly renaming stuff + - bf: make info (midi2ly and other renaming) + +pl 54.jcn2 + - bf: auto-beamer: don't beam over skips + - update BUGS + + +pl 55.mb2 + - Font update: added more mensural style time signatures, + old2/4, old6/8alt, old4/8 thanks to Christian Mondrup. + - bf: correct indentation of first line (removed \leavevmode) + plain TeX still gives wrong indentation + - bf: volta brackets broken over several lines get open end. + Final bracket gets vertical end if it stops at double bar. + - Dashed grace flags also for durations shorter than 8. + - N.W.Gade: fixed some details + +pl 55.mb1 + - bf: font magnification also in PS output + - bf: set the GS_* variables correctly in buildscripts/lilypond-*.sh + - bf, lily.scm: errors in (de)crescendo + - bf, lilyponddefs: removed \noindent + + +pl 55.hwn1 + - fixes: horn-concerto-3.ly + - bf: grace before tuplet. + - bf: decrescendo + - bf: multimeasrest numbers centered. + +**************** + pl 53.jbr2 - Documentation/ntweb/index.html: Updated nt distribution web page diff --git a/buildscripts/ps-to-gifs.sh b/buildscripts/ps-to-gifs.sh index 0f4afe0a5a..bf9c8c8c75 100644 --- a/buildscripts/ps-to-gifs.sh +++ b/buildscripts/ps-to-gifs.sh @@ -75,13 +75,13 @@ fi rm -f $BASE{.ppm,.$GIF} $BASE-page*{.ppm,.$GIF} # generate the pixmap at twice the size, then rescale (for antialiasing) -cat $FILE | gs -sDEVICE=ppmraw $SIZE -sOutputFile="$BASE-page%d.ppm" -r180 -dNOPAUSE - -c quit $FILE +cat $FILE | gs -sDEVICE=pgm $SIZE -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -sOutputFile="$BASE-page%d.ppm" -r90 -dNOPAUSE - -c quit $FILE # quant is soo slow # cat $PPMFILE | ppmquant 2 | pnmscale 0.3333 | pnmcrop | $PNMTOGIF $color > $OUTFILE PPMS=`ls $BASE*ppm` for i in $PPMS; do o=`dirname $i`/`basename $i .ppm`.$GIF - cat $i | pnmscale 0.5 | $CROP | $PNMTOGIF $color > $o + cat $i | $CROP | $PNMTOGIF $color > $o rm $i done