Re: Lilypond 2.16.0 released!

2012-08-27 Thread Graham Percival
Please send such questions to lilypond-user; hopefully somebody
can help you with this and if you have a bug it can get to
bug-lilypond.

- Graham

On Mon, Aug 27, 2012 at 10:18:40AM -0500, Fredric Dannen wrote:
 
 Graham,
  
 I'm having a problem with 2.16 that may have a simple solution, and perhaps 
 you
 can advise me. All of my self-produced scores are in 2.14. But even when I use
 the convert-ly -e *.ly function, 2.16 will not open any of them. Based on the
 log files, it appears to be a case of outmoded syntax, for which 2.14 was
 tolerant, but 2.16 is not. I can't figure it out. Is this a known issue, and 
 is
 there a solution?
  
 Many thanks,
 Fred

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lilypond 2.16.0 released!

2012-08-27 Thread Fredric Dannen
Thanks, Graham!

I figured out what my problem was - the syntax in odd and even headers. I like 
my page numbers in the usual spot -- even left, odd right -- and the headers 
centered on all pages starting from page 2.

In 2.14, I was using this syntax:

  oddHeaderMarkup = \markup \fill-line {
   
  \on-the-fly #not-first-page \fromproperty #'header:title
  \on-the-fly #not-first-page \on-the-fly #print-page-number-check-first 
\fromproperty #'page:page-number-string
  }
  evenHeaderMarkup = \markup \fill-line {
  \on-the-fly #print-page-number-check-first \fromproperty 
#'page:page-number-string
  \on-the-fly #not-first-page \fromproperty #'header:composer
   
}

But 2.16 will not accept this syntax, nor create a PDF. And the convert-ly -e 
*.ly function won't fix the problem, or even identify it.

But this works:

  oddHeaderMarkup = \markup \fill-line {
 
  \on-the-fly #not-first-page \fromproperty #'header:title
  \on-the-fly #not-first-page \on-the-fly #print-page-number-check-first 
\fromproperty #'page:page-number-string }
  
  evenHeaderMarkup = \markup \fill-line {
  \on-the-fly #not-first-page \on-the-fly #print-page-number-check-first 
\fromproperty #'page:page-number-string
  \on-the-fly #not-first-page { \center-align \fromproperty #'header:composer  
}   }

   
}

Fred___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lilypond 2.16.0 released!

2012-08-27 Thread eluze

