From: Han-Wen Nienhuys Date: Mon, 7 Mar 2005 09:46:16 +0000 (+0000) Subject: release commit X-Git-Tag: release/2.5.14 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=520f0649124683de7a835be69abe31b87d0fab79;p=lilypond.git release commit --- diff --git a/ChangeLog b/ChangeLog index d4e847cb98..b23845d054 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-03-07 Han-Wen Nienhuys + + * VERSION (PACKAGE_NAME): release 2.5.14 + 2005-03-07 Jan Nieuwenhuizen * lily/main.cc: Add dummy xgettext markers. diff --git a/GNUmakefile.in b/GNUmakefile.in index de3907857f..89498a16f9 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -21,8 +21,8 @@ SUBDIRS = buildscripts python scripts \ include VERSION package=`echo $PACKAGE_NAME | tr '[A-Z]' '[a-z]'` -SCRIPTS = configure aclocal.m4 autogen.sh lexer-gcc-3.1.sh -README_FILES = ChangeLog COPYING DEDICATION ROADMAP THANKS +SCRIPTS = configure aclocal.m4 autogen.sh lexer-gcc-3.1.sh Doxyfile +README_FILES = ChangeLog COPYING DEDICATION ROADMAP THANKS HACKING README_TXT_FILES = AUTHORS.txt README.txt INSTALL.txt NEWS.txt IN_FILES := $(wildcard *.in) PATCH_FILES = emacsclient.patch server.el.patch darwin.patch diff --git a/input/regression/color.ly b/input/regression/color.ly new file mode 100644 index 0000000000..a2e3fff86c --- /dev/null +++ b/input/regression/color.ly @@ -0,0 +1,25 @@ +\version "2.5.12" + +\header{ + texidoc = "Each grob can have a color assigned to it. +Use the @code{\override} and @code{\revert} expressions to set the +@code{color} property." +} + +{ +\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 +} +}