From: fred Date: Wed, 27 Mar 2002 02:03:32 +0000 (+0000) Subject: lilypond-1.5.16 X-Git-Tag: release/1.5.59~435 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2b1f775879815786c0705683ecc14ac266e9512b;p=lilypond.git lilypond-1.5.16 --- diff --git a/CHANGES b/CHANGES index f2a922ccbd..7eac9d8357 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,46 @@ +1.5.15.jcn1 +=========== + +* Fixes for latest guile cvs. + +* Add --enable-optimising flag to configure (Huh?). + +* Only inline string utlis when optimising. + +* Compile fix. + +1.5.15.rz1 +========== + +* added property autoReminders, automatically creating reminder + accidentals. - major changes to accidental-engraver. + +1.5.15.hwn1 +=========== + +* Junk translator-description.scm + +* Make Repeated_music use 'element and 'elements in stead of 'body and +'alternatives. Associated changes in parser and music-sequence.cc. + +* Change Part_combine_music and Lyric_combine_music to use 'elements +music property. + +* Porrectus patch (Juergen Reuter) + + - Rewrote code for vaticana style porrectus grob; the solid shape is + now drawn as a single bezier sandwich rather than composed from a + couple of misused slurs. Looks now much nicer. + + - Added code to forbid line-breaking inbetween a porrectus + (preliminary; to be moved to ligature engraver framework). + + - Added auto-properties property for automatic determination of grob + properties add-stem and stem-direction from musical context. + + - Small clean-ups. + + 1.5.14.jcn6 =========== diff --git a/input/test/accidentals.ly b/input/test/accidentals.ly new file mode 100644 index 0000000000..294ca11db3 --- /dev/null +++ b/input/test/accidentals.ly @@ -0,0 +1,23 @@ +% \version "1.5.15.rz1" + +mel = \notes { + d4 dis dis d | d dis disis dis | d des disis d | dis deses d dis ~ | dis dis ~ dis dis ~ | \break + dis dis cis c | c cis cisis cis | c ces cisis c | cis ceses c cis ~ | cis cis ~ cis cis \bar "|." | \break +} + +\score { \notes \context Staff \transpose c''' { + \key d \major + \mel + \property Score.autoReminders = #'cautionary + < s1^"$\\backslash$property Score.autoReminders = \\#'cautionary" \mel > + \property Score.autoReminders = #'accidental + < s1^"$\\backslash$property Score.autoReminders = \\#'accidental" \mel > + \property Score.autoReminders = ##f + \property Score.forgetAccidentals = ##t + < s1^"$\\backslash$property Score.forgetAccidentals = \\#\\#t" \mel > + \property Score.forgetAccidentals = ##f + \property Score.noResetKey = ##t + < s1^"$\\backslash$property Score.noResetKey = \\#\\#t" \mel > + } +} +