]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.57
authorfred <fred>
Tue, 26 Mar 2002 23:22:36 +0000 (23:22 +0000)
committerfred <fred>
Tue, 26 Mar 2002 23:22:36 +0000 (23:22 +0000)
CHANGES
VERSION
ly/engraver.ly

diff --git a/CHANGES b/CHANGES
index e449b6cabd150febf3125f0c336ab40436c5dd1c..83a1f61af0deed8a54423ef53e8e6bc07ac26ae1 100644 (file)
--- 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 1693e6225a29f2bbf2b673e9b1b2a33deb63c032..27b50caab0a3cc54aa79cabdf5cb1fdd05a0a516 100644 (file)
--- 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
index 9e6bbe3bdd6f4f86b71f4423463d96b0200cc1c4..ba8064a1040050db5a6067b634a0c9e5a5e7f62d 100644 (file)
@@ -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)
        )