]> git.donarmstrong.com Git - lilypond.git/blob - CHANGES
patch::: 1.3.64.jcn1
[lilypond.git] / CHANGES
1 1.3.63.jcn1
2 ============
3  
4 * Started grand redo of slur endings, interstaff slurs are broken for now.
5
6 * Fixed download url.
7
8 * Moved direction.cc to flower.
9
10 1.3.63.uu1
11 ==========
12
13 * Lyrics centered on notehead.
14
15 * Various bugfixes hyphen-spanner.
16
17 * Bugfix: set appropriate callbacks for Note_head. This fixes 
18 problems with dots.
19
20 * Removed Clef_item as score-element derived type.
21
22 * Updated config.sub and config.guess
23
24 * Bugfix: allow linebreaks on beamed grace notes.
25
26 1.3.61.jcn2
27 ===========
28
29 * Included dutch po-update based on submitted 1.3.57 nl.po
30
31 * Added "Development" link to website, now that "Home" is a relative link.
32
33 * Bugfix: use deep copies for resetting keys.
34
35 * Assorted typing erors in procedure names in ly/engraver.ly
36
37 1.3.62
38 ======
39
40 * Made callbacks from Score_element::before_line_breaking() and
41 Score_element::after_line_breaking()
42
43 * Fixed website; backlinks should work again.
44
45 * Removed --ignore-version option. Added --verbose option.
46
47 1.3.61
48 ======
49
50 * Webpage hacking
51
52 1.3.60.hwn1
53 ===========
54
55 * Junk int_identifier, real_identifier. Merged Midi_def_identifier and
56 Paper_def_identifier.
57
58 * Fixed bug with spanning barlines in combination with Hara-Kiri staffs.
59
60 * Cleaned up Text_item, Hyphen_spanner, Lyric_extender and
61 Sustain_pedal and reduced them to an Score_element interface (they are
62 no longer Score_element derived types).
63
64 * Some instances of brew_molecule routines have moved out of
65 Score_element, and are now called scheme_molecule.
66
67 * Moved lots of parameters from ly/params.ly to ly/engraver.ly
68
69 1.3.59.hwn1
70 ===========
71
72 * Removed String_identifier, and use the type system of GUILE instead.
73
74 * Fixed \key PITCH MODALITY syntax. The modality argument is now
75 mandatory, a rule in convert-mudela has been added.
76
77 * Cleaned up  buildscripts/ directory: removed obsolete scripts.
78
79 * Use Scheme_hash_table for identifier Scopes.  Scheme_hash_table is
80 based on STL and should be faster than hash_table.
81
82
83 1.3.59.jcn1
84 ===========
85
86 * Fixed scm_un/protect_object for guile-1.3.4 and 1.3.5 snapshots,
87   in the process reduced number of protect/unprotect calls.  With
88   guile-1.3.5 snapshot, memory usage has decreased by 1/5th, now
89   just 10% above the 1.2 level.  Also, Lily's a bit faster.
90
91 * Fixed make diff bug in stepmake to be able to make this diff :-)
92
93 1.3.58.hwn1
94 ===========
95
96 * Rewrote key sig support.  Now key signature can also be controlled
97 by setting keySignature and localKeySignature properties, eg.
98
99         \property keySignature = #'((2 . -1) ( 4 . -1) (6 . -1))
100
101 sets a key signature of `es ges bes' (an unusual key signature).
102
103 Keys are internally represented as transpositions of the c-major
104 scale. Printing the key signature for a scale is done by filtering out
105 all non-natural accidentals.
106
107 * Removed support for \keysignature, and \key something \minor; Newkey
108 is now obsolete.
109
110 1.3.58.jcn3
111 ===========
112
113 * Fixed pedal items (hw)
114
115 * Changed configure option tex-tmfdir to tmf-path now accepting multiple
116   tfm directories.  Automated links to cmr and amstex tfm font directories.
117
118 * Replaced one scm_assoc () u-turn slipped through jcn1
119
120 * various GUILE 1.3.5 compile fixes
121
122 * Added `Ped' as a compound symbol font and removed silly scheme kerning.
123
124 * Replaced some scheme assoc u-turns with scm_assoc ()
125
126 * Ran po-update (mostly because of new ja contribution).
127
128 1.3.57.jcn2
129 ===========
130
131 * Cleaned-up scheme list to text conversion for Chord_name and 
132 fixed horizontal kerning.
133
134 * Added examples for american (slashed o) and jazz (black triangle),
135   see input/test/{american-chords.ly,jazz-chords.ly}
136
137 * Made guile-1.3.5 compile fixes
138
139 1.3.57.uu1
140 ==========
141
142 * Fixed typo in Dots::do_brew_molecule (); this fixes the disappearing
143 dots problem.
144
145 * Rewrote key signature administration; now Scheme is used; Octave and
146 Key have been junked in favor of Newkey.
147
148 * japanese .po file included (thanks, Japanese team!)
149
150 1.3.57
151 ======
152
153 * Fixed several forgotten molecule-callbacks 
154
155 * Fixed first clef in score; now F clefs are also possible.
156
157 1.3.56.mb1
158 =========
159  
160 * Updated FAQ with two useful GDB macros.
161
162 * Several fixes in the documentation.
163
164 1.3.55.jcn1
165 ===========
166
167 * Made (dutch) po-update
168
169 1.3.56
170 ===========
171
172 * Molecules are now generated via callbacks exclusively; most calls to
173 set_elt_property ("transparent", SCM_BOOL_T) have been replaced by suicide().
174
175 1.3.55
176 ======
177
178 * Experimental property collapse for most score-elements.  (notable
179 exceptions: Scripts, pedals). Change all Score_element constructors to
180 take a basic-property list. The suffix of a property list may be
181 shared by several score-elements, for instance all default G-clefs in
182 a score share the following settings
183   
184            (breakable . #t)
185            (break-align-symbol . Clef_item)
186            (visibility-lambda . ,begin-of-line-visible) 
187
188 This should reduce memory usage further. 
189
190 * Magically fixed the disappearing Lyrics problem.
191
192 * Removed used_b_ field from Score_element.  
193
194 * Massive search-replace patch: store pointers and properties
195 separately, in preparation of property collapse.
196
197
198 1.3.54
199 ======
200
201 * Bugfix: don't crash on tuplet spanners that don't contain any notes.
202
203 * Cleanup of Dimension_cache: removed a few redundant
204 fields. Slightly lower memory usage (32 bytes per
205 score-element). Dimension_cache is now a `dumb' struct again.
206
207 * Add array index to priority field of text scripts to ensure that
208 order is unique, and sensible.
209
210 * Added an element count statistic.
211
212 1.3.53
213 ======
214
215 * russian.po (thank you, August.)
216
217 * Small cleanups in Molecule interface 
218
219 * Spacing related elements perform suicide after calculating
220 distances.  This saves a some memory, approximately 2 to 5 % ?
221
222 * Small cleanups in line breaking: Paper_column stores springs and
223 rods in only one place now.  All fields relating to energy have been
224 removed
225
226 * Don't generate all output Scheme in memory, but evaluate to output
227 file immediately.  This will reduce memory usage a little.
228
229 * Use STL's map  for Dictionary template
230
231 * Substitute pointers on element properties of the root Line_of_score
232 as well.
233
234 * Added toplevel doc target, to support building doc with --srcdir
235
236 * Removed cygwin build stuff; updated versions at:
237
238      http://appel.dyndns.org/lilypond/gnu-windows/cross
239
240 * Fixed lily.scm to handle incipits (thanks, Mats)
241
242
243 1.3.52
244 ======
245
246 * Made bugfix in smob handling: delete the C-part of freed smobs and
247 be honest about amount of allocation and deletion, so that GUILE
248 doesn't overestimate the amount of memory available.
249
250 * Faq update: nicer blank note paper, courtesy Mats Bengtsson.
251
252 * Bugfix: don't crash on durations that are not a power of 2.
253
254 * Build manpages during `make all' 
255  
256 * Bugfix: don't do absolute comparisons in Polynomial::clean ().
257
258 * Bugfix: set visibility-lambda for key signature created by
259 createKeyOnClefChange. Fixes disappearing key signatures. 
260
261 * Bugfix: make System_start_delimiter of bar-line type invisible when
262 it spans only one staff.
263
264 1.3.51
265 ======
266
267 * Item cleanups.  Copying items and rearranging pointers are done in
268 separate passes, which makes the code cleaner. This fixes a problem
269 with some items not disappearing from hara-kiri staffs.
270
271 * Use Scheme for Key_item data members. 
272
273 * Don't use regex in chord-names.scm under windows; hybrid chordnames
274 user+calculated will be partly broken.
275
276 1.3.50
277 ======
278
279 * Junked Shift_tuple from collision; Now it uses SCM.
280
281 * Bugfix of documentation and test-file of tuplet.
282
283 * Bugfix type string of repeated music is copied. This fixes declared
284 tremolos.
285
286 * Junked various cruft from lily.scm
287
288 * Use interfaces symbols instead of C++ class-name for assigning generic
289 element properties.
290
291 * Junked Dictionary from Piano_pedal_engraver and
292 Piano_pedal_performer.
293
294 * Introduced boolean element property no-spacing-rods: ignore this
295 item for hard constraints.
296
297 * Bugfix: added sanitised TeX fragment in faq.texi
298
299 * Bugfix: merge equal Bar_reqs
300
301 1.3.48.uu1
302 ==========
303
304 * Small fixes for \cresc and \endcresc
305
306 * Release properties of unbroken spanners & items after doing
307 handle_broken_smobs (); should conserve a little memory.
308
309 * Fixed handling of orphaned score-elements. Any element that does
310 not have its Line_of_score as a ancestor in both directions, is silently
311 removed from the output.  This guarantees that programming errors
312 don't result in coredumps from Dimension_cache::common_refpoint ():
313 element->line_l () is always a common reference point.
314
315 * Bugfix: set visibility-lambda of clef and octavation-8 explicitly
316 for default case.  Now the octavation 8 is not printed at every
317 barline.
318
319 1.3.48.mb1
320 ===========
321
322 * Changed noteHeadStyle properties to symbols, for example
323   \property Voice.noteHeadStyle = #'cross
324
325 1.3.47.jcn3
326 ===========
327
328 * Rewrite of chord-name production in scheme.  There are two major styles
329   now, banter and american.  To get american style, use
330
331       \property ChordNames.chordNameStyle = "american"
332  
333   Most anything should be possible now.  See input/test/american-chords.ly
334
335 * Added isinf check to configure.in, and isinf macro from guile to
336   bezier.cc; solaris has no isinf ().
337
338 * Fixed star-spangled-banner with not-so-nice \bar "|." fix.  Almost
339   perfect now.
340
341 * Added output property to regression test.
342
343 * Fixed warning of creating existing outdir.
344
345 * Added `Mark' interface to text-items that are marks (thanks, HW).
346
347 1.3.48
348 ======
349 1.3.47.mb2
350 ===========
351
352 * Corrected glossary.tely
353
354 * Corrected \mark font handling. feta-nummer font only of the 
355   string is all numeric.
356
357 * Implemented noteHeadStyle lookup in Guile. Reintroduced the style
358   "harmonic" and added "baroque" (normal note shapes except for 
359   brevis and longa which are square).
360
361 * Simplified ly2dvi using the power of the geometry package.
362
363 * Improved heuristic size calculation of TeX macros. Handles e.g.
364   "\\u{a}", "\\"{o}" and "\\^{u}" correctly.
365
366 1.3.47.hwn1
367 ===========
368
369 * Bugfix: don't hang on zero-duration.
370
371 * Various glossary updates (thanks, Christian)
372
373 1.3.47
374 ======
375
376 1.3.46.jcn2
377 ===========
378
379 * Drastically reduced vertical space used by headers/footers, when using
380   ly2dvi.  See input/test/fill-a4.ly.
381
382 * Fixed bug with colons appearing on repeat span-bars.
383
384 * Added Bar_number_engraver to standard Score context
385
386 * Construct octavation scripts in the clef-engraver; this fixes the
387 hara-kiri + clef8 problem
388
389 1.3.46
390 ======
391
392 1.3.45.jcn2
393 ===========
394
395 * Fixed chord-name customisation and made small chord-name build fixes.
396
397 * Accidentals with chord-names smaller and as superscript.
398
399 * Do some extra footify (works only once) while making html docs.  
400
401 1.3.45.hwn1
402 ===========
403
404 * Debian patch (Thanks Anthony)
405
406 * Rewrote Bar_number_engraver and Mark_engraver and removed
407 Bar_script_engraver as baseclass. Both Bar_number_engraver and
408 Mark_engraver are simpler and more robust.
409
410 * Fixed precedence of \property verticalDirection and dynamicDirection
411
412 * Fixed keys without barlines 
413
414 * Fixed StaffGroups: removing `\consistsend "Axis_group_engraver"'
415 puts alignment in function again
416
417 * Fixed StaffGroup + GrandStaff combination.
418
419 * Music is now mandatory as the first thing in a \score{} block
420
421 1.3.45
422 ======
423 1.3.44.jcn2
424 ===========
425
426 * Implemented una-chorda and sostenuto piano pedals in performer and engraver.
427
428 * Added Properties textScriptWordSpace and chordNameWordSpace.
429
430 * Junked old lyrics in star-spangled-banner.
431
432 * Added a Piano_pedal_engraver.
433
434 * Removed some empty files.
435
436 * Created piano pedal symbols: * - . P e d.
437
438 * Fixed ps-to-pfa.py to handle multiple unfills.
439
440 * Moved accordion symbols out of feta-script to end of font.
441
442 * Bugfix: don't create tfm's, pfa's etc of feta-test fonts.
443
444 * Fixed blot_diameter for small resolutions.
445
446 1.3.43
447 ======
448
449 * Put global element list into Line_of_score, instead of
450 Paper_score. post processing (the stage after line breaking) is now
451 truly done per-system, and we got rid of an ugly hack to get font
452 handling OK.
453
454 * Bugfix: set the group-interface of System_start_delimiter.
455
456 * Cleanups of Break_algorithm and derived classes, Move
457 broken_col_range () to Line_of_score, remove Paper_score::col_l_arr_
458
459 * Bugfix for accordion symbols.
460
461 * Various patches to prevent crashing when do_brew_molecule gets
462 called before after_line_breaking (). This was a problem in Spanner
463 classes mostly.
464
465 1.3.43
466 ======
467
468 1.3.42.jcn3
469 ===========
470
471 * Made a quick try at piano pedal performer, damper pedal only.
472
473 * mf/feta-accordion.mf: Fixed strange turning paths.
474
475 * mf/feta-beugel.mf: Fixed infinity errors.
476
477 * Use a more discriptive name for windows setup.zip.
478
479 * mf/GNUmakefile: Have logs as last target, so that normally, they're 
480 not made twice.
481
482 * stepmake/stepmake/metafont-rules.make: Don't remove the .log files.
483 The logs are a target, removing them retriggers make.
484
485 * stepmake/stepmake/metapost-rules.make: Remove the correct log and tfm
486 files, ie the ones that clutter the source directory, not the target logs.
487
488 * Windows distribution: faked symlink for cmtfm.  Setup.zip should now be
489 standalone; ie, no need for Cygnus' usertools anymore.
490
491 1.3.42.jbr1
492 ===========
493   
494 * Documentation/ntweb: Updated angels.ly to match current syntax.
495 Also updated index.texi.
496
497 1.3.42.uu1
498 ==========
499
500 * Change all occurances of Staff_margin_engraver to
501 Instrument_name_engraver, add a convert-mudela rule
502
503 * Change status == busy assert into programming error
504
505 1.3.42
506 ======
507
508 1.3.41.jcn3
509 ===========
510
511 * Lots of fixes to windows distribution scripts.
512
513 * Added configuration features --program-prefix, --program suffix.
514
515 * lily/my-lily-parser.cc (get_chord): Bugfix, don't use deleted pitch.
516 This fixes inversions c/g and bass additions d/+c on chords.
517
518 1.3.41.mb1
519 ==========
520
521 * Avoid that xxxXXXVerticalExtent is used for empty HaraKiriStaff
522   lines.
523
524 1.3.41.hwn1
525 ===========
526
527 * Debian patches (thanks Anthony!)
528
529 * Use symbols for prefatory matter spacing. Do not use the typename
530 for looking up item pairs in the table, but read element property
531 break-align-symbol
532
533 * Instrument_name_engraver, uses break alignment instead of
534 side-position.
535
536 * System_start_delimiter_engraver, System_start_delimiter, uses a
537 spanner for the braces/brackets at the left of the system. Remove all
538 old Span_score_bar engravers.
539
540 * Removed Base_span_bar_engraver::use_prority_b_, and moved
541 Base_span_bar_engraver into Span_bar_engraver.
542
543 1.3.40.jcn3
544 ===========
545
546 * mutopia/Coriolan/violino-2.ly: Bugfix: wrong pitch.
547
548 * input/test: Removed stale AutoStaffSwitch examples.
549
550 * mutopia/E.Satie: Fixed gnossiene-4, doing \autochange.  Removed
551 stale copy of gnossiene-4.
552
553 * buildscripts/make-cygwin-cross.sh: Made some small .zip package fixes.
554
555 * make/lilypond.spec.in: Made some bugfixes for _prefix, preparations
556 for cross-building to Cygwin.
557
558 * buildscripts/make-cygwin-cross.sh: Now using rpm packages.
559
560 1.3.40.hwn2
561 ===========
562
563 * added \property XXXMinimumVerticalExtent, \property XXXExtraVerticalExtent
564
565 * New_chord_tremolo_engraver: make tremolo beams from
566
567         \repeat "tremolo" NUMBER <Music-expression>
568
569 Removed support for "old-style" tremolos.
570
571 * Add a convert-mudela function for the conversion "\key A;" to "\key a; 
572
573 * Read \property measurePosition within the engraver code, instead of
574 looking up the Timing_translator.
575
576 * star-spangled-banner.ly: add Bar_engraver to LyricsVoice 
577
578 * Changed all .fly and .sly files to .ly files.  Propose to dump .fly
579 and .sly.
580
581 1.3.40
582 ======
583
584 1.3.39.jbr1
585 ===========
586
587 * buildscripts/mf-to-table.py: feta dep files are now opened with write
588   binary option.  This avoids carriage return linefeed problems and
589   windows while not affecting unix.
590
591 * Documentation/hacking.texi: Fixed a texinfo syntax error
592
593 * stepmake/bin/package-zip32.sh: Fixed or Removed some legacy, 1.2.x,
594   directory paths.
595
596 * Documentation/ntweb/index.texi: Fixed broken links, added 1.3.39 links.
597
598 1.3.39.hwn1
599 ===========
600
601 * Glossary updates by Christian Mondrup.
602
603 * Bugfix: use generic properties in lyrics too. This fixes the
604 \property textStyle for lyrics.
605
606 * Score_element::preset_extent(), used by \property
607 XXXVerticalExtent, so hard code the size of a vertical group. 
608
609 * Don't fix up reference points for originals of broken
610 spanners. Fixes spurious "orphaned score-element" warnings.
611
612 * buildscripts/make-cygwin-cross.sh: Use rx-1.5 instead of regex (Jeffrey).
613
614 * scm/lily.scm: Fixed check for Windows: by default don't use scm regex.
615
616 * Documentation/ntweb/guile-1.3.4-gnu-windows.patch: Significantly smaller
617 patch for guile.
618
619 * buildscripts/make-cygwin-cross.sh: Compile native package GNU regex,
620 which should fix Windows problems with guile.  Also added input directory
621 to zip file.
622
623 * stepmake/aclocal.m4: Added decent checking for version of guile, and 
624 fixed warning message.
625
626 * lily/lexer.ll (My_lily_lexer): Bugfix: lookup chordmodifiers in the
627 chord-modifier table (not in the pitch list).
628
629 1.3.39
630 ======
631
632 1.3.38.hwn2
633 ===========
634
635 * General cleanups of My_lily_parser. 
636
637 * Start of a Chord_tremolo_iterator for the `\repeat 4 "tremolo"'
638 syntax.
639
640 * Moved Score_element::do_space_processing out of the dependency
641 mechanism.
642
643 * Use Scheme for notename tables.  Removed uppercase letters for low
644 octave notes. Removed Notename_table.
645
646 * Fixed core dump with declared "\key  ; "
647
648 * Extra robustness warning for Side_position_interface::aligned_on_self ()
649
650 * Extra robustness: make sure that first and last columns are breakable.
651         
652 1.3.38.jcn4
653 ===========
654
655 * stepmake/aclocal.m4: Added support for cross-compiling with guile.
656
657 * buildscripts/make-cygwin-cross.sh: A try at dropping cygwin1.dll
658  dependency by using mingw.  Compiling guile is too much to ask
659  for mingw, though.  Also:
660  - rename python scripts .py (request from Alain)
661  - install native packages under their own, separate root. (Alain)
662
663 * lily.scm: Don't use regex module when running on
664 Windows. (Shamus)
665
666 * lily/staff-margin-engraver.cc (acknowledge_element): If
667 possible, hang y-axis of margin script to span-bar.  This fixes
668 vertical placement of margin scripts attached to staff groups.
669
670 * help2man-rules.make: Fixes for generating manpages by copying
671 and for building using --scrdir.
672
673 * stepmake/stepmake/generic-targets.make: Preserve date stamp of
674 config.h, version.hh files file when copying.
675
676 * buildscripts/make-cygwin-cross.sh: made number of fixes:
677         - add `Cygnus/' prefix to directories in .zip-file too.
678         - package guile too.
679         - don't link to cygwin1.dll
680
681 * stepmake/stepmake/install-targets.make: bugfix, don't fail if directory
682   is not emty when uninstalling.
683         
684 * stepmake/stepmake/generic-targets.make: added man target.
685
686 * buildscripts/make-cygwin-cross.sh: new script for cross-building cygwin
687   development tools and lilypond executable.
688
689 * Documentation/ntweb/lilypond-manpages.patch: provide pre-built
690   manpages, so that make doesn't fail on help2man trying to execute
691   a GNU/windows executable.     
692
693 * Documentation/ntweb/guile-1.3.4-gnu-windows.patch: new patch for
694   guile-1.3.4.  
695
696 * flower/libc-extension.cc (memmem): cygwin compile fix.
697
698 1.3.38
699 ======
700
701 1.3.37.hwn1
702 ===========
703
704 * (generic-property.scm) added \property tieDash to set dashing on
705 ties.
706
707 * Removed  ly_eval_str(), we should use scm_eval (Scm_object).
708
709 * Removed scm_to_array (), array_to_scm (), associated junk. Reverted
710 undocumented .29 patch that made Bezier::control_ into an
711 Array<Offset>.  Added some comments documenting the reasons for the
712 changes.
713
714 * Revert generic-property.scm of .37 fix, fix the real problem in
715 property-engraver.cc: use the right symbol to check if element
716 property is already set.
717
718 1.3.37.jcn2
719 ===========
720
721 * Fixed srcdir build, so that you can do:
722
723       tar xzf releases/lilypond-x.y.z
724       mkdir <build>
725       cd <build>
726       ../lilypond-x.y.z/configure
727       make
728
729   as with any other gnu package.  All build output goes to <build>/out.
730
731 * Changed and fixed use of different configurations, and different output
732   directories.  Finally, you can use different configurations alongside
733   eachother.  From make/stepmake.make:
734
735       # Use alternate configurations alongside eachother:
736       #
737       #     ./configure --enable-configsuffix=debug
738       #     make conf=debug
739       #
740       # uses config-debug.make and config-debug.h; output goes to out-debug.
741       #
742
743       # Use same configuration, but different output directory:
744       #
745       #     make out=www
746       #
747       # uses config.make and config.h; output goes to out-www.
748       #
749
750
751 * Fixed performance of (de)crescendi.
752
753 * Better documentation for arithmetic_multiplier and arithmetic_basicspace
754   in params.ly.
755
756 * Added instrument-equaliser for MIDI output, see scm/midi.scm, and
757   properties midiMinimumVolume, midiMaximumVolume, ranges [0,1].
758
759 * Changed absolute midi volume settings into factor of full scale.
760
761 * Fixed another dynamic-line-spanner bug, it gets hairy.
762
763 * Added warning for spanners that are not fully contained in parent spanner.
764
765
766 1.3.37
767 ======
768 1.3.36.hwn1
769 ===========
770
771 * Abstract Align_element into Align_interface. Removed
772 Axis_align_{item,spanner}, Align_element, Super_element, all multiple
773 inheritance in the backend.
774
775 * new Gade score, INSTALL.texi fixes (thanks, Mats)
776
777 * Removed Item::hpos_f (), Score_element::{get,set}_real ()
778
779 * comments detailing properties for Axis_group_interface,
780 Side_position_interface, Score_element, Item and Spanner
781
782 1.3.36.jcn3
783 ===========
784
785 * Fixed vertical dimensions of elements in dynamic line spanner by adding
786   axis-group to dynamic line spanner.
787
788 * Bugfix: line-spanner lasts always full duration of (de)crescendi.
789
790 * Bugfix: broken (de)crescendi on a dynamic-line-spanner.
791
792 * Bugfix: compilation dynamic-engraver.
793
794 * Added and updated a faq about postscript and ghostscript.
795
796 * Fixed order of slurVerticalDirection verticalDirection in
797   generic-property.scm.  Similar fixes for Stem, Tie, etc.
798
799 * Added a Text_engraver to GraceContext.  Maybe it was removed on
800   purpose: scripst on grace notes seem broken, they appear on the
801   main note.
802
803 * Bugfix: volume effect of (de)crescendi was sometimes wrong way round.
804
805 1.3.36
806 ======
807 1.3.35.hwn1
808 ===========
809
810 * textEmptyDimension changed into textNonEmpty, default: off,
811 ie. texts don't occupy space.
812
813 * Use STL map for Lookup::lookup_p_tab_p_
814
815 * Abstracted Axis_group_element into Axis_group_interface, and removed
816 Axis_group_element. This eliminates some multiple inheritance in the
817 backend
818
819 1.3.35.jcn1
820 ===========
821
822 * Added minimum-space property to Side_position_interface.  Used in
823   positioning of Volta_spanner: voltaMinimumSpace.
824
825 * Fixed and cleaned-up volta-spanner.
826
827 * Moved directional-element.cc -> directional-element-interface.cc
828
829 * Renamed all `process_requests' to `process_music', which fixes
830   midi performance.
831
832 * Fixed dimensions (more x-y interchanges) of brace, bracket and
833   volta-spanner.
834
835 * Bit half-baken fix in to get similar vertical placement of orphaned vs.
836   line-spanned dynamic elements.
837
838 * Added property bracketCollapseHeight: the minimal size of a staff bracket
839   that will be typeset.  Smaller brackets will not be displayed.  This
840   fixes the (in 1.3.x reintroduced) funny duck-beak-bracket-bug (sorry).
841
842 * Removed some dissonant chords from Coriolan
843
844 1.3.35
845 ======
846
847 * Removed Documentation/programmer directory 
848
849 1.3.34.jcn3
850 ===========
851
852 * Small enhancements to Staff_margin_engraver:
853    - by default, the marginScript left aligns the text
854    - to set the text style, use property marginScriptTextStyle
855    - to change the alignment, use property marginScriptHorizontalAlignment
856      (centred and right alignment require manual padding settings).
857
858 * Print a friendly message if the manual pages failed to build.
859
860 * Bugfix: dynamicDirection now overrides verticalDirection setting.
861
862 * Warning messages and nl.po
863
864 * Fixed vertical alignment for all dynamic items and (reluctantly)
865   reinstated old directional behaviour for orphaned dynamics.
866
867 * Finished maximumRestCount property.
868
869 1.3.34
870 ======
871 1.3.33.hwn2
872 ===========
873
874 * Print key without setting key, syntax "\key ;". General cleanups of
875 key-item.
876
877 * Add paragraph tags in HTML output of mudela-book.  Music fragment
878 don't run into the text anymore.
879
880 * Bugfix: don't align the first line of text. (Lookup::text ()).
881
882 * Abstract away data members of Axis_group_element, Align_element
883
884
885 1.3.33.jcn3
886 ===========
887
888 * Added helpful properties instrumentScriptPadding/instrScriptPadding for
889   Staff_margin_engraver.
890
891 * Removed some empty files, substituted (c) 1999 occurrences.
892
893 * Added \property maximumRestCount.  It will prevent showing (or actually:
894   moving in case of a collision) more than maximumRestCount similar rests.
895   WIP!
896
897 * Rewrote Staff_margin_engraver.  Staff margin texts now hang on a new
898   breakable item: Left_edge_item.
899
900 * Fixed vertical alignment for dynamic elements.  Orphaned dynamic items
901   (not supported by a Dynamic_line_spanner) still collide with Staff,
902   although they now have staff support, which was supposed to fix this.
903
904 * Fixed Staff_margin_engraver for "instrument", "instr" is still broken.
905
906 * Dynamic elements are only put in a Dynamic_line_spanner if there
907   actually is more than one adjacent note-column with a dynamic.
908   This breaks the fine looks of all dynamics, again :-)
909
910
911
912
913 1.3.33
914 ======
915
916 1.3.32.hwn3
917 ===========
918
919 * Experiment: use STL map for Scheme_hash_table; Is there a speedup?
920
921 * Bugfix: print brace iso. bracket for Piano / GrandStaff
922
923 * Change naming: change do_post_processsing into after_line_breaking,
924 do_pre_processsing into before_line_breaking and do_process_requests
925 into do_process_music.
926
927 * Bugfix in hash-table.hh: do quadratic probing, and not cubic probing.
928
929 * Display property name for type error.
930
931 * Cleanups for Dynamic_engraver and Dynamic_line_spanner.
932
933 * Warn if last column in score is musical. Helps catch programming errors.
934
935 * Spanner::spanned_drul_ now is private. 
936
937 * Rewrote some bar code: moved molecule functions out of Lookup.
938
939 1.3.32.jcn3
940 ===========
941
942 * Embedded newlines in text items are now allowed.  This helps avoiding
943   TeX-hacking in some cases.  See input/test/coriolan-margin.ly
944
945 * Fixed stupid x-y interchange bug for staff-bracket.  This fixes
946   placement of staff-brackets.
947
948 * Fixed bracket/arch-thickness interchange bug, and made bracket a bit
949   thinner.
950
951 * Fixed slur/bezier-beautiful name mismatch.  This should fix the steep
952   slurs that were apparently reintroduced in 1.3.29.
953
954 * Made some small fixes to Coriolan.
955
956 * Removed duplicate lily/output-property-engraver.hh.
957
958 * Removed optional use of vanilla spanner in Dynamic_engraver.
959
960 * Fixed (measured) tremolo for Stem and Beam. Merged declarations
961   stem-engraver.hh and chord-tremolo-engraver.hh into their .cc
962   implementation file.  Also fixed looks of Chord tremolo, input and
963   implementation is still ugly.
964
965 * Added *.yy and *.ll to TAGS, to that tags-find-replace doesn't omit
966   parser and lexer.
967
968 1.3.31.mb1
969 =========
970
971 * Fixed \specialkey and \normalkey. Updated documentation.
972
973 1.3.32
974 ======
975 1.3.31.jcn5
976 ===========
977
978 * Fixed and cleaned-up Dynamic_engraver.  Optionionally uses vanilla
979   spanner instead of Dynamic_line_spanner.
980
981 * Made gcc-2.95 compile fix in libc-extension.
982
983 * Various fixes to Coriolan, score starts to look acceptable.
984
985 * Moved optional text of crescendo into Crescendo spanner.  Fixed horizontal
986   and vertical alignment of dynamics.
987
988 * Added new text crescendo spanners to Coriolan and made some fixes.
989   If you're using timidity, use the -EO option to prevent notes get
990   stuck.  I'm not sure whose fault this is, Lily's MIDI output may be
991   stretching the standard a bit.
992
993 * Adjacent dynamic markings are now grouped on a horizontal line, but it's
994   not perfect yet: they're always below the staff and no horizontal spacing
995   is done.  Also, character metrics of dynamics are still not used.
996   See: input/test/crescendi.ly and input/test/dyn-line.ly
997
998 * Cleaned up Span_dynamic_performer.
999
1000 1.3.31
1001 ======
1002 1.3.30.mb1
1003 =========
1004
1005 * Fixed the page layout, reintroducing space for the header and
1006   trying to keep piece titles on the same page as the piece.
1007   The header and footer can now contain several lines.
1008
1009 1.3.30.jcn3
1010 ===========
1011
1012 * Lily now also performs crescendi and decrescendi in MIDI output:
1013   Span_dynamic_performer (bit scrappy).
1014
1015 * Added preliminary support for crescendi/decrescendi other than `hairpins',
1016   eg: `cresc. poco `a poco -- -- --'
1017
1018 * Made MIDI tie performance fix.
1019
1020 1.3.30.jcn2
1021 ===========
1022
1023 * Lily now performs absolute dynamics in MIDI output.
1024
1025 * Included David's comments on opus47 in TODO.
1026
1027 1.3.30.jcn1
1028 ===========
1029
1030 * More Coriolan: flute-1,2; oboe-1,2; clarinet-1,2; 
1031   fixes and remainder french horn-1,2; trombone-1,2;
1032   fagotto-1,2; timpani; and several fixes.
1033   
1034 1.3.30.uu1
1035 ==========
1036
1037 * Remove some old doco from programmer/ and put on personal homepage.
1038
1039 * Removed union-find from flower library.
1040
1041 * Only quantise tie horizontal part inside the staff.
1042
1043 1.3.30
1044 ======
1045 1.3.29.hwn1
1046 ===========
1047
1048 * Report type errors for \property. Helps with converting 1.2 input
1049
1050 * Use Scheme for Align_element; fixed graceAlignPosition 
1051 and removed \property alignmentReference in the process.
1052
1053 * Use generic properties for lyrics too.  This fixes \property
1054 Lyrics.textStyle
1055
1056
1057 * Add relative distance for constraints between non-column items.
1058
1059 * Automatic \marks: use "\mark ; ". The mark numbers or letters are
1060 increased automatically.
1061
1062 * Translators now only change properties of their own context. This
1063 removes the 2nd argument to Translator::get_property()
1064
1065 * Bugfix for Metapost mode
1066
1067 1.3.29.uu1
1068 ==========
1069
1070 * Updates of glossary  (Christian Mondrup)
1071
1072 * Bugfix with bar number placement
1073
1074 * Moved links to bibliography/ and misc/ to main index.
1075
1076 1.3.29
1077 ======
1078
1079 * Moved Slur-specific code from Bezier_bow to Slur and Slur_bezier_bow.
1080   Slurs are now calculated just once.
1081
1082 * Bezier_bow gets constants from paper.  Still no sensible solution for
1083   magic asymmetry gradient step constants.
1084
1085 * Reinstantiated tangent-controls, more flexible than ever.  You can choose
1086   between area asymmetry and tangent-controls.  My guess is, tangent controls
1087   will be junked in 1.3.30.
1088
1089 * Slur area: only look at x-gradient.
1090
1091 * Added credits for some symbols of as5/9 fonts.
1092
1093 * Bugfix: don't make almost flat slurs, change in de-uglyfy slur.  
1094
1095 * Bugfix: midi2ly put out recent version (ugh).
1096
1097 1.3.28.hwn2
1098 ===========
1099
1100 * Bugfix: don't forget to process staffSpace and numberOfStaffLines
1101 properties.
1102
1103 * Removed Gade score. To appear (shortly?) on Mutopia. 
1104
1105 * Make Bar_script_engraver look for typeVisibilityFunction (eg
1106 property barNumberVisibilityFunction). Changed the names of the Scheme
1107 functions to be understandable. See input/test/bar-script-visibility.ly
1108
1109 * rewrite of class Molecule. It has now reached the ultimate quality
1110 plateau. All molecule data is now shared.
1111
1112 1.3.28
1113 ======
1114
1115 * Update of the glossary by Christian Mondrup 
1116
1117 * Moved horn-concerto-3 out of tarball to private website, removed
1118 W.A.Mozart subdirectory.
1119
1120 1.3.27.hwn1
1121 ===========
1122
1123 * Bugfix: don't make giant ties if the horizontal part of tie is near
1124 the center.
1125
1126 * Small optimizations to be a little more careful with mem usage. 
1127
1128 * Website change: put all examples in one directory.
1129
1130 * Removed Atom as a separate type.  Now use SCM, and since we use
1131 function composition, Atoms are immutable, so they don't have to be
1132 copied. This makes life easier, hopefully this is quicker and uses
1133 less memory.
1134
1135 1.3.27.jcn1
1136 ===========
1137
1138 * Bezier_bow: minimise_enclosed_area
1139
1140 1.3.27
1141 ======
1142
1143 1.3.26.hwn4
1144 ===========
1145
1146 * Tuplet-spanner slope calculation now looks better on tupletted rests
1147 (patch courtesy Laurent Martelli)
1148
1149 * Bugfix (Staff_performer::new_instrument_str ()) check type of
1150 \property "instrument"
1151
1152 * New mechanism for breaking lines: do not copy & prune the element
1153 property list separately, but combine these steps. Dramatically
1154 reduces memory usage for large scores.
1155
1156 1.3.27
1157 ======
1158 1.3.26.jcn2
1159 ===========
1160
1161 * Bugfix: font used in volta-spanner calculation.
1162
1163 * Added simple selection list to webpage, inspired by sawmill.
1164  
1165 * Devised kludge for ascii 5 character font pitches.
1166  
1167 * Substitutions: interline, 1997,1998, @stack.nl and small typo fixes.
1168
1169 1.3.26.hwn1
1170 ===========
1171
1172 * Plug memory leaks related to Moment:
1173   - Spacing_engraver::do_pre_move_processing ()
1174   - make_rational ()/make-rational
1175   - Paper_column::Paper_column ()
1176
1177 * Plug memory leak in Paper_outputter::output_{String,Real,int}_def()
1178
1179 * Plug memory leak in Score_engraver::set_columns ()
1180
1181 * Plug memory leak in Scheme_hash_table::set()
1182
1183 * Plug memory leak in Score_element::molecule_extent ()
1184
1185 * Bugfix: don't crash if a slur doesn't span anything.
1186
1187 * Bugfix: don't crash if doing beams without a staff symbol.
1188
1189 * Generic element property setting:
1190
1191         \outputproperty #predicate #'symbol = #value
1192
1193 Will set the element property symbol to value, for any elements that
1194 return true for PREDICATE.  This allows you to virtually tweak *ANY*
1195 property of the output. Example in input/test/generic-output-property.ly
1196
1197 1.3.26
1198 ======
1199
1200 * lilypond as as2ly: --help and --version to stdout.  Regular identify 
1201   to stderr.  This fixes help2man's manpage generation.
1202
1203 * configure: substitute full path for perl and guile in scripts.
1204
1205 * Added ascii slur and volta.  There seems to be a Lily bug in volta placement.
1206
1207 * Bugfix: default font now user settable
1208
1209 * as2text: handle plain ascii font, read from stdin, you can now do:
1210
1211   echo "\time 4/4; g''1 g2 g4. g8" | lilypond -f as -i init-as.fly - | as2text
1212
1213 1.3.25.hwn1
1214 ===========
1215
1216 * Bugfix: second half of broken ties now are displayed again.
1217
1218 * Bugfix: add clef to the support of 8 text in the G_8 clefs. Center
1219 it horizontally on the clef.
1220
1221 * Added Tie_column spanner. Ties in tied chords now get proper directionsa.
1222
1223 * Bugfix: unbroken repeat barlines now work, eg. |:
1224
1225 * Added Request_iterator to make more flexible constructions possible.
1226
1227 1.3.25
1228 ======
1229 * as2text: catch missing font/character errors, added default font, set text.
1230
1231 * New ascii fonts and glyphs: as5 as-numeral4 as-braces9
1232
1233 * Ascii output, minimal support:
1234   - AsciiScript Fonts: mf/*.af
1235   - Init files: ly/*-as.*ly 
1236   - AsciiScript translation to text: scripts/as2text.scm
1237   - input/test/as.fly input/test/as1.fly
1238   - Output support: lily/lily.scm
1239   - Try:
1240       lilypond -f as -i init-as.fly input/test/as.fly
1241       as2text as.as
1242
1243 1.3.24.hwn1
1244 ===========
1245
1246 * The horizontal part of ties will avoid collision with staff lines.
1247
1248 * Plugged memory leak: don't protect Atom function.
1249
1250 * Lookup cleanups. Made lots of functions static. Moved some code out
1251 of Lookup.
1252
1253
1254
1255 1.3.24.hwn1
1256 ===========
1257
1258 * Bugfix: ly2dvi.py exits succesfully when encountering --help and
1259 does not delete any of the file_ly*.tex.
1260
1261 * Added header and footer support in ly2dvi.py
1262
1263 1.3.24
1264 ======
1265
1266 * Added a ROADMAP file explaining the source directory layout.
1267
1268 * Minor tweak in the feta 6 and 9 numeral
1269  
1270 * Moved files from lib/ to flower/
1271
1272 * Removed Note_head_side class.
1273
1274 * Updated the webpage to be a little more chatty. 
1275
1276 * Small Local_key_engraver optimization: only lookup timing engraver once.
1277
1278 * Fixed dashed slurs
1279
1280 * Rewrite of Slur code.  Be much more picky about slur shapes. We try
1281 to offset the slur instead of bending it too much
1282
1283 * Look at stem directions for tie direction.
1284
1285 * Compound multimeasure rests. Put measures_i_ variable in an element
1286 property.  Made the symbol a lot wider.
1287
1288 * Time signature small cleanups.
1289
1290 1.3.22.hwn2
1291 ===========
1292
1293 * Symbols opposite to stem (eg marcato) now get the proper glyph in up
1294 version.
1295
1296 * Breathing marks now have a direction by default.
1297
1298 * Do set generic script properties.
1299
1300 * Also put tuplet brackets under notes.
1301
1302 * Score_element_info: only store origin of element, but not the path
1303 to parent translators. Saves a little memory, and removes some complexity.
1304
1305
1306 1.3.22.hwn1
1307 ===========
1308
1309 * Autobeaming in time sigs that don't have 1/4 beats fixed.
1310
1311 * (De)crescendi should now work. (Thanks Michael)
1312
1313 * Better error reporting for conflicting time signatures.
1314
1315 * Line_number_engraver: output locations of note head
1316 definitions. Very handy when entering complicated scores.
1317
1318 * Rewrote multi measure rest support: now they are entered as spanners
1319 (\commandspanrequest \start "rest"). RXXXX is an abbreviation for
1320
1321   { \commandspanrequest \start "rest"
1322     SXXXX
1323     \commandspanrequest \stop "rest"
1324   }
1325
1326 * Removed support of percent style repetitions. 
1327
1328 * Put texts outside the staff.
1329
1330 1.3.21.mb1
1331 ==========
1332 * Getopt bugfix: don't assert on certain errors.
1333
1334 * ly2dvi: Remove unnecessary space for the page headers.
1335
1336 * Bugfix convert-mudela
1337
1338 1.3.21.hwn1
1339 ===========
1340
1341 * Bugfix in lilypond-mode.el: eval-buffering now uses file name and
1342 not buffer name.
1343
1344 * Scrapped tupletVisibility property. Now use tupletNumberVisibility,
1345 tupletBracketVisibility, with Scheme value #t, #f or 'if-no-beam.
1346 \property tupletInvisible will stop all tuplet spanner creation.
1347
1348 * Don't go berserk if tuplet spanner is on only one column.
1349
1350 * Use SCMs & Smobs for Molecules & atoms.  This uses less
1351 scm_(un)protect_object () calls, so the output stage should be faster.
1352
1353 * Added \property tupletSpannerDuration, to make multiple tuplet signs
1354 with one \times.
1355
1356 * Some programming Errors in spacing are now caught. Lily does not
1357 hang when encountering degenerate springs.
1358
1359 * Allow beams to start and end over rests
1360
1361 1.3.19.hwn2
1362 ===========
1363 * Fix disappearing clefs when clefs are not printed with a barline.
1364
1365 1.3.20.jcn2
1366 ==========
1367
1368 * SCM properties beamHeight and beamVerticalposition now use half-spaces:
1369   input/test/beam-control.fly
1370 * Added \context Voice to .fly and .sly; the default \context Staff is almost
1371   never what you expect
1372 * Fixed decision for .sly/.fly in lilypond-mode.
1373
1374 1.3.19.hwn1
1375 ==========
1376
1377 * Clean up font-metric hierarchy, use Adobe AFM code to parse AFM files.
1378 Cleanup mf-to-table.py
1379
1380 * Fixed embarassing slur bug.
1381
1382 1.3.19.jcn1
1383 ==========
1384
1385 * lilypond-mode.el: guess init file for lily-*-region, lily-mode-map bindings
1386
1387 1.3.18.uu2
1388 ==========
1389
1390 * lilypond-mode.el for emacs supersedes mudela-mode.el 
1391
1392 * Tuplet spanners don't collide with encompassing notes. 
1393
1394 * Gobbled Adobe parseAFM* code, for future use.
1395
1396 * Big 1999 to 2000 search/replace.
1397
1398 * Big interline to staff_space search/replace for mf files.
1399
1400 * Removed Bow class, and split code into Tie and Slur
1401
1402 * Don't put scripts on grace notes.
1403
1404 * Font_metric uses SCM for name field.
1405
1406 * Various compilation fixes.
1407
1408 1.3.17.jcn2
1409 ===========
1410
1411 * Bugfix: beams with less than one (visible) stem
1412
1413 * small fixes to pa.ly
1414
1415 1.3.17.jcn1
1416 ===========
1417
1418 * Fixed bug that made multi-measure rest barnumber counts go wild.
1419 (even more scm2int/int2scm mixups!)
1420
1421 * mutopia/J.S.Bach/pa.ly: organ score (for my father)
1422
1423 * small fix to mutopia/J.S.Bach/Duette/violino-ii.ly
1424
1425 1.3.17.hwn2
1426 ===========
1427
1428 * Remove Paper_def calls in bezier-bow.cc
1429
1430 * Remove data members of Tuplet_spanner,  Volta_spanner
1431
1432 * hang_on_clef, property hangOnClef removed
1433
1434 * Bar::type_str_ mode into element property `glyph'. Use a Scheme
1435 function to determine breaking behavior.
1436
1437 * More Scheme typechecking.
1438
1439 * Be strict about the difference between strings and symbols for conversion.
1440
1441 * Fixed bug that made 1st line offset to right fixed. Bugfix courtesy
1442 Laurent Martelli.
1443
1444 * Partial French translation, courtesy Laurent Martelli.
1445
1446 * Small corrections in NL translation. 
1447
1448 1.3.17.hwn1
1449 ===========
1450
1451 * Added mensural note heads (noteHeadStyle = "mensural") Additionally,
1452 we have a longa note head.  noteHeadStyle = "harmonic" is not
1453 supported anymore. (for now, that is)  
1454
1455 * Reference manual update. Document \properties with examples
1456
1457 * fix mudela-book --help
1458
1459 * Use element properties for Text_item::text_str_, Clef_item::symbol_,
1460 Key_item::c0_position_
1461
1462 * Clef_engraver general cleanup. Use alists (\property
1463 supportedClefTypes, clefPitches) for clef types.
1464
1465 * Use progress_indication () for progress. Don't include <iostream.h> directly 
1466 Don't include <string.h>, <math.h> from headers.
1467
1468
1469 1.3.16.hwn1
1470 ===========
1471
1472 * \property stemCentered (boolean): centers stem on note head. See
1473 input/test/stem-centered.ly
1474
1475 * input/trip.ly, small test of lots of features.
1476
1477 * \property Staff.collisionMergeDotted: merge equal noteheads
1478 with different dot count. See input/test/collision-merge-dotted.fly
1479
1480 * Dotted rest bugfix 
1481
1482 * Don't crash if a slur does not span any notes.
1483
1484 * Volta repeats fixed.
1485
1486 * cleanup of Note_heads_engraver
1487
1488 * removed dots_i_ member of Dots
1489
1490 1.3.16.jcn1
1491 ===========
1492 * Fixed cross staff slurs.  It seems that cross-staff sign
1493   was swapped.
1494
1495 1.3.15.hwn1
1496 ===========
1497
1498 * Fixed bug in stem code.  Stem in chords works again.  Small
1499 stem cleanups.
1500
1501 * Use element properties for Staff_symbol.
1502
1503 * \property sparseTies (boolean).  Only make one tie in the
1504 middle for tied chords.
1505
1506 * Junked Directional_spanner, Column_info.
1507 Directional_element now is element interface `Directional_element_interface'
1508
1509 * cleanup: use to_boolean () iso. gh_boolean_p && gh_bool2scm
1510
1511 pl 15.jcn4
1512         - removed old notename2scm conversion
1513         - beam-dir-algorithm through scm
1514         - bfs paper-scm
1515         - bf: knee-stemlengths
1516
1517 pl 15.jcn3
1518         - moved poor man's stem arrays to scm
1519         
1520 pl 15.jcn2
1521         - beam quanting using scm lists
1522
1523 pl 14.hwn1jcn1
1524         - chord-name uses scm members
1525         - bfs: knee with different mults, interstaff knee, auto-knee
1526
1527 **********
1528 pl 14.hwn1
1529         - specialize duration.cc for lily, move out of lib/
1530         - stem cleanup
1531         - more SCM typechecking
1532         - stafflineleading -> staff_space
1533         - bf: rod distances.
1534         - junk some unused code.
1535         
1536 pl 13.hwn2
1537         - paper/score column cleanups. Junk Score_column type
1538
1539 pl 13.hwn1
1540         - Bezier_bow/Bezier cleanups
1541         - bf: rest under beam.
1542         
1543 pl 13.jcn2
1544         - untangled Chord_name (item) and Chord (list-of-pitches)
1545         
1546 pl 13.jcn1
1547         - bezier-bow fix
1548
1549 **********
1550 pl 12.hwn1
1551         - polynomial.hh
1552         - bf: generic properties
1553         - quantise_iv () fix.
1554         - bezier cleanup
1555         - class Polynomial 
1556         - use smobs for font metric tables/hashes.
1557         - nl.po bf
1558
1559 **********
1560 pl 11.jcn3
1561         - small beam fixes (interstaff knees still broken)
1562
1563 pl 11.hwn1
1564         - bf: dots
1565         - bf: harmonic note heads
1566         - revise stem, notehead, rest
1567
1568 pl 11.jcn2
1569         - included missing scm,ly updates
1570         - bf: urg to_dir () takes scm..
1571         - bf's: if (Foo b = bar != 1)
1572         - beam cleanup
1573
1574 *********
1575 pl 10.uu1
1576         - various small bfs
1577         - bf: alignment reversed
1578         - Staff_symbol_referencer -> Staff_symbol_referencer_interface
1579         - bf: staccato pos
1580         - Knee fixes (thanks, Jan)
1581
1582 pl 10.jcn2
1583         - fixes for invisible beamed stems
1584         - removed steminfo from properties, don't cache Stem_info
1585
1586 pl 10.jcn1
1587         - steminfo to properties
1588         - dropped internote dim for stem-beams
1589
1590 *********
1591 pl 9.hwn1
1592         - abstracting Staff_symbol_referencer to an interface.
1593         - quantised_position for staccato dots.
1594         - standchen fixes
1595         - junk Score_element::do_{width,height}: set callbacks directly.
1596         - merge Score_element, Graphical_element
1597         - merge Axis_group_element, Graphical_axis_group
1598         - junk pointer fields from Score_element derived classes
1599         - junk obsolete do_substitute_dependency code.
1600
1601 **********
1602
1603 pl 8.hwn2
1604         - staff-support for Crescendi.
1605         - padding for accidentals.
1606         - cascading offset callbacks
1607
1608 pl 8.hwn1
1609         - note-head-side 
1610         - naming Staff_sidify -> Side_position_interface
1611
1612 ***********
1613
1614 pl 7.mb1
1615         - bf: timeSignatureStyle works again
1616
1617 pl 7.hwn1
1618         - Dirk Latterman key/mmrest patches
1619         - Offset callbacks in Dimension_cache
1620         - Junked Staff_side_*
1621         - Staff_sidify: interface class.
1622         - prelude-{1,2} fixes.
1623
1624 ***********
1625 pl 6.uu2
1626         - bf: PS font selecting.
1627
1628 pl 6.uu1
1629         - bf: ls-latex
1630         - mudela-book --no-pictures
1631         - bf: ly2dvi
1632         - convert-mudela: beamAuto moment syntax. 
1633
1634 pl 6.jcn3
1635         - fixed scm output
1636
1637 pl 6.jcn2
1638         - half-baken ly-gulp-file in scm
1639         - resurrected scm output through guile
1640
1641 pl 5.mb1
1642         - bf: version of init.sly, init.fly
1643         - Clarify necessary version of texinfo
1644         - bf: texi files, minor errors and syntax compatible with 
1645           older makeinfo
1646
1647 pl 6.jcn1
1648         - bf: scm output
1649
1650 *******
1651
1652 pl 5.hwn2
1653         - Bach preludes: mutopification
1654         - dots are Directional_element too; use \property dotDirection
1655         - moved some stuff out of Lookup
1656         - bf: dots
1657         - font selection mechanics changed.
1658
1659 pl 5.uu1
1660         - bf: smob allocation (thanks David!)
1661
1662 pl 5.hwn1
1663         - junked \shape. Now use #'margin-shape 
1664         - timing: one_beat -> \property beatLength
1665         - bf convert-mudela
1666
1667 ************
1668
1669 pl 4.uu1
1670         - input/test/ \property fixes.
1671         - gcc 2.95 fix
1672
1673 pl 4.hwn1
1674         - Break_align_engraver,
1675         break align order from  \property breakAlignOrder
1676         - junked Score_priority_engraver
1677         - moved Time_description into Timing_translator
1678         - use properties for timing, see input/test/timing.fly
1679         * removed \cadenza ; now use \property Score.timing
1680         * \property measurePosition
1681         * \property measureLength
1682         * \property currentBarNumber
1683         - Note_name_engraver , \context NoteNames
1684
1685
1686 pl 4.jcn1
1687         - junked some chord guessing code
1688         - bf: lookup size (-1) for chord-name accidentals
1689         - bf: ly2dvi's MFINPUTS setting
1690
1691 *************
1692 pl 2.jcn3
1693         - chords:
1694           * Chord is item
1695           * junked TeX hacking
1696           * configurable with styled strings from scm
1697           * fixes: dim, /no X, tonic != C
1698
1699 pl 2.jcn2
1700         - chords from  scm 
1701
1702
1703 pl 3.hwn2
1704         - visibility-lambdas into default elt properties SCM.
1705         - clef types in SCM
1706         - verticalDirection properties now in SCM.
1707
1708 pl 3.hwn1
1709         - move position_i_ into Staff_symbol_referencer
1710         - move dir_ into Directional_element baseclass
1711
1712 ****************
1713
1714 pl 2.hwn1
1715         - bf: dynamic style.
1716         - prepare to move dir_ into SCM. 
1717
1718 pl 2.jcn2
1719         - chord fixes: 
1720            * inversion request: no inversion guessing for chord entry
1721            * bass request: c/+b to add bass note not part of chord
1722            * -dim modifier works on all thirds
1723            * colon iso dash as tonic/modifier-additions separator
1724            * C:m5- displays as "Cdim"
1725            * C:m5-7- displays as "Co"
1726
1727 pl 2.jcn1
1728         - moved bracket vars to params
1729         - reverted broken lilypond-devel
1730
1731 *************
1732 pl 1.uu1
1733         - David's patches:
1734         * mfplain.mp detection
1735         * Graphical_element::common_refpoint() robuster.
1736         * fixes for mudela-mode.el
1737         - Dirk's patches:
1738         * key signature placement,
1739         * tied accidentals.
1740
1741 pl 1.hwn2
1742         - extra-offset elt property.
1743         - junked Chord_tremolo
1744
1745 pl 1.hwn1
1746         - changed calling convention for {get,set,remove}_elt_property()
1747         - rm'd some mutopia examples.
1748
1749 *******
1750 pl 0.hwn2,1
1751       - Generic properties and Property_engraver. Moved most of the
1752 properties.
1753
1754 0.lu1
1755         - resurrected midi2ly
1756
1757 0.jcn1
1758         - bf: lyrics lexer
1759         - reverted mup2ly revert
1760
1761 pl 3.uu1:
1762         - frontport of 1.2.17 patches.
1763
1764 **********
1765
1766 1.3.0:
1767
1768 pl 15.hwn2
1769         - loads of bfs.
1770
1771 pl x.jcn3
1772         - another workaround: reset buffer state for scm_ftell ()
1773         - workaround for broken scm_ftell ()
1774
1775 pl 15.hwn1
1776         - \properties are now SCM s, junk Scalar type
1777         - use SCM for strings in parser.
1778         - Moment derived from Rational. Moment may be smobified.
1779
1780 pl 15.jcn4
1781         - direct #... to scm parser  (Thanks to Gary Houston)