]> git.donarmstrong.com Git - lilypond.git/commitdiff
release commit
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 4 Feb 2004 19:14:55 +0000 (19:14 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 4 Feb 2004 19:14:55 +0000 (19:14 +0000)
ChangeLog
Documentation/topdocs/NEWS.texi
Documentation/user/refman.itely
lily/output-property-engraver.cc

index a8de456371f7752b4577c23a0c41d60c6ac47396..c22ea8cf7b170fe448ff10a48a20a8c6626c576d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2004-02-04  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
+       * VERSION: release 2.1.18.
+       
        * input/test: remove octave-duplicate.ly
 
 2004-02-04  Jan Nieuwenhuizen  <janneke@gnu.org>
index d5f708864b01a7e86ce7150b06b1f87e518b19fe..41916e01df6532f0014a9470306014a421755806 100644 (file)
@@ -18,8 +18,8 @@ Version 2.1.13
 
 @itemize @bullet
 
-@item The automatic staff changer was internally rewritten. The new
-syntax  for this  is
+@item The automatic staff changer was internally rewritten. As a
+result, the syntax  has been simplified as well:
 
 @example
   \autochange @var{the music}
@@ -43,7 +43,7 @@ PostScript file output is disallowed, and lilypond-bin is invoked with
 @code{--safe-mode}, the user's Guile expressions are evaluated in a
 safe environment and file inclusion is not allowed.
 
-Warning: this does protect against denial-of-service attacks using
+Warning: this does not protect against denial-of-service attacks using
 Guile, @TeX{} or PostScript.
 
 (This feature is still experimental.)
@@ -226,7 +226,7 @@ the desired size. As a side-effect, there are now no longer
 limitations in using smaller fonts (eg. grace notes) at small staff
 sizes.
 
-@item The appearance of stem tips is now also engraved with rounded corners.
+@item Stem tips are now also engraved with rounded corners.
 
 @item
 The placement of accidentals on chords and ledgered notes is improved.
index 1bc941c76559d9752684617d93cb5ddedca41762..7178017d4501cf78fb6ce0d36b180273fef4ebf8 100644 (file)
@@ -7789,18 +7789,18 @@ After such a tweak, the definition is independent of the objects in
 enclosing contexts. For example
 
 @lilypond[verbatim,fragment]
-  \property Voice.Stem \set #'direction = #1
-  a'4
+  \property Voice.Stem \set #'direction = #UP
+  d''4
   \property Staff.Stem \set #'thickness = #4.0
-  a'8
-  \new Voice { a'32 }
+  d''8
+  \new Voice { d'32 }
 @end lilypond
 
 In this fragment, @code{direction} is tweaked. As a result, the
 current @internalsref{Voice} gets a private version of the
 @internalsref{Stem} object. The following tweak modifies the
 definition at @internalsref{Staff} level. Since it a different
-definition, the thickness of the first @code{b'16} is unaffected.  For
+definition, the thickness of the first @code{d'} is unaffected.  For
 the third note, a new Voice is created, which inherits the new
 definition, including the changed thickness, but excluding the new
 neutral direction.
index 4f7c3a0e2018cb9e311fc5e6231c93aaee62f4f2..c2afe2fbe2e7c2f5e1d85a6e8a9b8f7ea8b73860 100644 (file)
@@ -9,7 +9,6 @@
 
 #include "engraver.hh"
 #include "grob.hh"
-#include "output-property-music-iterator.hh"
 #include "translator-group.hh"
 
 class Output_property_engraver : public Engraver