]> git.donarmstrong.com Git - lilypond.git/blobdiff - NEWS
* buildscripts/new-chords.py (help): add help text
[lilypond.git] / NEWS
diff --git a/NEWS b/NEWS
index cd0895eedcf5d6d0c87cc7cb3ff1dc111e7d1e0d..21575dea33a3912e3cd7b8476434d71f808b4569 100644 (file)
--- a/NEWS
+++ b/NEWS
-New features in 1.7 since 1.6
+New features in 1.8 since 1.6
+=============================
 
-* INPUT
+** The chord entry code has been completely rewritten. It is now
+cleaner and more flexible.
 
-** Completely rewritten support for chord entry. Cleaner and more flexible.
-
-** Text entry is now done in a separate mode, and is more ergonomic
-than the previous Scheme texts.
+** A new syntax has been added for text entry.  This syntax is more
+friendly than the old mechanism, and it is implemented in a more
+robust and modular way. For more information, refer to the section on
+"Text markup" in the notation manual.
 
 ** Deeper integration of the input language and Scheme. You can now use
 LilyPond identifiers in Scheme, and use Scheme expressions instead of
 LilyPond identifiers.
 
-** Music types cleaned up and Schemified.  
+** The internal representation of music has been cleaned up completely
+and converted to Scheme data structures.  The representation may be
+exported as XML.
 
-** New syntax for chords:
+** A new syntax has been added for chords:
 
        << PITCHES >>
 
-This is in addition to the < MUSICS > syntax for simultaneous
-music. Combined with this: uniform postfix syntax for articulations:
-
-       c8-[-( d8-]-) 
-
-for a beamed slurred pair of eighth notes.
+It is not necessary to update files to this syntax, but it will be for
+using LilyPond version 2.0.  In version 2.0, this syntax will be
+changed to
 
-*NOTE* In version 2.0, this syntax will be changed to
-
-    < PITCHES >  for chords
+   < PITCHES >  for chords
 
 and
 
    \simultaneous { .. } for simultaneous music.
 
-** User code evaluation during interpreting. Syntax
+To convert your files from <PITCHES> to <<PITCHES>>, use the script
+included in buildscripts/convert-new-chords.py
 
-       \applycontext #SCHEME-FUNCTION
+** A new uniform postfix syntax for articulation has been introduced.
+A beamed slurred pair of eighth notes can be entered as
 
-** XML music output.
+       c8-[-( d8-]-) 
 
-** Friendly  chord-name exception entry.
+In version 2.0, postfix syntax will be the only syntax
+available, and the dashes will become optional.
 
-* OUTPUT
+** User code may now be executed during interpreting.  The syntax for
+this code is
 
-** Preliminary Sodipodi/SVG output
+       \applycontext #SCHEME-FUNCTION
 
 
+** User code may now be executed on arbitrary grobs during interpreting.
+The syntax for this feature is
 
-* NOTATION
+       \applyoutput #SCHEME-FUNCTION
 
-** Ancient notation ... ?? ...  (Jurgen?)
+SCHEME-FUNCTION takes a single argument, and is called for every grob
+that is created in the current context.
 
-** Completely rewritten text formatting support. It is implemented in a
-completely modular way.
+** New algorithms for chord-name formatting have been installed. They
+can be tuned and have ergonomic syntax for entering exceptions.
 
-** Chord name formatting completely rewritten.
+** Texts may now be put on multimeasure rests, eg.
 
-** Texts on multimeasure rests can be set by the user.
+       R1*20^\markup { "GP" }
 
-** Zigzagged glissandi
+** Ancient notation now prints ligatures in Gregorian square neumes
+notation, roughly following the typographical style of the Liber
+hymnarius of Solesmes, published in 1983.  Ligatures are still printed
+without the proper line breaking and horizontal spacing.
 
-** Cluster support. Syntax:
+** Glissandi can now be printed using the zigzag style.
 
-       NOTE-\startCluster
+** Clusters may now be printed. The syntax is:
 
-       ..
-       NOTE-\stopCluster
+       \apply #clusters-to-notes { NOTE NOTE .. }
 
-** Beat grouping indications. Syntax:
+** For irregular meters, beat grouping marks can be printed. The
+syntax for this is
 
        #(set-time-signature 7 8 '(3 2 2))
 
-** Nested horizontal brackets for music analysis.
+** Nested horizontal brackets for music analysis can now be printed.
 
-       NOTE-\groupOpen
+       NOTE-\startGroup
                ..
-       NOTE-\groupClose
+       NOTE-\stopGroup
+
+** Ottava brackets are now fully supported as a feature.  The syntax
+is
+
+       #(set-octavation 1)
+
+** Metronome markings are printed when a \tempo command is processed.
+
+** Fingerings can be put on chords horizontally.
+
+** The appearance of various glyphs has been fine-tuned.
+
+** Different types of percent style repeats may now be nested.
 
-** Gregorian ligatures.
+** The emacs support has been extended.
 
-** Texts on multi-measure rests.
+** The manual has been completely revised and extended.
 
 
 
 New features in 1.6 since 1.4
+=============================
 
 * Support for figured bass and tablature.