]> git.donarmstrong.com Git - lilypond.git/commitdiff
(Top): add description.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 31 Jul 2006 14:11:51 +0000 (14:11 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 31 Jul 2006 14:11:51 +0000 (14:11 +0000)
ChangeLog
Documentation/topdocs/NEWS.tely
VERSION
lily/include/slur-configuration.hh
lily/slur-configuration.cc

index 10f437ce34dfe010dfa854e52c2a3aacc56f8b28..76ae59ce725359d4a2d7fa707e3a62be16737cf5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2006-07-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
 
+       * Documentation/topdocs/NEWS.tely (Top): add description.
+
        * input/regression/tuplet-full-length-note.ly: add file.
 
        * lily/instrument-name-engraver.cc (acknowledge_axis_group):
index 17f900498acefb2c5be80269191632d98ca34482..a1ddecbe0aae97cac6f113b7d8fe67b3c35f6066 100644 (file)
@@ -67,7 +67,11 @@ which scares away people.
 @end ignore
 
 @item
-Instrument names may be changed half-way during a staff.
+
+
+@item
+Instrument changes are better supported: names in the margin can be
+changed half-way during a staff, and cues are printed automatically.
 
 This feature was sponsored by Kieren MacMillan.
 
diff --git a/VERSION b/VERSION
index 7d754a77ed2e7aac64d5bdab72785265d1312add..d15511f6ada74ce0a9f501f7a8d3cf2f21b83548 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1,6 +1,6 @@
 PACKAGE_NAME=LilyPond
 MAJOR_VERSION=2
 MINOR_VERSION=9
-PATCH_LEVEL=13
+PATCH_LEVEL=14
 MY_PATCH_LEVEL=
 
index b1b9f9a6e55033009f86c9f6b63a63252a2ce5d7..fa61e42b145a08571929c3b5382659e320eb98dc 100644 (file)
 #include "std-vector.hh"
 #include "main.hh"
 
+
+enum Configuration_tag
+  {
+    SLUR_STEM = 0x01,
+    SLUR_HEAD = 0x02,
+    SLUR_FREE = 0x04,
+    SLUR_FREE_HEAD = 0x08,
+    SLUR_FREE_STEM = 0x10,
+    SLUR_STEM_TIP = 0x10,
+  };
+
 class Slur_configuration
 {
   Real score_;
@@ -22,7 +33,7 @@ public:
   Drul_array<Offset> attachment_;
   Bezier curve_;
   Real height_;
-
+  unsigned tags_;
   int index_;
 
   Slur_configuration ();
index 3aabe8407da921647f503d701d13f8d2a3c9855e..b1ce277351e250ce155b6607450432744256bdb4 100644 (file)
@@ -166,6 +166,7 @@ Slur_configuration::generate_curve (Slur_score_state const &state,
 
 Slur_configuration::Slur_configuration ()
 {
+  tags_ = 0x0;
   score_ = 0.0;
   index_ = -1;
 };