From: Han-Wen Nienhuys Date: Wed, 29 May 2002 19:54:32 +0000 (+0000) Subject: '' X-Git-Tag: release/1.5.61~44 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6276aa912f531ffa7e76ba6315747390475a722d;p=lilypond.git '' --- 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 ################################