]> git.donarmstrong.com Git - lilypond.git/commitdiff
release commit release/2.5.14
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 7 Mar 2005 09:46:16 +0000 (09:46 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 7 Mar 2005 09:46:16 +0000 (09:46 +0000)
ChangeLog
GNUmakefile.in
input/regression/color.ly [new file with mode: 0644]

index d4e847cb983679dfb0d8a0580281c8808b4eea47..b23845d054bac5db5093a417bd671c279d6dd731 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * VERSION (PACKAGE_NAME): release 2.5.14
+
 2005-03-07  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * lily/main.cc: Add dummy xgettext markers.
index de3907857fc636f1d907cddb15c7c7bc65815bf4..89498a16f900f49afff48aaa81f5a8c1c3b48b87 100644 (file)
@@ -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 (file)
index 0000000..a2e3fff
--- /dev/null
@@ -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
+}
+}