From: fred Date: Tue, 26 Mar 2002 23:22:36 +0000 (+0000) Subject: lilypond-1.3.57 X-Git-Tag: release/1.5.59~1598 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=42095f8aa81d5437d4e91f8c803a5ecd4a534c64;p=lilypond.git lilypond-1.3.57 --- diff --git a/CHANGES b/CHANGES index e449b6cabd..83a1f61af0 100644 --- a/CHANGES +++ b/CHANGES @@ -1,12 +1,31 @@ -1.3.55.hwn1 +1.3.57 +====== + +* Fixed several forgotten molecule-callbacks + +* Fixed first clef in score; now F clefs are also possible. + +1.3.56.mb1 +========= + +* Updated FAQ with two useful GDB macros. + +* Several fixes in the documentation. + +1.3.55.jcn1 =========== -* Molecules are now generated via callbacks exclusively; most calls to -set_elt_property ("transparent) have been replaced by suicide(). +* Made (dutch) po-update -1.3.54.hwn2 +1.3.56 =========== +* Molecules are now generated via callbacks exclusively; most calls to +set_elt_property ("transparent", SCM_BOOL_T) have been replaced by suicide(). + +1.3.55 +====== + * Experimental property collapse for most score-elements. (notable exceptions: Scripts, pedals). Change all Score_element constructors to take a basic-property list. The suffix of a property list may be diff --git a/VERSION b/VERSION index 1693e6225a..27b50caab0 100644 --- a/VERSION +++ b/VERSION @@ -1,7 +1,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=3 -PATCH_LEVEL=56 +PATCH_LEVEL=57 MY_PATCH_LEVEL= # use the above to send patches: MY_PATCH_LEVEL is always empty for a diff --git a/ly/engraver.ly b/ly/engraver.ly index 9e6bbe3bdd..ba8064a104 100644 --- a/ly/engraver.ly +++ b/ly/engraver.ly @@ -465,6 +465,7 @@ ScoreContext = \translator { (molecule-callback . ,Lyric_extender::scheme_molecule) ) basicLyricTextProperties = #`( + (molecule-callback . ,Text_item::scheme_molecule) (non-rhythmic . #t) ) basicMarkProperties = #`( @@ -472,16 +473,20 @@ ScoreContext = \translator { (breakable . #t) (visibility-lambda . ,end-of-line-invisible) ) + basicMultiMeasureRestProperties = #`( + (molecule-callback . ,Multi_measure_rest::scheme_molecule) + (staff-position . 0) + ) basicNoteColumnProperties = #`( (axes 0 1) ) basicNoteHeadProperties = #`( (molecule-callback . ,Note_head::scheme_molecule) ) - basicOctavateEightProperties = #`( (self-alignment-X . 0) (text . "8") + (visibility-lambda . ,begin-of-line-visible) (molecule-callback . ,Text_item::scheme_molecule) (style . "italic") ) @@ -495,7 +500,7 @@ ScoreContext = \translator { basicScriptProperties = #`( (molecule-callback . ,Script::scheme_molecule) ) - + basicSlurProperties = #`( (molecule-callback . ,Slur::scheme_molecule) ) @@ -508,10 +513,14 @@ ScoreContext = \translator { (molecule-callback . ,Stem::scheme_molecule) ) staffSymbolBasicProperties = #`( - (molecule-callback . ,Staff_symbol::scheme_molecule) - (staff-space . 1.0 ) - (line-count . 5 ) - ) + (molecule-callback . ,Staff_symbol::scheme_molecule) + (staff-space . 1.0 ) + (line-count . 5 ) + ) + basicTextScriptProperties = #`( + (molecule-callback . ,Text_item::scheme_molecule) + (no-spacing-rods . #t) + ) basicTimeSignatureProperties = #`( (molecule-callback . ,Time_signature::scheme_molecule) (break-align-symbol . Time_signature) @@ -538,7 +547,7 @@ ScoreContext = \translator { ) basicInstrumentNameProperties = #`( (breakable . #t) - (molecule-callback . Text_item::scheme_molecule) + (molecule-callback . ,Text_item::scheme_molecule) (break-align-symbol . Instrument_name) (visibility-lambda . ,begin-of-line-visible) )