Fredric Dannen wrote
 
 
 In 2.14, I was using this syntax:
 
   oddHeaderMarkup = \markup \fill-line {

   \on-the-fly #not-first-page \fromproperty #'header:title
   \on-the-fly #not-first-page \on-the-fly #print-page-number-check-first
 \fromproperty #'page:page-number-string
   }
   evenHeaderMarkup = \markup \fill-line {
   \on-the-fly #print-page-number-check-first \fromproperty
 #'page:page-number-string
   \on-the-fly #not-first-page \fromproperty #'header:composer

 }
 
 But 2.16 will not accept this syntax, nor create a PDF. And the convert-ly
 -e *.ly function won't fix the problem, or even identify it.
 
 But this works:
 
   oddHeaderMarkup = \markup \fill-line {
  
   \on-the-fly #not-first-page \fromproperty #'header:title
   \on-the-fly #not-first-page \on-the-fly #print-page-number-check-first
 \fromproperty #'page:page-number-string }
   
   evenHeaderMarkup = \markup \fill-line {
   \on-the-fly #not-first-page \on-the-fly #print-page-number-check-first
 \fromproperty #'page:page-number-string
   \on-the-fly #not-first-page { \center-align \fromproperty
 #'header:composer  }   }
 }
 

it's always good to send a (potentially) compiling code  or the full code to
reproduce the error

when I complete the missing parts I see no error 

Eluze



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Re-Lilypond-2-16-0-released-tp131313p131431.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lilypond 2.16.0 released!

2012-08-27 Thread Stjepan Horvat
Thanks..!

On Tue, Aug 28, 2012 at 12:36 AM, eluze elu...@gmail.com wrote:


 Fredric Dannen wrote
 
 
  In 2.14, I was using this syntax:
 
oddHeaderMarkup = \markup \fill-line {
 
\on-the-fly #not-first-page \fromproperty #'header:title
\on-the-fly #not-first-page \on-the-fly #print-page-number-check-first
  \fromproperty #'page:page-number-string
}
evenHeaderMarkup = \markup \fill-line {
\on-the-fly #print-page-number-check-first \fromproperty
  #'page:page-number-string
\on-the-fly #not-first-page \fromproperty #'header:composer
 
  }
 
  But 2.16 will not accept this syntax, nor create a PDF. And the
 convert-ly
  -e *.ly function won't fix the problem, or even identify it.
 
  But this works:
 
oddHeaderMarkup = \markup \fill-line {
   
\on-the-fly #not-first-page \fromproperty #'header:title
\on-the-fly #not-first-page \on-the-fly #print-page-number-check-first
  \fromproperty #'page:page-number-string }
 
evenHeaderMarkup = \markup \fill-line {
\on-the-fly #not-first-page \on-the-fly #print-page-number-check-first
  \fromproperty #'page:page-number-string
\on-the-fly #not-first-page { \center-align \fromproperty
  #'header:composer  }   }
  }
 

 it's always good to send a (potentially) compiling code  or the full code
 to
 reproduce the error

 when I complete the missing parts I see no error

 Eluze



 --
 View this message in context:
 http://lilypond.1069038.n5.nabble.com/Re-Lilypond-2-16-0-released-tp131313p131431.html
 Sent from the User mailing list archive at Nabble.com.

 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 https://lists.gnu.org/mailman/listinfo/lilypond-user




-- 
*Nesmotren govori kao da mačem probada, a jezik je mudrih iscjeljenje.
Izreke 12:18*
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lilypond 2.16.0 released!

2012-08-26 Thread Hans Aberg
On 24 Aug 2012, at 17:01, Graham Percival wrote:

 We are proud to announce the release of GNU LilyPond 2.16.0.

This page says MacOS X 10.7 Lion is not yet supported, but the Intel version 
GUI works on 10.7.4, and for the LilyPond PPC version, it will never be 
supported as 10.7 cannot run it (10.6 could run it via the Rosetta emulator, 
but it is not available on 10.7).
  http://lilypond.org/macos-x.html

In addition, as for the script on that page, on 10.7, if one does not want to 
change PATH, one can put it into /usr/local/bin/, which is included in the 
system defined PATH.

Hans

 


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lilypond 2.16.0 released!

2012-08-26 Thread Graham Percival
On Sat, Aug 25, 2012 at 11:15:13AM +0200, Hans Aberg wrote:
 This page says MacOS X 10.7 Lion is not yet supported, but the Intel 
 version GUI works on 10.7.4, and for the LilyPond PPC version, it will never 
 be supported as 10.7 cannot run it (10.6 could run it via the Rosetta 
 emulator, but it is not available on 10.7).
   http://lilypond.org/macos-x.html

Thanks for the report, this was added as
  http://code.google.com/p/lilypond/issues/detail?id=2774

- Graham

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lilypond 2.16.0 released!

2012-08-26 Thread Hans Aberg
On 27 Aug 2012, at 00:07, Graham Percival wrote:

 On Sat, Aug 25, 2012 at 11:15:13AM +0200, Hans Aberg wrote:
 This page says MacOS X 10.7 Lion is not yet supported, but the Intel 
 version GUI works on 10.7.4, and for the LilyPond PPC version, it will never 
 be supported as 10.7 cannot run it (10.6 could run it via the Rosetta 
 emulator, but it is not available on 10.7).
  http://lilypond.org/macos-x.html
 
 Thanks for the report, this was added as
  http://code.google.com/p/lilypond/issues/detail?id=2774

Great! Colin also mentioned it on the Bug-Lilypond list.

Hans



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lilypond 2.16.0 released!

2012-08-26 Thread Pietro Cerutti
Hi Graham,

   the source tarball link at http://lilypond.org/source.html
   still points to the subdirectory v2.14.

Other than that, great news! I'm going to bring the official
FreeBSD port up to date within a few days.

Kind Regards,
-- 
Pietro Cerutti
g...@gahr.ch

PGP Public Key:
http://gahr.ch/pgp
application/pgp-signature   [Press RETURN to save to a file]

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user