]> git.donarmstrong.com Git - lilypond.git/commitdiff
''
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 7 Apr 2002 10:54:41 +0000 (10:54 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 7 Apr 2002 10:54:41 +0000 (10:54 +0000)
ChangeLog
Documentation/topdocs/INSTALL.texi
VERSION
lily/completion-note-heads-engraver.cc
lilypond-mode.el

index 905faab3aa22919d7a76cf18e3d7e091480cc099..57834be19cb315c93c175f4a846f8207559e3ad9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,22 @@
+2002-04-06  Mats Bengtsson  <matsb@matsb@s3.kth.se>
+
+       * lily/stem-engraver.cc (acknowledge_grob): Revert to old way of
+       finding out the duration. Fixes chord tremolo bug. 
+
+       * lily/completion-note-heads-engraver.cc (process_music): Set
+       correct duration for all requests of the broken notes.
+
+       * input/regression/completion-heads.ly: Added example of
+       Completion_heads_engraver.
+
+       * lilypond-mode.el: Added "2Midi" command
+
 2002-04-05  Han-Wen  <hanwen@cs.uu.nl>
 
+
+       * patches from Chris Jackson for pedals.
+
+
        * mf/cmbase.mf: remove file. -- do without s and z signs for now.
 
 2002-04-04  Han-Wen  <hanwen@cs.uu.nl>
index 67ad977ab9c38acb3ae7d21f06bee33ad79b7e64..6349d6ddc8ceeb9b574979557e2057cb846919f0 100644 (file)
@@ -126,7 +126,6 @@ Check out @uref{http://www.python.org, the python website}.
 @item GUILE (version 1.4 or newer).
 Check out
 @uref{http://www.gnu.org/software/guile/guile.html,the GUILE webpage}.
-Version 1.4 is recommended for better performance.
 
 @item GNU Make. 
 Check out
diff --git a/VERSION b/VERSION
index 266aff3c6397c2ebf062f1f3914e0f17dbf6d7d5..34270fd7a21ec6de58d5d7faf23251a30469bed9 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond
 MAJOR_VERSION=1
 MINOR_VERSION=5
 PATCH_LEVEL=50
-MY_PATCH_LEVEL=
+MY_PATCH_LEVEL=mb1
 
 
 # use the above to send patches: MY_PATCH_LEVEL is always empty for a
index ebfa26a947afe94e181dce294a98102543d006f8..ffb97241275195212fbaa8434e35a22ce0fe6f8e 100644 (file)
@@ -184,9 +184,6 @@ Completion_heads_engraver::process_music ()
            Music * m = note_req_l_arr_[i]->clone ();
            scratch_note_reqs_.push (m);
          }
-
-      for (int i =0; i < scratch_note_reqs_.size (); i++)
-       scratch_note_reqs_[i]->set_mus_property ("duration", note_dur.smobbed_copy ());
     }
 
   
@@ -202,7 +199,8 @@ Completion_heads_engraver::process_music ()
          SCM pits = note_req_l_arr_[i]->get_mus_property ("pitch");
          req->set_mus_property ("pitch",pits);
        }
-
+      
+      req->set_mus_property ("duration", note_dur.smobbed_copy ());
       note_p->set_grob_property ("duration-log",
                                 gh_int2scm (note_dur.duration_log ()));
       
index 76eb43e1d56c0307ec93d32324ec05da894f443a..592de620185ec06ae54d7d8cf8683f66f622bc94 100644 (file)
@@ -169,6 +169,7 @@ in LilyPond-include-path."
 
     ("2Dvi" . ("ly2dvi %s" . "View"))
     ("2PS" . ("ly2dvi -P %s" . "View"))
+    ("2Midi" . ("lilypond -m %s" . "View"))
 
     ("Book" . ("lilypond-book %x" . "LaTeX"))
     ("LaTeX" . ("latex '\\nonstopmode\\input %l'" . "View"))