> pl 34.hwn2
>       - "Lily Was Here" is def'd as \mudelatagline, override with
>       \header { tagline = "... " ; }

I updated all the tex header files, see the patch.

>       - \property textEmptyDimension: disregard script text
>       dimensions (untested)

Works great and looks great as well.

>       - MIDI bugfix.

I corrected the channel number for channel "10" (they count from 0).

Now I've checked the memory consumption a bit more carefully and
you've made a huge improvement. With 32M of RAM, I can now process 
the full Gade score in about 2.5 hours instead of the 8-9 hours 
with previous releases. It's all a matter of reduced number of 
memory swaps. Actually, the raw CPU time has increased quite a bit.


    /Mats

-------------------------------
diff -urN lily/performance.cc~ lily/performance.cc
--- lily/performance.cc~        Fri Mar 12 11:02:39 1999
+++ lily/performance.cc Wed Mar 17 16:54:43 1999
@@ -55,7 +55,7 @@
        MIDI players tend to ignore instrument settings on
        channel 10, the percussion channel by default.
        */
-      if (channel == 10)
+      if (channel == 9)
        channel++;
       s->output (midi_stream, channel++);
     }
diff -urN tex/headers.tex~ tex/headers.tex
--- tex/headers.tex~    Tue Sep 15 19:22:43 1998
+++ tex/headers.tex     Wed Mar 17 16:53:19 1999
@@ -9,7 +9,7 @@
 \rhead{}
 \chead{}
 \lfoot{}
-\cfoot{\ifnum\thepage=1{\hfill\LilyIdString}\fi}
+\cfoot{\ifnum\thepage=1{\hfill\mudelatagline}\fi}
 \rfoot{\ifnum\thepage>1{\hfill\thepage\hfill}\fi}
 \headrulewidth0mm
 \pagestyle{fancy}
diff -urN tex/lilypond-latex.tex~ tex/lilypond-latex.tex
--- tex/lilypond-latex.tex~     Mon Oct  5 12:20:06 1998
+++ tex/lilypond-latex.tex      Wed Mar 17 16:53:19 1999
@@ -54,7 +54,7 @@
                 \renewcommand{\@evenfoot}{}%
                 \renewcommand{\@evenhead}{}%
                 \renewcommand{\@oddfoot}{%
-                        \ifnum\thepage=1{\hfil \LilyIdString}%
+                        \ifnum\thepage=1{\hfil \mudelatagline}%
                         \else{%
                                 foo\hfil\the\pageno\hfil}%
                         \fi}}
@@ -63,7 +63,7 @@
                 \renewcommand{\@evenfoot}{}%
                 \renewcommand{\@evenhead}{}%
                 \renewcommand{\@oddfoot}{%
-                        \ifnum\thepage=1{\hfil \LilyIdString}%
+                        \ifnum\thepage=1{\hfil \mudelatagline}%
                         \else{foo\hfil\the\pageno\hfil}%
                         \fi}}%
 \nopagenumbers
diff -urN tex/lilypond-plaintex.tex~ tex/lilypond-plaintex.tex
--- tex/lilypond-plaintex.tex~  Tue Sep 15 19:22:43 1998
+++ tex/lilypond-plaintex.tex   Wed Mar 17 16:53:19 1999
@@ -40,7 +40,7 @@
 }   
 
 \def\lilyfooterPlainTeX{
-          \footline={\ifnum\pageno=1\smalltextfont\mudelacopyright\hfil \LilyId
String
+          \footline={\ifnum\pageno=1\smalltextfont\mudelacopyright\hfil \mudela
tagline
                 \else\hfil\the\pageno\hfil\fi}%
 }
 \advance\hoffset by -.6in

Reply via email to