]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.1.1
authorfred <fred>
Tue, 26 Mar 2002 21:28:38 +0000 (21:28 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:28:38 +0000 (21:28 +0000)
NEWS
scripts/ly2dvi.py

diff --git a/NEWS b/NEWS
index 4cf107903c189aca1ee2d2aa4ffddc095e574f7c..c11ce8fd55a429bac86f50823a519c01299ac110 100644 (file)
--- 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
index 74c5495c087e20b74aaa7cd57ab3d518bb8d25cb..287fa5ad219f37911da7dc2b46e9bd9d72fb4b33 100644 (file)
@@ -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))