From 0ef857714c935b0e446d9a7141b56d32868eb3d5 Mon Sep 17 00:00:00 2001 From: hanwen Date: Wed, 29 May 2002 19:54:32 +0000 Subject: [PATCH] '' --- NEWS | 2 ++ scripts/convert-ly.py | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/NEWS b/NEWS index 54a2087d12..fb045f180d 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,8 @@ New features in 1.5 +* Simple tablature + * Many speedups, many slowdowns. * More extensibility diff --git a/scripts/convert-ly.py b/scripts/convert-ly.py index c05e3e0f61..3fd0fbbb9a 100644 --- a/scripts/convert-ly.py +++ b/scripts/convert-ly.py @@ -866,6 +866,18 @@ if 1: conversions.append (((1,5,58), conv, 'deprecate textNonEmpty')) +if 1: + def conv(str): + str = re.sub ('Instrument_name', 'Instrument-name', str) + str = re.sub ('Left_edge_item', 'Left-edge', str) + str = re.sub ('Span_bar', 'Span-bar', str) + str = re.sub ('Breathing_sign', 'Breathing-sign', str) + str = re.sub ('Clef_item', 'Clef', str) + str = re.sub ('Key_item', 'Key-signature', str) + str = re.sub ('Staff_bar', 'Staff-bar', str) + str = re.sub ('Time_signature', 'Time-signature', str) + return str + conversions.append(((1,5,58), conv, 'old breakAlignOrder -> new breakAlignOrder')) ################################ # END OF CONVERSIONS ################################ -- 2.39.5