From: Han-Wen Nienhuys Date: Wed, 4 Feb 2004 19:14:55 +0000 (+0000) Subject: release commit X-Git-Tag: release/2.1.23~100 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4ab6bfab34d4ae05980015a2bc2eb55fb8607b74;p=lilypond.git release commit --- diff --git a/ChangeLog b/ChangeLog index a8de456371..c22ea8cf7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2004-02-04 Han-Wen Nienhuys + * VERSION: release 2.1.18. + * input/test: remove octave-duplicate.ly 2004-02-04 Jan Nieuwenhuizen diff --git a/Documentation/topdocs/NEWS.texi b/Documentation/topdocs/NEWS.texi index d5f708864b..41916e01df 100644 --- a/Documentation/topdocs/NEWS.texi +++ b/Documentation/topdocs/NEWS.texi @@ -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. diff --git a/Documentation/user/refman.itely b/Documentation/user/refman.itely index 1bc941c765..7178017d45 100644 --- a/Documentation/user/refman.itely +++ b/Documentation/user/refman.itely @@ -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. diff --git a/lily/output-property-engraver.cc b/lily/output-property-engraver.cc index 4f7c3a0e20..c2afe2fbe2 100644 --- a/lily/output-property-engraver.cc +++ b/lily/output-property-engraver.cc @@ -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