]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/changes.tely
Bump license to GPL v3+.
[lilypond.git] / Documentation / changes.tely
1 \input texinfo @c -*- coding: utf-8; mode: texinfo; -*-
2 @setfilename lilypond-changes.info
3 @settitle LilyPond Changes
4
5 @ifhtml
6 @macro inputfileref{DIR,NAME}
7 @uref{../../\DIR\/collated-files.html#\NAME\,@file{\DIR\/\NAME\}}@c
8 @end macro
9 @macro usermanref{NAME}
10 @inforef{\NAME\,,../user/lilypond/lilypond}@c
11 @end macro
12 @end ifhtml
13
14 @ifnothtml
15 @macro inputfileref{DIR,NAME}
16 @file{\DIR\/\NAME\}@c
17 @end macro
18 @macro usermanref{NAME}
19 See user manual, \NAME\
20 @end macro
21 @end ifnothtml
22
23 @macro textanchor{NAME}
24 @html
25 <a name="\NAME\"></a>
26 @end html
27 @end macro
28
29
30 @documentencoding utf-8
31 @documentlanguage en
32 @afourpaper
33
34 @finalout
35
36 @node Top
37 @top New features in 2.13 since 2.12
38
39 @ifhtml
40 This document is also available in @uref{changes.pdf,PDF}. It is part of
41 the @uref{lilypond/manuals.html,LilyPond Documentation}.
42 @end ifhtml
43
44
45
46
47 @itemize @bullet
48
49 @ignore
50
51 HINTS
52
53 * only show verbatim input for syntax/input changes
54
55 * try to be as brief possible in those cases
56
57 * don't try to provide real-world examples, they often get too big,
58 which scares away people.
59
60 * Write complete sentences.
61
62 * only show user-visible changes.
63
64 @end ignore
65
66 @item
67 LilyPond is now licensed under the GNU GPL v3+.
68
69 @item
70 Chords can be repeated using the @code{q} shortcut:
71
72 @lilypond[verbatim,quote,relative=2]
73 <c e g>8.-^ q16 q4-^
74 @end lilypond
75
76 @item
77 Paper margin defaults, as specified in @file{ly/@/paper@/-defaults@/-init@/.ly}, apply
78 to the default paper size (a4) and are automatically scaled according to the
79 paper size chosen.
80
81 @item
82 All combinations of @code{left-margin}, @code{right-margin} and
83 @code{line-width} work now.  There is no more need to set @code{line-width}
84 manually unless you explicitly want to.
85
86 @item
87 Support for using an alternative music font, such as Gonville, is now
88 added.
89
90 @item
91 In addition to the existing @code{\hspace} markup command,
92 a new @code{\vspace} command has been added to provide an easy
93 and flexible way to add vertical space in markups.
94
95 @item
96 The direction of manual beams can be set with @code{^[} and @code{_[}.
97
98 @item
99 A version of the breve note head has been added with two vertical lines on each side.
100 @lilypond[quote,relative=2]
101 \time 4/2
102 \override Staff.NoteHead #'style = #'altdefault
103 c\breve | b\breve
104 @end lilypond
105
106 @item
107 Instrument names and vocal names now take into account the extent of
108 system start delimiters in other staves for their positioning,
109 resulting in improved default alignment for left-, center- and
110 right-aligned names.
111 @lilypond[quote,indent=18\mm]
112 <<
113   \new StaffGroup <<
114     \new GrandStaff <<
115       \new Staff {
116         \set Staff.instrumentName = #"Piccolo"
117         c''1
118       }
119       \new Staff {
120         \set Staff.instrumentName = #"Flute"
121         c''1
122       }
123     >>
124     \new Staff {
125       \set Staff.instrumentName = #"Bassoon"
126       \clef tenor
127       c'1
128     }
129   >>
130   \new PianoStaff <<
131     \set PianoStaff.instrumentName = #"Piano"
132     \context Staff = "up" {
133       c'1
134     }
135     \context Staff = "down" {
136       \clef bass
137       c1
138     }
139   >>
140 >>
141 @end lilypond
142
143 @item
144 Braces in markup can now be selected by point size using the markup commands
145 @code{\left-brace} and @code{\right-brace}.
146 @lilypond[quote]
147 \markup {
148   \left-brace #35
149   \hspace #2
150   \right-brace #45
151 }
152 @end lilypond
153
154 @item
155 Intermediate .ps files which are created by LilyPond
156 during compilation are now deleted by default.  To keep them,
157 add the following line to your input files:
158 @example
159 #(ly:set-option 'delete-intermediate-files #f)
160 @end example
161
162 @item
163 Dashed and dotted slurs, phrasing slurs, and ties
164 have been made variable thickness, and
165 partially dashed slurs are now available:
166 @lilypond[quote,relative=2]
167 \slurDashed
168 c4( d e f) |
169 \slurDotted
170 g4( f e d) |
171 \slurHalfDashed
172 c4( d e f)
173 @end lilypond
174
175 @item
176 An eyeglasses markup was added, indicating strongly to look at the
177 conductor for instructions:
178 @lilypond[quote,relative=2]
179 \mark \markup { \eyeglasses }
180 c4_\markup { \eyeglasses }
181 @end lilypond
182
183 @item
184 A snap-pizzicato (also known as Bartok-pizzicato) articulation was added:
185 @lilypond[quote,relative=2]
186 c4\snappizzicato
187 @end lilypond
188
189 @item
190 Tuplet number formatting functions are now available to print other fractions
191 and to add notes to the number or fraction:
192 @lilypond[quote,relative=2]
193 \once \override TupletNumber #'text =
194   #(tuplet-number::non-default-tuplet-denominator-text 7)
195 \times 2/3 { c4. c4. c4. c4. }
196
197 \once \override TupletNumber #'text =
198   #(tuplet-number::non-default-tuplet-fraction-text 12 7)
199 \times 2/3 { c4. c4. c4. c4. }
200 \once \override TupletNumber #'text =
201   #(tuplet-number::append-note-wrapper
202     (tuplet-number::non-default-tuplet-fraction-text 12 7) "8")
203 \times 2/3 { c4. c4. c4. c4. }
204
205 \once \override TupletNumber #'text =
206   #(tuplet-number::append-note-wrapper tuplet-number::calc-denominator-text "4")
207 \times 2/3 { c8 c8 c8 c8 c8 c8 }
208 \once \override TupletNumber #'text =
209   #(tuplet-number::append-note-wrapper tuplet-number::calc-fraction-text "4")
210 \times 2/3 { c8 c8 c8 c8 c8 c8 }
211
212 \once \override TupletNumber #'text =
213   #(tuplet-number::fraction-with-notes "4." "8")
214 \times 2/3 { c4. c4. c4. c4. }
215 \once \override TupletNumber #'text =
216   #(tuplet-number::non-default-fraction-with-notes 12 "8" 4 "4")
217 \times 2/3  { c4. c4. c4. c4. }
218 @end lilypond
219
220 @item
221 FretBoards now have a chordChanges property to keep repeated FretBoard objects
222 from being typeset.
223
224 @end itemize
225
226
227
228 @ifhtml
229 For older news, go to
230 @uref{http://lilypond.org/doc/v2.12/Documentation/topdocs/NEWS.html},
231 @uref{http://lilypond.org/doc/v2.10/Documentation/topdocs/NEWS.html},
232 or @uref{../,go back} to the Documentation index.
233
234
235 @end ifhtml
236
237 @bye