From: Han-Wen Nienhuys Date: Fri, 13 May 2005 12:50:12 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/2.5.25~40 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d3dbe7293fc45f37ca5248639c999032311eb9fa;p=lilypond.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 4d5bd5479f..ef07d77fb7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,9 @@ 2005-05-13 Han-Wen Nienhuys + * Documentation/user/preface.itely (Notes for version 2.6): new + notes for 2.6 + * lily/dynamic-engraver.cc (stop_translation_timestep): first set finished_span_, then call typeset_all(). Fixes spurious "Hairpin is not fully contained" warnings. diff --git a/Documentation/user/preface.itely b/Documentation/user/preface.itely index 45380c947a..ac81016a40 100644 --- a/Documentation/user/preface.itely +++ b/Documentation/user/preface.itely @@ -52,18 +52,29 @@ Utrecht/Eindhoven, The Netherlands, July 2002. * Notes for version 2.4:: @end menu -@node Notes for version 2.4 -@unnumberedsec Notes for version 2.4 +@node Notes for version 2.6 +@unnumberedsec Notes for version 2.6 -The most important developments in 2.4 are related. In LilyPond 2.4 -@TeX{} is no longer strictly necessary to engrave music. This is -because LilyPond can now also layout pages and determine page breaks. -Another notable feature is the syntax, which has been simplified even -further compared to previous versions. +For years, LilyPond has been associated with @TeX{}, for its design, +syntax and, last but not least, since it used @TeX{} as an output +engine. Starting with 2.6, the latter has changed. By default, +LilyPond now produces PostScript directly. This makes it easier to +install, quicker to operate and more versatile. +Under the hood, this was made possible by use of the Pango library, +which does typesetting of multilingual text. This means that you can +easily typeset Chinese, Russian or Minoic lyrics. Another result is +the SVG output. You can create SVG pictures of music notation directly +from LilyPond. +There are also small improvements. This release has numerous extra +features, such as color support, string-number notation, arrowed +glissandi. Moreover, it is now possible to commission features. For a +small fee, we (the core developers) can implement the features that +you sorely. Examples of sponsored features in 2.6 are: solfa notation, +stemlets, starting and stopping staves. Han-Wen and Jan -Utrecht/Eindhoven, The Netherlands, September 2004. +Utrecht/Eindhoven, The Netherlands, May 2005. diff --git a/input/regression/color.ly b/input/regression/color.ly index a2e3fff86c..9b023973e6 100644 --- a/input/regression/color.ly +++ b/input/regression/color.ly @@ -1,25 +1,25 @@ \version "2.5.12" \header{ - texidoc = "Each grob can have a color assigned to it. + texidoc = "Each grob can have a color assigned to it. Use the @code{\override} and @code{\revert} expressions to set the @code{color} property." } -{ +\paper { raggedright = ##t } + \relative { - \override Accidental #'color = #darkgreen - \override Beam #'color = #cyan - \override NoteHead #'color = #darkyellow - c4 - \override NoteHead #'color = #red - f - \override NoteHead #'color = #darkmagenta - g - \override NoteHead #'color = #darkblue - b - \override NoteHead #'color = #green - \override Stem #'color = #blue - e8 es d dis e4 r -} + \override Accidental #'color = #darkgreen + \override Beam #'color = #cyan + \override NoteHead #'color = #darkyellow + c4 + \override NoteHead #'color = #red + f + \override NoteHead #'color = #darkmagenta + g + \override NoteHead #'color = #darkblue + b + \override NoteHead #'color = #green + \override Stem #'color = #blue + e8 es d dis e4 r }