X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fchanges.tely;h=2a647782442518f0e8eb42656a5a04ca1378193b;hb=feedaf62a490820021a83b7096a3fda1884beaf6;hp=958ecb109e095c7fa9605da34647ca2ac0fbfb6c;hpb=9c460ac0fa2d4d2f349ccb7628354ef567da695c;p=lilypond.git diff --git a/Documentation/changes.tely b/Documentation/changes.tely index 958ecb109e..2a64778244 100644 --- a/Documentation/changes.tely +++ b/Documentation/changes.tely @@ -62,7 +62,53 @@ which scares away people. @end ignore @item -The music function @code{\\unfoldRepeats} can now take an +The ends of hairpins may now be fine-tuned using the @code{shorten-pair} +grob property, which previously only affected text-spanners like +@code{TupletBracket} and @code{OttavaBracket}. Positive values offset +to the right, negative to the left. +@lilypond[quote,verbatim] +{ \once \override Hairpin.shorten-pair = #'(2 . 2) + c'1~\< + c'2~ c'\! + \once \override Hairpin.shorten-pair = #'(-2 . -2) + c'1~\< + c'2~ c'\! } +@end lilypond + +@item +In fret-diagrams the distance between frets and the distance between strings is +now independently adjustable. Available are @code{fret-distance} and +@code{string-distance} as subproperties of @code{fret-diagram-details}. +@lilypond[verbatim,quote] +fretMrkp = \markup { \fret-diagram-terse #"x;x;o;2;3;2;" } + +\markuplist +\override #'(padding . 2) +\table #'(0 -1) { + "default" + + \fretMrkp + + "fret-distance" + + \override #'(fret-diagram-details . ((fret-distance . 2))) + \fretMrkp + + "string-distance" + + \override #'(fret-diagram-details . ((string-distance . 2))) + \fretMrkp +} +@end lilypond + +@item +Accidental rules can now be defined across @code{ChoirStaff} contexts. +Two new rules @code{choral} and @code{choral-cautionary} are available +that combine the characteristics of @code{modern-voice} and @code{piano} +or their equivalents with cautionary accidentals. + +@item +The music function @code{\unfoldRepeats} can now take an optional argument-list specifying which type(s) of repeated music should be unfolded. Possible entries are @code{percent}, @code{tremolo}, @code{volta}.