CVSROOT: /cvsroot/lilypond Module name: lilypond Branch: Changes by: Graham Percival <[EMAIL PROTECTED]> 05/08/18 22:06:45
Modified files: . : ChangeLog ly : bagpipe.ly engraver-init.ly property-init.ly Log message: Direction #1 to #up, #-1 to #down. CVSWeb URLs: http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.4039&tr2=1.4040&r1=text&r2=text http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ly/bagpipe.ly.diff?tr1=1.2&tr2=1.3&r1=text&r2=text http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ly/engraver-init.ly.diff?tr1=1.245&tr2=1.246&r1=text&r2=text http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ly/property-init.ly.diff?tr1=1.77&tr2=1.78&r1=text&r2=text Patches: Index: lilypond/ChangeLog diff -u lilypond/ChangeLog:1.4039 lilypond/ChangeLog:1.4040 --- lilypond/ChangeLog:1.4039 Thu Aug 18 22:02:28 2005 +++ lilypond/ChangeLog Thu Aug 18 22:06:45 2005 @@ -5,6 +5,9 @@ * Documentation/user/music-glossary.tely: #-1 to #down. + * ly/bagpipe.ly, engraver-init.ly, property-init.ly: #1 + to #up, #-1 to #down. + 2005-08-18 Han-Wen Nienhuys <[EMAIL PROTECTED]> * lily/include/engraver-group.hh: rename. Index: lilypond/ly/bagpipe.ly diff -u lilypond/ly/bagpipe.ly:1.2 lilypond/ly/bagpipe.ly:1.3 --- lilypond/ly/bagpipe.ly:1.2 Thu Aug 4 23:32:42 2005 +++ lilypond/ly/bagpipe.ly Thu Aug 18 22:06:45 2005 @@ -6,7 +6,7 @@ Sven Axelsson, the Murray Pipes & Drums of Gothenburg (http://www.murrays.nu) - $Id: bagpipe.ly,v 1.2 2005/08/04 23:32:42 gpercival Exp $ + $Id: bagpipe.ly,v 1.3 2005/08/18 22:06:45 gpercival Exp $ %} \version "2.6.0" @@ -57,10 +57,10 @@ \context { \Voice % All stems go down. - \override Stem #'direction = #-1 + \stemDown % All slurs and ties are on top. - \override Slur #'direction = #1 - \override Tie #'direction = #1 + \slurUp + \tieUp } } Index: lilypond/ly/engraver-init.ly diff -u lilypond/ly/engraver-init.ly:1.245 lilypond/ly/engraver-init.ly:1.246 --- lilypond/ly/engraver-init.ly:1.245 Thu Aug 18 12:54:26 2005 +++ lilypond/ly/engraver-init.ly Thu Aug 18 22:06:45 2005 @@ -132,8 +132,8 @@ \override VoltaBracket #'padding = #5 \override StaffSymbol #'line-count = #1 - \override Stem #'neutral-direction = #1 - \override Beam #'neutral-direction = #1 + \override Stem #'neutral-direction = #up + \override Beam #'neutral-direction = #up \consists "Output_property_engraver" \consists "Font_size_engraver" @@ -756,7 +756,7 @@ \override Accidental #'style = #'vaticana \override Custos #'style = #'vaticana \override Custos #'neutral-position = #3 - \override Custos #'neutral-direction = #-1 + \override Custos #'neutral-direction = #down %% Score.timing = ##f %% Score.barAlways = ##t @@ -861,7 +861,7 @@ \override Accidental #'style = #'mensural \override Custos #'style = #'mensural \override Custos #'neutral-position = #3 - \override Custos #'neutral-direction = #-1 + \override Custos #'neutral-direction = #down %% Score.timing = ##f %% Score.barAlways = ##t Index: lilypond/ly/property-init.ly diff -u lilypond/ly/property-init.ly:1.77 lilypond/ly/property-init.ly:1.78 --- lilypond/ly/property-init.ly:1.77 Fri Jul 8 17:53:41 2005 +++ lilypond/ly/property-init.ly Thu Aug 18 22:06:45 2005 @@ -2,12 +2,12 @@ \version "2.6.0" -stemUp = \override Stem #'direction = #1 -stemDown = \override Stem #'direction = #-1 +stemUp = \override Stem #'direction = #up +stemDown = \override Stem #'direction = #down stemNeutral= \revert Stem #'direction -slurUp = \override Slur #'direction = #1 -slurDown = \override Slur #'direction = #-1 +slurUp = \override Slur #'direction = #up +slurDown = \override Slur #'direction = #down slurNeutral = \revert Slur #'direction %% There's also dash, but setting dash period/length should be fixed. @@ -25,8 +25,8 @@ } -phrasingSlurUp = \override PhrasingSlur #'direction = #1 -phrasingSlurDown = \override PhrasingSlur #'direction = #-1 +phrasingSlurUp = \override PhrasingSlur #'direction = #up +phrasingSlurDown = \override PhrasingSlur #'direction = #down phrasingSlurNeutral = \revert PhrasingSlur #'direction shiftOn = \override NoteColumn #'horizontal-shift = #1 @@ -34,8 +34,8 @@ shiftOnnn = \override NoteColumn #'horizontal-shift = #3 shiftOff = \revert NoteColumn #'horizontal-shift -tieUp = \override Tie #'direction = #1 -tieDown = \override Tie #'direction = #-1 +tieUp = \override Tie #'direction = #up +tieDown = \override Tie #'direction = #down tieNeutral = \revert Tie #'direction tieDashed = { @@ -64,13 +64,13 @@ \set shapeNoteStyles = ##(#f #f mi #f fa la #f) dynamicUp = { - \override DynamicText #'direction = #1 - \override DynamicLineSpanner #'direction = #1 + \override DynamicText #'direction = #up + \override DynamicLineSpanner #'direction = #up } dynamicDown = { - \override DynamicText #'direction = #-1 - \override DynamicLineSpanner #'direction = #-1 + \override DynamicText #'direction = #down + \override DynamicLineSpanner #'direction = #down } dynamicNeutral = { @@ -79,12 +79,12 @@ } -dotsUp = \override Dots #'direction = #1 -dotsDown = \override Dots #'direction = #-1 +dotsUp = \override Dots #'direction = #up +dotsDown = \override Dots #'direction = #down dotsNeutral = \revert Dots #'direction -tupletUp = \override TupletBracket #'direction = #1 -tupletDown = \override TupletBracket #'direction = #-1 +tupletUp = \override TupletBracket #'direction = #up +tupletDown = \override TupletBracket #'direction = #down tupletNeutral = \revert TupletBracket #'direction cadenzaOn = \set Timing.timing = ##f @@ -140,11 +140,11 @@ arpeggioUp = \sequential { \revert Arpeggio #'print-function - \override Arpeggio #'arpeggio-direction = #1 + \override Arpeggio #'arpeggio-direction = #up } arpeggioDown = \sequential { \revert Arpeggio #'print-function - \override Arpeggio #'arpeggio-direction = #-1 + \override Arpeggio #'arpeggio-direction = #down } arpeggioNeutral = \sequential { \revert Arpeggio #'print-function @@ -207,7 +207,7 @@ \revert NoteHead #'style } -textSpannerUp = \override TextSpanner #'direction = #1 -textSpannerDown = \override TextSpanner #'direction = #-1 +textSpannerUp = \override TextSpanner #'direction = #up +textSpannerDown = \override TextSpanner #'direction = #down textSpannerNeutral = \revert TextSpanner #'direction _______________________________________________ Lilypond-cvs mailing list Lilypond-cvs@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-cvs