From: fred Date: Tue, 26 Mar 2002 21:28:38 +0000 (+0000) Subject: lilypond-1.1.1 X-Git-Tag: release/1.5.59~2800 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=03609135e9e8b348cdc71e5f3392d06d259592c5;p=lilypond.git lilypond-1.1.1 --- diff --git a/NEWS b/NEWS index 4cf107903c..c11ce8fd55 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,46 @@ +pl 0.uu5 + - fixed MIDI output. + +pl 0.jcn3 + - dropped stepmake/aclocal.m4 + - removed silly -lguile (BLA_LIBS, EXTRA_LIBS ??) + - added debugging output format: -fscm + - ly2dvi.py -I fix + - Documentation/tex/feta.tex + - doco fixes: PATCHES.yo, yodl-1.31.7 + +pl 0.uu4 + - Protected_scm to fixup GUILE gc + +pl 0.uu3 + - more RTTI cleaning. + +pl 0.uu2 + - undone type_info::before hack. (Ugh. RTFM). + +pl 0.uu1 + - more RTTI stuff: is_type_b -> type_info::before + +pl 0.jcn1 +pl 17.jcn7 + - added: set*text, timesig, beam + - guile-1.3 is fine; my egcs-1.0.2's -O2 is broken +pl 17.jbr1 + - stepmake/stepmake/bin/package-zip32.sh: Updated configure statement + and modified win32 specific distribution file names to match + pl 16.hwn1 changes. + - scripts/ly2dvi.py: Modified search paths to match the new lilypond + installation tree. + - scripts/convert-mudela.py: Remove the an existing backup file + before renaming original. This is a WIN32 Python requirement. + - Documentation/ntweb/index.html: Updated documentation to match + new lilypond installation tree. + - lily/main.cc: Fixed LILYPONDPREFIX search paths. + + + +********** + 1.1.0 pl 18.exp diff --git a/scripts/ly2dvi.py b/scripts/ly2dvi.py index 74c5495c08..287fa5ad21 100644 --- a/scripts/ly2dvi.py +++ b/scripts/ly2dvi.py @@ -14,7 +14,7 @@ Output: DVI file """ name = 'ly2dvi' -version = '0.0.5' +version = '0.0.6' errorlog = '' import sys @@ -444,14 +444,14 @@ class Properties: t='' if os.environ.has_key ('TEXINPUTS'): t = os.pathsep + os.environ['TEXINPUTS'] - os.environ['TEXINPUTS'] = os.path.join(this.get('root'), 'texmf', - 'tex', 'lilypond' ) + t + os.environ['TEXINPUTS'] = os.path.join(this.get('root'), 'share', + 'lilypond', 'tex' ) + t t='' if os.environ.has_key ('MFINPUTS'): t = os.pathsep + os.environ['MFINPUTS'] - os.environ['MFINPUTS'] = os.path.join(this.get('root'), 'texmf', - 'mf', 'public', 'lilypond' ) + t + os.environ['MFINPUTS'] = os.path.join(this.get('root'), 'share', + 'lilypond', 'mf' ) + t if os.environ.has_key('TMP'): this.__set('tmp',os.environ['TMP'],'environment') @@ -505,8 +505,8 @@ class Properties: """ if os.name == 'nt': - path = os.path.join(this.get('root'), 'texmf', 'tex', - 'lilypond', var) + path = os.path.join(this.get('root'), 'share', 'lilypond', + 'tex', var) else: path ='' cmd =('kpsewhich tex %s %s' % (var,errorlog)) @@ -514,8 +514,8 @@ class Properties: path = pipe.readline ()[:-1] # chop off \n return_status = pipe.close() if return_status and not path: - path = os.path.join(this.get('root'), 'texmf', 'tex', - 'lilypond', var) + path = os.path.join(this.get('root'), 'share', 'lilypond', + 'tex', var) fd = open(path, 'r') return fd @@ -554,7 +554,7 @@ class Properties: else: # Windows apps like edit choke on .lilyrc dotFilename='_lilyrc' - for d in [os.path.join(this.get('root'),'share','lilypond'), \ + for d in [os.path.join(this.get('root'),'share','lilypond','ly'), \ os.environ['HOME'], os.curdir ]: file=os.path.join(d,dotFilename) try: @@ -902,7 +902,7 @@ def writeLilylog(contents): def getTeXFile(contents): texfiles=[] for line in string.split(contents,'\n'): - m = re.search('^TeX output to (.+)\.\.\.', line) + m = re.search('^Paper output to (.+)\.\.\.', line) if m: texfiles.append(m.group(1))