]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/convertrules.py
Web: fix PNG creation from SVG
[lilypond.git] / python / convertrules.py
index 8f9c9d00d4b1a829c4eb2731b38bb12b170786e2..71298e2698713427c696aec7f790b30e177bd600 100644 (file)
@@ -2912,7 +2912,8 @@ def conv(str):
 revert-auto-beam-setting have been eliminated.  \\overrideBeamSettings has been\n\
 added.  BeatGrouping has been eliminated.\n\
 Different settings for vertical layout.\n\
-ly:system-start-text::print -> system-start-text::print"))
+ly:system-start-text::print -> system-start-text::print\n\
+Beam #'thickness -> Beam #'beam-thickness"))
 def conv(str):
     if re.search("override-auto-beam-setting", str):
         stderr_write ("\n")
@@ -2936,6 +2937,7 @@ def conv(str):
 you must now specify the distances between staves rather than the offset of staves.\n"))
         stderr_write(UPDATE_MANUALLY)
     str = re.sub ('ly:system-start-text::print', 'system-start-text::print', str)
+    str = re.sub ('(\\bBeam\\s+#\')(?=thickness\\b)', '\\1beam-', str)
     return str
 
 # Guidelines to write rules (please keep this at the end of this file)