1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
|
2002-06-21 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* scripts/convert-ly.py, lily/*.cc, scm/*.scm: change
visibility-lambda to break-visibility
2002-06-21 Jan Nieuwenhuizen <janneke@gnu.org>
* input/bugs/part-combiner.ly: New file.
* lily/include/spacing-interface.hh: New file.
* lily/include/spaceable-element.hh: Remove.
* input/test/script-priority.ly: New file.
2002-06-20 Han-Wen <hanwen@cs.uu.nl>
* lily/system.cc (output_lines): kill grobs that are only for spacing.
2002-06-20 Jan Nieuwenhuizen <janneke@gnu.org>
* lily/fingering-engraver.cc (make_script):
* lily/script-engraver.cc (process_music):
* lily/text-engraver.cc:
(process_acknowledged_grobs): Remove hard coded script-priority.
* flower/warn.cc: Cleanup.
* lily/voice-devnull-engraver.cc: Also eat multi-measure rest, a
spanner now.
* aclocal.m4: Regenerate.
* stepmake/aclocal.m4: Also set GUILE_PATCH_LEVEL.
* config.hh.in: Only set GUILE_MAJOR_VERSION if necessary.
* lily/include/lily-guile.hh: Only include config.h if necessary.
* Changelog: cvs changes ml archive test #8.
* lily/slur-engraver.cc: Layout fix.
2002-06-19 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* ly/engraver-init.ly (RhythmicStaffContext): add
Dot_column_engraver, resurrect barlines
* VERSION: 1.5.62 released.
* lily/engraver-group-engraver.cc (do_announces): rename
create_grobs () to process_acknowledged_grobs().
* lily/grob.cc (programming_error): add programming_error with
origin location.
* lily/tuplet-bracket.cc (parallel_beam): robustness check, don't
fail if a beam doesn't have stems.
* lily/engraver-group-engraver.cc (do_announces): scary change in
calling convention of create_grobs(): no create_grobs() call
before acknowledge_grobs().
* lily/sequential-music-iterator.cc (skip): add support for grace
notes.
* lily/music.cc (Music): fix very subtle and nasty memory
corruption bug. Typical symptom: "programming_error: Rhythmic_req
has no duration"
* mutopia/claop.py: new file: CLA(O)P II by Peter Wallin.
2002-06-19 Han-Wen <hanwen@cs.uu.nl>
* ly/engraver-init.ly (RhythmicStaffContext): add
Dot_column_engraver
* lily/parser.yy: various protection fixes. Less objects are now
overprotected.
2002-06-18 Jan Nieuwenhuizen <janneke@gnu.org>
* stepmake/bin/release.py (prev_ver): Bugfix: assume new diff
naming scheme.
* Documentation/windows/zlily-profile.sh:
* Documentation/windows/post-lilypond.sh: Assume normal
prefix=/usr for lilypond.
* lily/musical-request.cc (length_mom): Display origin with error.
* input/test/duration-check.ly: New file.
* lily/lily-guile.cc (ly_pair_p): [PARANOID]: Check for freed
cells.
* lily/part-combine-music-iterator.cc (get_state): Bugfix: use
ly_symbol2scm to get a scm symbol (rather than ly_str02scm).
* aclocal.m4:
* autogen.sh: Regenerate.
* Documentation/topdocs/INSTALL.texi:
* configure.in:
* stepmake/configure.in:
* stepmake/aclocal.m4: Revert autoconf upgrade. Autoconf 2.53 has
a serious bug wrt AC_CONFIG_AUX_DIR (reported). Creating
./configure once again requires autoconf == 2.13.
* stepmake/autogen.sh: Check for autoconf == 2.13.
2002-06-18 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/parser.yy (open_request_parens): add input locations to
open and close parens.
2002-06-17 Chris Jackson <chris@fluffhouse.org.uk>
* lily/tuplet-bracket.cc:
* lily/text-spanner.cc:
* lily/piano-pedal-engraver.cc:
* scm/grob-description.scm:
* scm/grob-property-description.scm: Changed the
edge-width property of brackets to edge-widen. Changed the sign of
the left element of edge-widen so a pair of equal numbers produces
a symmetrical bracket.
2002-06-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* ly/espanol.ly: added.
* lily/simple-spacer.cc (solve): remove assert.
2002-06-17 Han-Wen <hanwen@cs.uu.nl>
* lily/forbid-break-engraver.cc (class
Forbid_line_break_engraver): new engraver: forbid linebreaks
during playing notes
* lily/spacing-spanner.cc (loose_column): add another check: don't
move around bar lines as loose columns.
* scm/basic-properties.scm (default-break-barline): add pre-break
for .| barline
2002-06-16 Jan Nieuwenhuizen <janneke@gnu.org>
* GNUmakefile.in (builddir-setup): Bugfix: include srcdir/tex as
well as mf/out as subdirs of tex, for kpathsea to find through TEXMF.
* scripts/lilypond-book.py (environment): Bugfix: update to new
TEXMF scheme, from ly2dvi.
* lily/lookup.cc (slur): Invoke bezier-bow.
* scm/tex.scm (bezier-bow):
* scm/ps.scm (bezier-bow): Bezier sandwich with rounded endings
(Previously named bezier-sandwich).
* scm/tex.scm (bezier-sandwich):
* scm/ps.scm (bezier-sandwich): Plain bezier sandwich.
* make/lilypond.mandrake.spec.in (post):
* make/lilypond.suse.spec.in (post):
* make/lilypond.redhat.spec.in (post): Also remove parmesan fonts.
* tex/lilyponddefs.tex: Uncomment feta character support.
* Documentation/user/refman.itely (Pitches): Add espanol.ly
description.
* ly/catalan.ly: Add comment about (spanish) -s suffix.
* ly/espanol.ly: Spanish note names by Carlos Garc'ia Su'arez
<cgscqmp@terra.es>.
2002-06-14 Jan Nieuwenhuizen <janneke@gnu.org>
* GNUmakefile.in (short-examples):
(long-examples): Bugfix for --srcdir build.
(top-web): Rewrite weblist find command.
* stepmake/bin/config.sub:
* stepmake/bin/config.guess: Update from latest autotools.
* aclocal.m4:
* autogen.sh: Regenerate.
* configure.in:
* stepmake/configure.in:
* stepmake/aclocal.m4: Run autoupdate. Creating ./configure now
requires autoconf >= 2.50.
* stepmake/autogen.sh: Check for autoconf >= 2.50.
* Documentation/user/refman.itely: Bugfix for tablature example.
* Documentation/windows/compiling.texi: Update for new and
improved setup.
2002-06-14 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/spacing-spanner.cc (find_shortest): make 1/8 configurable:
introduce base-shortest-duration
* lily/parser.yy (music_output_def_body): don't crash when \tempo
in unexpected \midi{} is found.
2002-06-13 Jan Nieuwenhuizen <janneke@gnu.org>
* stepmake/GNUmakefile.in: Don't install stepmake. This breaks
the use of make/ly.make for use as an external makefile. Probably
noone except for myself ever used this anyway.
* stepmake/stepmake/GNUmakefile (INSTALLATION_DIR): Bugfix: Adapt
to new $datadir convention (<package>/<version>).
2002-06-13 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.61 released
* Document/user/refman.itely: tablature doc and code updates by
Jean-Baptiste Lamy <jiba@tuxfamily.org>
* input/template/piano-dynamics.ly: bugfixes.
* lily/key-engraver.cc (try_music): read request only once. Don't
overwrite lastKeySignature. Call create_key() only once. This
fixes a bug with multiple equal key changes on polyphonic staffs.
2002-06-12 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* scm/grob-description.scm: Add side-position-interface to TextSpanner
* scm/grob-property-description.scm: Document the trill line type.
2002-06-12 Jan Nieuwenhuizen <janneke@gnu.org>
* stepmake/stepmake/generic-vars.make:
* make/lilypond-vars.make:
* GNUmakefile.in (builddir-setup): New setup for builddir run.
Fixes LilyPond run from builddir for --srcdir builds.
* Documentation/windows/GNUmakefile (OUT_PROFILES): Bugfix for
--srcdir build.
2002-06-12 Han-Wen <hanwen@cs.uu.nl>
* scm/grob-description.scm (all-grob-descriptions): add
font-family to RehearsalMark
* scm/drums.scm: move over definitions from drum-pitch-init.ly
* lily/volta-bracket.cc (brew_molecule): bugfix, don't do anything
if glyph not set.
2002-06-12 Heikki Junes <heikki.junes@hut.fi>
* lilypond-mode.el: Propose saving before applying a command:
for saved buffer set default command to LilyPond.
2002-06-11 Jan Nieuwenhuizen <janneke@gnu.org>
* buildscripts/mutopia-index.py (headertext_nopics): Add missing
variable.
* Documentation/windows/lilypond.hint: Renamed (previously setup.hint).
* Documentation/windows/lilypond-doc.hint: New file.
* GNUmakefile.in: Forward port: Add toplevel target install-html-doc.
Bugfixes for --srcdir html-doc build.
* make/lilypond-vars.make (LILYPOND_BOOK_INCLUDES): Forward port:
Bugfix: Include $(builddir)/mf/out (was $(srcdir)/mf/out.
2002-06-10 Han-Wen <hanwen@cs.uu.nl>
* ly/script-init.ly (pralldown): add some scripts.
* Documentation/user/refman.itely: many edits.
2002-06-09 Han-Wen <hanwen@cs.uu.nl>
* lily/tuplet-bracket.cc (brew_molecule): don't translate in Y
direction, this breaks staffline avoidance of the bracket when
they're horizontal.
2002-06-08 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* scripts/midi2ly.py: Fix handling of -o
2002-06-08 Han-Wen <hanwen@cs.uu.nl>
* lily/molecule.cc (translate): set max distance to 100 cm.
2002-06-07 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION: 1.5.60 released
* lily/beam.cc: tremolo fix.
* scripts/convert-ly.py: add tuplet-X-visibility rules.
add VerticalExtent -> verticalExtent rules.
* lily/axis-group-engraver.cc: consistent case for
XxxxVerticalExtent properties.
* Documentation/user/refman.itely (Tuplets): update
tuplet-X-visibility properties.
* input/test/defaultbars.ly: Corrected (thanks Mats)
2002-06-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/beam.cc (shift_region_to_valid): fix stupido bug.
* buildscripts/lilypond-profile.sh: override settings if
LILYPONDPREFIX is set.
2002-06-04 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* scripts/ly2dvi.py (non_path_environment): Fix typo
2002-06-03 Heikki Junes <heikki.junes@hut.fi>
* lilypond-mode.el: Extend "Quick notes" containing note tuples.
* lilypond-font-lock.el: Add fixes and comments to syntax-table.
2002-06-03 Han-Wen <hanwen@cs.uu.nl>
* lily/beam-engraver.cc (class Grace_beam_engraver): derive from
beam-engraver: use different engraver so we can mix normal and
grace beams.
2002-06-01 Han-Wen <hanwen@cs.uu.nl>
* lily/beam.cc (shift_region_to_valid): Try to shift positions
after slope-damping and concaveness check, so that short-stems are
not violated.
2002-05-31 Jan Nieuwenhuizen <janneke@gnu.org>
* stepmake/aclocal.m4: Fix for ash as /bin/sh.
2002-05-31 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.59 released
* scripts/musedata2ly.py (Parser.parse_note_line): add dots. Add
notice that missing features are exercise for user.
2002-05-30 Jan Nieuwenhuizen <janneke@gnu.org>
* lily/beam.cc (score_stem_lengths): Bugfix for knees: use correct
(but alas, not partly precomputed) value for current_y when
calculating stem length demerits.
(calc_stem_y): Temporary precomputed factors fix.
* lily/stem.cc (calc_stem_info): Take multiplicity into account
for shortest_y too.
* input/bugs/melisma-tie-rest.ly: New file.
2002-05-30 Han-Wen <hanwen@cs.uu.nl>
* lily/stem.cc (calc_stem_info): remove min_y member, rename
stuff. Remove kneeing stuff.
* lily/beam.cc (brew_molecule): remove beam direction. Lots of
twiddling
2002-05-29 Jan Nieuwenhuizen <janneke@gnu.org>
* scm/sketch.scm:
* scm/ps.scm:
* scm/pdftex.scm:
* scm/pdf.scm:
* scm/tex.scm: Add check for Guile-1.4.1. Guile includes
patch-level of version in minor-version string. Arg.
2002-05-29 Han-Wen <hanwen@cs.uu.nl>
* ly/engraver-init.ly (TabStaffContext):
enable TabStaff by default.
* Tablature support by Jean-Baptiste Lamy <jiba@tuxfamily.org>
2002-05-28 Jan Nieuwenhuizen <janneke@gnu.org>
* config.hh.in: Remove duplicate DIR_DATADIR entry.
* aclocal.m4: Regenerate.
* stepmake/aclocal.m4: Append $FULL_VERSION to datadir.
2002-05-25 Heikki Junes <heikki.junes@hut.fi>
* lilypond-mode.el: Added Deutsch notes and fixed "Quick notes".
* lilypond-mode.el: Write notes with fewer keystrokes trough a
"Quick notes"-interface.
2002-05-26 Jan Nieuwenhuizen <janneke@gnu.org>
* input/regression/non-empty-text.ly: Update example with outdated
comment.
2002-05-25 Han-Wen <hanwen@cs.uu.nl>
* scripts/convert-ly.py: add textNonEmpty rule
* lily/text-engraver.cc (create_grobs): remove textNonEmpty
2002-05-24 Jan Nieuwenhuizen <janneke@gnu.org>
* lily/text-item.cc (markup_text2molecule): Junk ugly lookahead by
using translate-robust add_molecule instead of add_at_edge.
Bugfix for #(lines (finger "" "1")).
2002-05-24 Han-Wen <hanwen@cs.uu.nl>
* lily/stem-tremolo.cc (brew_molecule): clean up and fix stem
tremolo placement.
2002-05-22 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.58
* Documentation/user/refman.itely: Bugfix: add node Repeats and
MIDI. Regenerate menu. Fix @end example.
* lily/accidental.cc: Add cautionary-style to interface.
* mf/feta-beugel.mf (code): use autometric macros for braces.
This fixes input/bugs/braces.
* lily/afm.cc (count): return numOfChars, not size of array
(always equals 256.)
* lily/script.cc (before_line_breaking): postpone setting the
X-parent of vertical scripts. This fixes the case of scripts on
chords with seconds
2002-05-21 Han-Wen <hanwen@cs.uu.nl>
* scm/grob-description.scm: fix alignment of barnumber: make sure
it doesn't hit the G-clef.
* input/mozart-hrn3-defs.ly (startGraceMusic): typo (it's
startGraceMusic not startGraceContext).
2002-05-20 Jan Nieuwenhuizen <janneke@gnu.org>
* stepmake/autogen.sh: Check for autoconf2.13, and abort if not
found.
2002-05-20 Han-Wen <hanwen@cs.uu.nl>
* lily/accidental-engraver.cc: remove old accidental engraver,
move new one to accidental-engraver.cc.
* lily/local-key-item.cc: remove file
* lily/include/local-key-item.hh: remove file
* scripts/ly2dvi.py (make_preview): add --preview-resolution
option.
* lily/accidental.cc (brew_molecule): support for cautionary
accidentals.
* lily/note-head.cc (internal_brew_molecule): warn if note head
not found.
* lily/time-signature.cc (special_time_signature): remove warning
about time signature.
* lily/spacing-spanner.cc (musical_column_spacing): Prevent
reverse springs by limiting fixed-note space.
2002-05-19 Jan Nieuwenhuizen <janneke@gnu.org>
* stepmake/aclocal.m4: Bugfix: complain if program not found.
* scripts/update-lily.py (next_version, prev_version, diff_name):
New function. Patches now named name-prev-latest.diff.gz.
Bugfix: import shutil.
2002-05-19 Han-Wen <hanwen@cs.uu.nl>
* input/tutorial/sammartini.ly: fix and document autochange
weirdness.
* scm/pdftex.scm: resurrect PDFTeX output. Still doesn't work, but
does produce .pdftex files.
* lily/note-collision.cc (check_meshing_chords): move file from
collision.cc, implement merged note heads (there you go, Drarn :-)
* input/regression/collision-heads.ly: new file
* VERSION: 1.5.57 released.
2002-05-18 Juergen Reuter <reuter@ipd.uka.de>
* mf/parmesan-heads.mf, scm/grob-description.scm,
scm/grob-property-description.scm, scm/interface-description,
lily/include/my-lily-parser.hh, lily/include/ligature-head.hh,
lily/include/mensural-ligature.hh, lily/include/lily-proto.hh,
lily/include/ligature-engraver.hh,
lily/include/ligature-bracket.hh, lily/parser.yy,
lily/ligature-bracket-engraver.cc, lily/mensural-ligature.cc,
lily/mensural-ligature-engraver.cc, lily/note-heads-engraver.cc,
lily/ligature-head.cc, lily/ligature-engraver.cc,
lily/ligature-bracket.cc, input/test/mensural-ligatures.ly:
implemented white mensural ligatures (still with a big list of
TODOs)
2002-05-19 Han-Wen <hanwen@cs.uu.nl>
* lily/*.cc: use LY_DEFINE everywhere. Move doc strings from
Documentation/user/internals.itely.
* lily/function-documentation.cc: new file. Infrastructure for
self documenting Scheme functions.
2002-05-18 Han-Wen <hanwen@cs.uu.nl>
* lily/stem.cc (calc_stem_info): bugfix for less ugly knees.
2002-05-17 Han-Wen <hanwen@cs.uu.nl>
* scripts/lilypond-book.py (re_dict): fix regexps; don't combine ?
and * (as in "([^>]*)?")
2002-05-17 Jan Nieuwenhuizen <janneke@gnu.org>
* Documentation/topdocs/INSTALL.texi: Update GCC, Flex and GUILE info.
Add info about CVS. Stable/development are currently 1.4/1.5,
both at lilypond.org.
* autogen.sh: Generate.
* stepmake/configure:
* configure: Regenerate.
* stepmake/stepmake/automatically-generated.sub.make: Keep
original first line.
* stepmake/stepmake/toplevel-targets.make (autogen.sh): Add rule.
* stepmake/stepmake/generic-targets.make (configure): Generate
using autogen.sh.
* GNUmakefile.in (SCRIPTS):
* stepmake/GNUmakefile.in (SCRIPTS): Add autogen.sh
* stepmake/autogen.sh: New file.
* configure: Check for g++ >= 2.95.
* stepmake/aclocal.m4: Fixes for FlexLexer.h, Python headers. GNU
c/c++ version checking.
* flower/include/string.hh: Typo fix.
* lily/include/midi-item.hh: Remove stray i.
* Documentation/windows/GNUmakefile: Avoid collapsed directory
constructs '//'.
* stepmake/bin/install-dot-exe.sh: Filter collapsed directory
constructs '//' from arguments.
2002-05-17 Han-Wen <hanwen@cs.uu.nl>
* scm/lily.scm (ly-load): show SCM filenames if verbose.
* lily/lily-guile.cc (init_functions): add ly-verbose function.
* lily/main.cc (setup_paths): remove LILYINCLUDE support.
* flower/include/{pointer,tuple}*: removed.
* VERSION: released 1.5.56
* scm/music-functions.scm (check-start-chords): function to check
for chords without \context. Apply automatically from parser.
2002-05-16 Han-Wen <hanwen@cs.uu.nl>
* lily/bar-line.cc: remove index entries. Texinfo can't handle :
in index entries.
* scm/output-lib.scm: fix ez notation stems.
* lily/paper-outputter.cc: various fixes to speed up compilation.
2002-05-16 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* scripts/lilypond-book.py: Don't import pre for Python >= 2.2
2002-05-16 Jan Nieuwenhuizen <janneke@gnu.org>
* scripts/lilypond-book.py (determine_format): Bugfix: correctly
determine latex input.
* stepmake/bin/install-sh: Include latest from libtool.
* stepmake/configure:
* configure: Regenerate.
* config.make.in: Remove dead variables. Add OPTIONAL/REQUIRED lists.
(USER_CFLAGS): Bugfix, include CPPFLAGS.
* configure.in: Use new OPTIONAL/REQUIRED mechanism.
* stepmake/aclocal.m4: Add mechanism for checking OPTIONAL or
REQUIRED programs and version. Try to continue configuring, list
missing programs at the end, but don't generate a GNUmakefile if
REQUIRED programs are missing. Cleanups, junk obsolete stuff.
Fix Cygwin detection, drop '32' suffix. Hoping this is not too
fancy for some older systems.
2002-05-16 Han-Wen <hanwen@cs.uu.nl>
* lily/score-engraver.cc (typeset_all): sanity check for items
that are Y parent to spanner.
* lily/piano-pedal-engraver.cc (create_bracket_grobs): fix broken
pedal spanners.
2002-05-15 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/*.cc: remove as many iostream use as possible.
* flower/ : remove text-db, text-stream, data-file.
2002-05-15 Han-Wen <hanwen@cs.uu.nl>
* scripts/lilypond-book.py: add --no-music option: strip all blocks.
(completize_preamble): don't barf if no preamble present.
(do_file): allow extensions on --output
* scripts/ly2dvi.py (make_preview): make automatic preview of
first system. Small cleanups.
2002-05-13 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* scripts/lilypond-book.py (make_pixmap): output png directly.
* mf/GNUmakefile (INSTALLATION_OUT_FILES4): create and install
fonts.dir file.
* lily/parser.yy (My_lily_parser): comment out code. (Causes
problems with recent bison releases).
* make/lilypond.redhat.spec.in: add pfa fonts to X.
2002-05-07 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-font-lock.el: Fixes the order of the note name list.
2002-05-06 Jan Nieuwenhuizen <janneke@gnu.org>
* scripts/lilypond-book.py: Add html/dtml output, pseudo-filter
capability, --verbose option, rlimit hack.
2002-05-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/piano-pedal-engraver.cc: cleanups.
* lily/accidental.cc (after_line_breaking): add break tie
reminders.
* lily/text-engraver.cc (try_music): don't typeset fingerings
2002-05-05 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-font-lock.el: Handle \breve as a note (rest) duration.
2002-05-04 Han-Wen <hanwen@cs.uu.nl>
* lily/*.cc: change gh_str02scm() to ly_str02scm().
* lily/spacing-spanner.cc (note_spacing): Bound
shortest-playing-length by the distance to next note. This should
fix chord tremolo spacing.
* VERSION: 1.5.55 released
* lily/stem.cc (off_callback): invisible stem over whole note is
centered on note now.
* lily/stem-engraver.cc (acknowledge_grob): X_AXIS Parent of
stem-tremolo is stem now.
* input/mozart-hrn*.ly: many corrections.
* lily/dynamic-engraver.cc (acknowledge_grob): add Scripts to
support for dynamic scripts.
* lily/accidental-placement.cc (position_accidentals): check for
collisions as well: should avoid those heads too.
* lily/beam.cc (check_concave): allow undefined gap and
threshold. Change the meaning of threshold/gap == 0.0.
(check_concave): skip Stolba concaveness check if we have a knee
on outer stems.
2002-05-03 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* lily/chord-tremolo-engraver.cc (try_music): Handle chord
tremolos of dotted duration.
2002-05-03 Han-Wen <hanwen@cs.uu.nl>
* mf/feta-klef.mf: more twiddling with G clef. Almost straight
downstroke again. Sigh.
* lily/dynamic-engraver.cc (acknowledge_grob): center dynamic
script on note head.
2002-05-02 Han-Wen <hanwen@cs.uu.nl>
* lily/slur.cc (add_column): allow slur over rest.
2002-04-27 Han-Wen <hanwen@cs.uu.nl>
* lily/beam.cc: move scoring constants out of code
2002-04-25 Han-Wen <hanwen@cs.uu.nl>
* mf/feta-nummer.mf: scalability fixes.
* mf/feta-nummer-code.mf: fixes for 5, 8.
* mf/feta-klef.mf: G clef fixes.
2002-04-25 Jan Nieuwenhuizen <janneke@gnu.org>
* scripts/ly2dvi.py: Mats' fix. Try to import pre if available.
* scripts/lilypond-book.py: %Newline, rather than glue macros
after \end{verbatim}.
2002-04-24 Jan Nieuwenhuizen <janneke@gnu.org>
* Documentation/user/lilypond-book.itely:
* scripts/lilypond-book.py: Add options [no]indent, linewidth and
noinline.
* input/mozart-hrn3-defs.ly (startGraceContext): Customize grace init.
* scm/grob-property-description.scm (beam-space): Junk.
* lily/beam.cc (space_function): New method.
(get_interbeam): Call space-function.
* scm/grob-description.scm (Beam): Initialize space-function with
Beam::space_function.
* ly/grace-init.ly (startGraceMusic, stopGraceMusic): Set/revert
Beam.space-function. Don't quantise grace beams.
2002-04-23 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION: 1.5.54 released
* mf/feta-nummer-code.mf (code): tweaks for three, fixes for 6
bulb.
* Documentation/index.texi: add PDF links.
* Documentation/user/GNUmakefile (PDF_FILES): add PDF files to website.
* lily/system-start-delimiter-engraver.cc (acknowledge_grob):
compare #'glyph as strings.
* scripts/lilypond-book.py: fix by Mats. Try to import pre if available.
* scripts/ly2dvi.py (setup_environment): fix by Mats.
* lily/stem.cc (head_count): Change function name. Change property
to #'note-heads i.s.o. #'heads.
(position_noteheads): Kern noteheads for invisible stems.
(before_line_breaking): Do position_noteheads() for whole note
heads too.
* lily/accidental-placement.cc (position_accidentals): First
determine refpoints, only then determine extents.
2002-04-22 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/accidental-placement.cc (position_accidentals): use all
note heads for note head-skyline.
* scripts/lilypond-book.py (re_dict): remove all *? regexps.
2002-04-22 Jan Nieuwenhuizen <janneke@gnu.org>
* Documentation/windows/setup.hint (requires): Add gsview dependency.
* scripts/lilypond-book.py (re_dict): Fix for python 2.x.
* lilypond-mode.el (LilyPond-xdvi-command): Default to plain xdvi.
* input/mozart-hrn3-allegro.ly: Bugfix: include defs.
2002-04-22 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* mf/feta-schrift.mf: lighter staccato.
2002-04-22 Han-Wen <hanwen@cs.uu.nl>
* mf/feta-nummer-code.mf (code): fixes for 3 glyph.
2002-04-21 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.53 released
* scm/lily.scm (ly-load): use primitive-load for loading.
* lily/misc.cc: remove quantise_iv()
* lily/*.cc: pass read-only arrays by reference.
* lily/grob.cc (common_refpoint_of_array): new function. Try to
use common_refpoint_of_{array, list} when possible.
* lily/include/accidental-placement.hh: new file.
* lily/accidental-placement.cc (alignment_callback): position
accidentals in a better way.
* lily/skyline.cc: new file. Compute distances for collections of
boxes.
* lily/include/skyline.hh: new file
2002-04-20 Han-Wen <hanwen@cs.uu.nl>
* lily/accidental.cc (class Accidental_interface): grob for a
single accidental.
* lily/accidental-engraver.cc (number_accidentals): Cleanups. Lots
of reformatting
* lily/new-accidental-engraver.cc (acknowledge_grob): Work
together with new accidental-interface.
* lily/include/*.hh: remove spurious set_interface() decls.
* lily/key-signature-interface.cc (brew_molecule): add padding for
natural signs. Make natural typesetting like the sharp.
* mf/feta-klef.mf: rewrote portion of the G-clef code. Downstroke
is now slightly curved, not straight.
2002-04-18 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-mode.el: Toggles font-lock-multiline (Emacs 21.1 or newer).
* lilypond-font-lock.el: Handles multiline-strings. Fontifies notes
more strictly. Use more clever regular expressions. Commented regexps.
2002-04-16 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-mode.el: "C-c f" does font-lock-fontify-buffer.
2002-04-15 Juergen Reuter <reuter@ipd.uka.de>
* scm/grob-description.scm, lily/staff-symbol.cc: added properties
to control width of staff symbol in ragged-right mode (by request
of Han-Wen)
* ly/engraver-init.ly, lily/include/my-lily-parser.hh,
lily/include/ligature-bracket.hh, lily/lexer.ll, lily/parser.yy,
lily/ligature-bracket.cc, lily/ligature-bracket-engraver.cc:
added support for ligature brackets (needed when transcribing
mensural music)
2002-04-15 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-font-lock.el: Handle scheme-slurs up to seventh level.
Fontify notes more strictly.
2002-04-15 Han-Wen <hanwen@cs.uu.nl>
* mf/feta-din-code.mf: dynamic z sign.
2002-04-13 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-mode.el: Prevent recoloring strings and comments.
* lilypond-font-lock.el: Handle block comments: block comments
can have also ordinary comments inside.
2002-04-13 Han-Wen <hanwen@cs.uu.nl>
* lily/stem.cc (get_default_dir): set direction to CENTER if
invisible. Various other fixes to deal with invisible stems and
stem-direction == CENTER.
* lily/rest-collision.cc (do_shift): take direction from note if
not set.
* input/regression/tie-grace.ly: new file.
* lily/tie-engraver.cc (create_grobs): fix tied graces.
* lily/note-spacing.cc (stem_dir_correction): set fixed space for
knee correction. Fixes tight spacing for knees.
2002-04-12 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION: 1.5.52 released
* lily/*.cc: add some undocced properties.
scm/grob-description.scm: idem.
2002-04-12 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-font-lock.el: Handle slurs \( and \), numbers,
multi-measure rests like "R1 *4" and scheme (typically has '#'
in the beginning). Small fixes. Add few reserved words.
2002-04-12 Jan Nieuwenhuizen <janneke@gnu.org>
* Documentation/topdocs/INSTALL.texi: Updates for MacOS X and
emacs mode.
* Documentation/windows/installing.texi: Suggest gswin32c (console
program) for getting the version. Layout fixes.
2002-04-11 Jan Nieuwenhuizen <janneke@gnu.org>
* Documentation/user/tutorial.itely (Running LilyPond): Separate
windows viewing commands, remove silly comment about Yap.
2002-04-10 Mats Bengtsson <matsb@s3.kth.se>
* Documentation/topdocs/INSTALL.texi: Describe how to learn
configure to find kpathsea on for example Slackware 8.0.
* scripts/ly2dvi.py (non_path_environment): Set $TEXMF correctly.
* scm/grob-description.scm (MultiMeasureRest): number-threshold=1
by default: avoid "1" over single bar rests.
* scripts/lilypond-book.py (LatexPaper.set_geo_option): Simplify
and correct the handling of geometry options.
2002-04-10 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/include/grob-interface.hh (ADD_INTERFACE): make
implementation for Class::has_interface automatically. Junk all
other implementations.
* lily/grob.cc (internal_get_grob_property): also typecheck
property reads. Catches even more undocced properties. Bugfixing
left for the uninspired masses.
* lily/beam.cc: remove end_after_line_breaking().
* lily/grob.cc (calculate_dependencies): remove list support for
callbacks.
* lily/font-size-engraver.cc: only do font-interface.
2002-04-10 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-font-lock.el: Handle notes with cautionary accidentals.
Add few keywords.
2002-04-09 Chris Jackson <chris@fluffhouse.org.uk>
* lily/arpeggio.cc: New function brew_chord_bracket to draw chord
brackets using arpeggio requests.
* ly/property-init.ly: Shorthand \arpeggioBracket defined as the
molecule-callback to use for drawing the brackets.
* Documentation/user/refman.itely:
* input/test/chord-bracket.ly: Chord brackets documented
2002-04-10 Han-Wen <hanwen@cs.uu.nl>
* mf/feta-din-code.mf: tweaks for p, s. New dynamic r sign.
* mf/feta-eindelijk.mf: tweak for eighth rest: move bulb up.
2002-04-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/tuplet-bracket.cc (after_line_breaking): bugfix for forced
direction tuplets on beams.
2002-04-08 Chris Jackson <chris@fluffhouse.org.uk>
* lilypond-indent.el: Bugfix of indentation of final point in buffer
2002-04-09 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-mode.el: new command: LilyPond-un-comment-region.
Added 2Midi to "Command"-menu. Inspired by latex.el and tex.el:
separate "Command"-menu and "LilyPond"-menu. Added "Miscellanous"-
submenu to "LilyPond"-menu.
* lilypond-mode.el: Added "Midi all" to "Command"-menu, i.e.,
an interface to play midi.
2002-04-08 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* input/regression/script-stack-order.ly: new file.
2002-04-08 Han-Wen <hanwen@cs.uu.nl>
* VERSION (MY_PATCH_LEVEL): Release 1.5.51.
* mf/feta-din-code.mf: kerning for dynamics.
2002-04-07 Han-Wen <hanwen@cs.uu.nl>
* input/regression/dynamics-glyphs.ly: new file
* mf/feta-din-code.mf: dynamic tweaks. New dynamic s.
* mf/feta-nummer-code.mf: another bulb routine: mimic the bulb of
forte f for the 2 number. Some fixes for the other bulbed glyphs.
* Documentation/windows/gs-profile.sh:
* Documentation/windows/gsview-profile.sh: Remove. Functionality
moved to gs/gsview windows packages.
2002-04-06 Mats Bengtsson <matsb@s3.kth.se>
* lily/stem-engraver.cc (acknowledge_grob): Revert to old way of
finding out the duration. Fixes chord tremolo bug.
* lily/completion-note-heads-engraver.cc (process_music): Set
correct duration for all requests of the broken notes.
* input/regression/completion-heads.ly: Added example of
Completion_heads_engraver.
* lilypond-mode.el: Added "2Midi" command
2002-04-06 Chris Jackson <chris@fluffhouse.org.uk>
* lily/tuplet-bracket.cc, scm/grob-description.scm: New
edge-width, edge-height and shorten-pair properties for tuplet
brackets.
* lilypond-indent.el: Support for blinking of matching parentheses
* lilypond-font-lock.el: Fix fontification of closing > on its own line
* lily/piano-pedal-engraver.cc, lily/text-spanner.cc: Fixes and
cleanups of piano pedal brackets.
2002-04-05 Han-Wen <hanwen@cs.uu.nl>
* mf/cmbase.mf: remove file. -- do without s, r and z signs for now.
2002-04-04 Han-Wen <hanwen@cs.uu.nl>
* mf/feta-new-code.mf: new dynamic f sign.
new dynamic m sign.
2002-04-03 Han-Wen <hanwen@cs.uu.nl>
* mf/feta-new-code.mf: new dynamic p sign.
2002-04-02 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/note-spacing.cc (stem_dir_correction): only do
beam-correction if a beam is there.
* lily/stem.cc (duration_log): change from flag_i (); better
naming.
(get_default_stem_end_position): fix dot/flag collision code.
2002-04-02 Han-Wen <hanwen@cs.uu.nl>
* VERSION: release 1.5.50
* lily/spaceable-grob.cc (add_spring): change incorrect spring to
unit spring here. Reduces number of warning messages.
* lily/auto-beam-engraver.cc: change noAutoBeaming to autoBeaming.
2002-04-01 Han-Wen <hanwen@cs.uu.nl>
* scm/generic-property.scm: remove generic-property, property-engraver
* lily/volta-bracket.cc (brew_molecule): use Lookup::line() for bracket
* lily/hairpin.cc (brew_molecule): use Lookup::line() for hairpins.
* ps/music-drawing-routines.ps: remove volta, tuplet, hairpin routines.
* scm/*.scm: remove volta, hairpin and tuplet functions.
* lily/rhythmic-column-engraver.cc (acknowledge_grob): don't make
note column for notes/stems/dots that already have parents. Fixes
nested grace contexts.
2002-04-01 Jan Nieuwenhuizen <janneke@gnu.org>
* input/mozart-hrn-3.ly: Tweak Slur.beautiful, so that we don't
get too curved slurs.
* scm/slur.scm (default-slur-extremity-offset-alist)
(default-phrasing-slur-extremity-offset-alist): Move slur
attachments further away from note-head, vertically. Also, leave
a horizontal gap between slur and stem end.
* lily/beam.cc (get_interbeam): Bugfix: don't look in empty list.
2002-04-01 Han-Wen <hanwen@cs.uu.nl>
* input/regression/spacing-grace-duration.ly: new file
* lily/spacing-engraver.cc (acknowledge_grob): ignore grace notes
for shortest durations.
* lily/multi-measure-rest.cc (set_spacing_rods): tune rods to the
extent of the mm rest.
* lily/spacing-spanner.cc (get_duration_space): better spacing for
really short notes.
* lily/tuplet-bracket.cc (make_bracket): new function
(get_x_offset): new function; make tuplet brackets align on stems
if stem has same direction.
(parallel_beam): be anal about matching bracket to tuplet.
* lily/lookup.cc (line): new function Lookup::line().
* scm/tex.scm (dashed-line): change -line to -system in names.
* lily/box.cc (add_point): new function.
* flower/include/interval.hh: new function add_point ().
new function widen()
2002-04-01 Jan Nieuwenhuizen <janneke@gnu.org>
* input/mozart-hrn-3.ly: Mimic Breitkopf fonts and padding.
* scm/grob-property-description.scm (number-threshold): Add
description.
* lily/multi-measure-rest.cc (brew_molecule): Only put number over
rest if #measures > number-threshold. Use padding (well, fake
using it, anyway).
* scm/font.scm (make-style-sheet): New styles: mark-number,
mark-letter.
(paper20-style-sheet-alist): Add bigger bold fonts.
* lily/mark-engraver.cc (process_music): Use style mark-number or
mark-letter.
* .cvsignore: Ignore all kinds of lilypond input and output.
* lily/beam.cc (ADD_INTERFACE): Add concaveness-gap.
2002-04-01 Han-Wen <hanwen@cs.uu.nl>
* lily/staff-symbol.cc (brew_molecule): make line thickness
adjustable.
* lily/*.cc: replace stafflinethickness by linethickness.
2002-04-01 Jan Nieuwenhuizen <janneke@gnu.org>
* input/regression/beam-concave.ly: Add to-be-considered-concave
beam.
* lily/beam.cc (check_concave): Add check for large gap between an
inner notehead and the line through outer noteheads.
* scm/grob-description.scm (Beam): Add concaveness-gap, default
value 2.0 staff-space.
* scm/grob-property-description.scm (concaveness-gap): Add
description.
* input/mozart-hrn3-allegro.ly: Fix typo.
2002-03-31 Juergen Reuter <reuter@ipd.uka.de>
* scm/ps.scm, ps/music-drawing-routines.ps, lily/lookup.cc,
lily/note-head-engraver: improved implementation of roundfilledbox
(according to Han-Wen's request)
* lily/include/spacing-spanner.hh, lily/spacing-spanner.cc,
lily/gourlay-breaking.cc, lily/staff-symbol.cc,
lily/simple-spacer.cc: ragged-right alignment
2002-03-29 Han-Wen <hanwen@cs.uu.nl>
* input/regression/spacing-note-flags.ly: new file
* input/regression/spacing-rest.ly: new file
* mf/feta-eindelijk.mf: make bbox of quarter rest tighter.
* lily/spacing-spanner.cc (note_spacing): make note spacing after
all grace notes tight (not only the column directly following a
grace note).
* scm/grob-description.scm (all-grob-descriptions): don't make
mm-rests larger than normal.
* mf/feta-banier.mf: make upflag narrower. Make end of flag more
curved. Remove white space at the right of flags.
2002-03-28 Jan Nieuwenhuizen <janneke@gnu.org>
* ports/ports.make: Bugfix: ignore CVS directories.
* stepmake/.cvsignore: New file.
2002-03-28 Han-Wen <hanwen@cs.uu.nl>
* lily/note-spacing.cc (stem_dir_correction): don't correct when
there is a flag on the stem.
* lily/multi-measure-rest.cc (brew_molecule): variable width molecule.
* scm/grob-property-description.scm (measure-length):
measure-length grob property.
* lily/spacing-spanner.cc (standard_breakable_column_spacing):
better spacing for breakable columns when they're juxtaposed: use
measure length if applicable
* lily/timing-engraver.cc (start_translation_timestep): store
measure length in breakable column at start of measure.
2002-03-28 Jan Nieuwenhuizen <janneke@gnu.org>
* ROADMAP: Add description for ports dir, to check email upon
commit.
2002-03-27 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.48 released
* lily/multi-measure-rest.cc (symbol_molecule): split off from
brew_molecule()
(set_spacing_rods): Use symbol_molecule() to determine minimum
width
(church_rest): split off from brew_molecule()
(big_rest): split off from brew_molecule(). Construct using
variable shape.
* mf/feta-eindelijk.mf: junk multi measure rest.
2002-03-26 Han-Wen <hanwen@cs.uu.nl>
* lily/multi-measure-rest.cc (add_column): remove columns property.
* lily/dynamic-engraver.cc (process_music): add more verbose warning
* input/mozart-hrn3-romanze.ly (romanze): add mozart horn concerto
3 as test piece.
2002-03-26 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-font-lock.el (LilyPond-font-lock-keywords): most new
keywords covered, dropped some non-keywords, include R- and 128-notes
2002-03-25 Juergen Reuter <reuter@ipd.uka.de>
* Code clean-up: Junk multiple implementations of ledger line
creation in note_head, custos, and porrectus. This is important
since there soon will be some more applications of ledger lines to
come (e.g. ambitus engraver).
* Make thickness of ledger lines adjustable. This is essential
for mensural notation.
* Fix some bugs in the current ledger_line implementation, most
notably that of the horizontal extent of ledger lines which equals
at least the extent of the metafont ledger_line character, and
which grows(!) if the desired extent shrinks below this limit.
* roundfilledbox: variable blotdiameter
2002-03-24 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.47 released
* lily/line-spanner.cc (line_atom): change line-thickness to thickness
* lily/porrectus.cc: change line-thickness to thickness, change
stem-direction to direction.
* scm/backend-documentation-lib.scm (check-dangling-properties):
Automatically detect doc'ed properties that are not in an interface
* scm/grob-property-description.scm: property cleanup. Remove many
paper-column props that are non-existent.
* lily/grob.cc (Grob): only use molecule_extent_proc as default if
the grob has a molecule-callback.
* lily/*.cc: remove many set_interface() calls, and their
implementations.
* input/regression/spacing-knee.ly: new file
* input/regression/spacing-clef-first-note.ly: new file
* lily/staff-spacing.cc (get_spacing_params): different spacing
for pref matter to note at start of line, halfway during line.
* lily/note-spacing.cc (stem_dir_correction): apply 2nd stem direction
correction only if stems have same direction (i.e. not for
stem-clef combination).
(stem_dir_correction): maximal correction for knees.
* lily/*.cc: many updates to interface descriptions.
* lily/grob.cc (internal_set_grob_property): add interface check
for every set_grob_property call
* lily/*.cc: document interface stuff in C++
* lily/grob-interface.cc: new file. Add grob interfaces from C++.
* lily/volta-bracket.cc: naming: change volta spanner to
volta-bracket.
* input/bugs/*.ly: cleanup, remove lots of files.
* buildscripts/mf-to-table.py (write_ps_encoding): generate
.encoding file. WARNING: upgrade to pktrace 1.0.3
* mf/feta-toevallig.mf: change PS name for parentheses.
2002-03-23 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* scripts/ly2dvi.py (ly_paper_to_latexpaper): Use the correct unit
also for textheight
2002-03-23 Han-Wen <hanwen@cs.uu.nl>
* lily/scope.cc: remove file .
* lily/include/scope.hh: remove file. Remove Scope class
* VERSION: 1.5.46
* lily/beam.cc (score_slopes_dy, score_stem_lengths,
score_forbidden_quants): ): take out of SCM, pass parameters so
grob props are read only once. (wtk1-fugue2 from 31 sec to 14
secs).
(calc_stem_y): robustness: take care of last_visible_stem == 0.
* lily/lily-guile.cc (ly_unit): return internal unit.
* scm/tex.scm (header-end): insert scaling factor, using ly-unit
* lily/paper-outputter.cc (output_version): output internal unit
from Paper_outputter
* scripts/ly2dvi.py: Read unit from paper vars (43.jcn3).
2002-03-22 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* scripts/ly2dvi.py: clean up old .*pk font caching code.
* scm/ps.scm: Use uppercase postscript font names for the standard
TeX fonts.
* scripts/ly2dvi.py, buildscripts/lilypond-{login,profile}.sh, :
Add all available TeX Type1 fonts, including Feta, to the
Ghostscript font path.
* Documentation/topdocs/INSTALL.texi (Top): Add required pktrace
version (affects the FontName) in lilypond.map.
* mf/GNUmakefile, Documentation/user/appendices.itely: Rename font
documentation file to fetaNNlist.ly to avoid name collisions between
lilypond generated .tex file and font .tex macros file.
2002-03-22 Juergen Reuter <reuter@ipd.uka.de>
* mf/feta-eindelijk.mf, mf/parmesan-rests.mf: added maxima rests;
made mensural longa and (semi-)brevis leaner
* mf/parmesan-clefs.mf, scm/clef.scm: enhanced petrucci c clef
* lily/{{lookup,porrectus}.cc,include/{lookup,porrectus}.hh}: code
clean-up: moved bezier shape and slope from porrectus to lookup
* buildscripts/clean-fonts.sh: added search paths /var/cache/fonts
and /usr/share/texmf/fonts
* scripts/ly2dvi.py: Read unit from paper vars (43.jcn3).
2002-03-22 Han-Wen <hanwen@cs.uu.nl>
* lily/text-spanner.cc (brew_molecule): add #'thickness
(brew_molecule): add corrections for thickness in molecule padding.
* lily/line-spanner.cc (line_atom): make function private
* scripts/lilypond-book.py (get_bbox): Use GS -sDEVICE=bbox to
discover bounding box. This solves the cropping problem.
* lily/bar-check-iterator.cc (process): Only resynchronize bar
check when it fails. This fixes the combination of grace notes
and bar checks.
2002-03-21 Han-Wen <hanwen@cs.uu.nl>
* lily/repeated-music.cc (minimum_start): new Scheme callable function
(first_start): new Scheme callable. This will fix repeated music
starting with grace notes.
* lily/music.cc (start_mom): check start-moment-function grob property.
* VERSION: 1.5.45 released
* input/regression/system-extents.ly: new regression test. Test
System extents.
* lily/system.cc: rename LineOfScore into System
* lily/molecule.cc (ly_add_molecule): new Scheme ly-add-molecule.
* lily/grob.cc (ly_get_parent): new Scheme function ly-get-parent.
(ly_get_extent): new Scheme function ly-get-extent
* ps/lilyponddefs.ps: use output-scale for line-x
definition.
* scm/ps.scm (font-load-command):
use output-scale
2002-03-20 Rune Zedeler <rune@zedeler.dk>
* lily/beaming-info.cc: Stupid typo fixed
* lily/accidental-engraver.cc: rewrote accidental-routines to get
support for cross-context auto-accidentals.
Now the engraver can stay in Staff-context and see other contexts
from there.
Changed properties: autoAccidentals, autoCautionaries
* lily/translator-group.cc (set_children_property):
Function added recursively setting the same property (deep_copied)
for all children of a Translator_group.
* ly/property-init.ly: added commands
\pianoAccidentals \voiceAccidentals
\modernVoiceAccidentals \modernVoiceCautionaries
* ly/engraver-init.ly: Correct initialization of new accidentals.
* scm/translator-property-description.scm: Updated
* input/regression/accidental-voice.ly: Added
* Documentation/regression-test.tely: Added new test
2002-03-19 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION: 1.5.44 released
* lily/slur.cc (set_extremities): robustness fixes for #'attachment.
* scripts/lilypond-book.py (bounding_box_dimensions): bugfix.
* ly/params-init.ly (blotdiameter): use unit for blotdiameter, set
at 0.4 pt.
* tex/feta*.tex: remove.
* stepmake/aclocal.m4: remove stepmake symlink. It confuses almost
all software dealing with it.
2002-03-20 Jan Nieuwenhuizen <janneke@gnu.org>
* mf/GNUmakefile (lilypond.map): Don't prepend TeX to font name
(this fixes pdf output). Drop awk dependency.
* scripts/ly2dvi.py (ly_paper_to_latexpaper): Assume LilyPond's
dimensions (linewidth) are in mm.
* mf/GNUmakefile (depth): Always allow manual access to pfa target.
* tex/lily-ps-defs.tex: scaletounit using PT/IN==72.
* lily/slur.cc (get_attachment): Bugfix: correct for stem thickness.
2002-03-19 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.43 released
* scm/beam.scm (beam-dir-majority-median): if majority is
undecided, use median. Removes a forced dir in sarabande.
* mf/feta-schrift.mf: Trill fixes, Vee fixes (upbow, ltoe, rtoe)
2002-03-18 Chris Jackson <chris@fluffhouse.org.uk>
* lily/text-spanner.cc, lily/piano-pedal-engraver.cc: Cleanups. Edge
widths, heights and shortens are now customisable properties.
* scm/grob-description.scm, scm/grob-property-description.scm: New
properties added to PianoPedalBracket, unnecessary
Y-offset-callbacks removed from *Pedal, undocumented properties
fixed.
* Documentation/user/refman.itely: Piano pedal updates.
2002-03-18 Jan Nieuwenhuizen <janneke@gnu.org>
* scm/grob-property-description.scm:
* scm/interface-description.scm: Remove old stuff.
* scm/grob-description.scm (StemTremolo): Change beam-thickness to
0.48 (previously 0.42).
(Beam): Remove old stuff.
* lily/stem.cc:
* lily/stem-tremolo.cc:
* lily/beam.cc:
* scm/beam.scm: Remove old stuff. Use Beam::get_interbeam ()
(previously space-function).
* stepmake/bin/add-html-footer.py: Website title fix.
2002-03-18 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* scripts/ly2dvi.py (environment): use new font searching setup.
* lily/afm.cc (afm_bbox_to_box): make code dimension independent
* lily/tfm.cc (dimensions): make code dimension independent
* ps/lilyponddefs.ps: add constant for MM and true/ps-point
scaling
* tex/lily-ps-defs.tex: scaling for PS points and MM.
* lily/include/dimensions.hh: try MM as internal unit.
* scm/*.scm: remove invoke-dim1
2002-03-17 Han-Wen <hanwen@cs.uu.nl>
* GNUmakefile.in (fontpaths): add fontpaths target,
* make/mutopia-targets.make: add PDF rules.
* make/mutopia-rules.make: add pdf rule.
* buildscripts/mutopia-index.py (list_item): add PDF.
* buildscripts/lilypond-profile.sh (TEXMF): typo.
* make/lilypond-vars.make: set TEXMF for the new font setup.
2002-03-17 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.42 released
* mf/feta-schrift.mf: endless twiddling of Tr.
* mf/feta-eindelijk.mf: 8th rest: make darker, top of brush lower, and
endless twiddling with the bulb shape.
* lily/note-head.cc (internal_brew_molecule): make ledger lines a
little smaller if there is an accidental.
2002-03-15 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* buildscripts/lilypond-profile.sh:
* mf/GNUmakefile (INSTALLATION_OUT_DIR*),
buildscripts/lilypond-login.sh, buildscripts/lilypond-profile.sh:
Implement new font installation strategy
* Documentation/misc/fontinstallation (TEXMF): Documentation of
the new font installation strategy.
* lilypond-mode.el (LilyPond-mode-map): Add shortcut "CTRL-c ;"
for comment-region.
* input/test/staff-size.ly: Simplified using StaffContainer
* mf/GNUmakefile (ALL_GEN_FILES): Actually generate the
lilypond.map file
2002-03-17 Jan Nieuwenhuizen <janneke@gnu.org>
* scm/ps.scm (bezier-sandwich): Draw circles at slur ends.
* lily/beam.cc (score_stem_lengths): new quanting stuff
(score_forbidden_quants): Second and third beam quant stuff.
2002-03-16 Jan Nieuwenhuizen <janneke@gnu.org>
* lily/beam.cc (least_squares): Remember least-squares-dy for
later use.
(quantise_interval): Don't quant to dy steeper that
least-squares-dy. Return empty interval if no sane quants found.
(quantise_position): Try quantise_interval until we have
acceptable solution.
2002-03-15 Jan Nieuwenhuizen <janneke@gnu.org>
* scm/interface-description.scm (beam-interface): Update.
2002-03-15 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION: 1.5.41 released
* mf/feta-schrift.mf: make Tr. smaller, smoother and closer. Use
optima serifs on top of t, bottom of r.
* mf/feta-bolletjes.mf: make ledger line rounder.
* mf/feta-toevallig.mf: some smallish fixes for flat sign.
* mf/feta-eindelijk.mf: make 8th rest a little darker, some more
parametrization.
2002-03-15 Chris Jackson <chris@fluffhouse.org.uk>
* lily/piano-pedal-engraver.cc: Rewritten to support bracketed as
well as text pedal indications and a combination of both. All
pedal indications are horizontally aligned on a line spanner.
* lily/text-spanner.cc: Edge-width property added to use in
bracketed piano pedals. Function setup_sustain_pedal added to set
the dimensions of the brackets.
* scm/grob-description.scm: New *PedalLineSpanner grobs added, and
some of the *Pedal properties tweaked.
* scm/grob-property-description.scm: New pedal-type (*Pedal) and
edge-width (TextSpanner) properties.
* ly/engraver-init.ly: Default strings added for SostenutoPedal.
* lilypond-font-lock.el: sostenuto, unaCorda and treCorde added to
fontified identifiers list.
* input/test/pedal.ly: New pedal features added.
* Documentation/user/refman.itely: New pedal features documented.
2002-03-15 Jan Nieuwenhuizen <janneke@gnu.org>
* lily/include/new-beam.hh: Previously new-beam.hh
* lily/beam.cc: Previously new-beam.cc
(least_squares): Bugfix: don't barf on beams with less than two
visible stems (tremolos).
* scm/beam.scm:
* scm/grob-description.scm (Beam): Junk old beam stuff.
2002-03-14 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION: 1.5.40
* mf/feta-eindelijk.mf: new 8th rest.
* mf/feta-toevallig.mf: small fixes for the sharp symbol. Don't
stick out of staffline
* scripts/lilypond-book.py: fixes for texi regular expressions.
2002-03-14 Jan Nieuwenhuizen <janneke@gnu.org>
* lily/include/new-beam.hh:
* lily/new-beam.cc: New file.
* flower/include/interval.hh:
* flower/include/interval.tcc (delta): New method.
(swap): Now public (previously private).
* scm/beam.scm (default-beam-y-quants): Bugfix: lower beam-sit by
1 staff-line-thickness. Sadly, this makes dy quanting problems
(dy quants allowed should depend on actual left y) more visible.
2002-03-13 Jan Nieuwenhuizen <janneke@gnu.org>
* lily/beam.cc (quantise_dy): Bugfix: sign (0) = 0. Hmm.
* scm/grob-property-description.scm (concaveness-threshold): Add
typecheck and description.
* scm/grob-description.scm (Beam): Remove obsolete properties, add
concaveness-threshold (previously concaveness).
* lily/beam.cc (check_concave): Remove choices and debugging
stuff: use best concaveness calculation.
(quantise_dy): Remove choice. Try to never make a slope steeper
by quantising, but certainly never quantise a slope away.
(check_stem_length_f): Remove choice. In case of lengthening
alowed, always lengthen to ideal length.
* Documentation/index.texi: Fix FAQ url.
* Documentation/topdocs/INSTALL.texi: Add information about fink,
compile fix and 1.4 specific fix that doesn't hurt 1.5.
2002-03-13 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.39 released
* lily/simple-spacer.cc (add_rod): rods take precedence over
infinitely stiff springs. This fixes bugs with arpeggios and bar-lines.
* lily/arpeggio-engraver.cc (acknowledge_grob): clean up.
* lily/note-spacing.cc (get_spacing): only insert space for
accidentals if necessary.
* input/regression/spacing-accidental-staffs.ly (texidoc): update example
* lily/spacing-spanner.cc (musical_column_spacing): new
function. Have correct spacing from note to end-of-line as well.
2002-03-12 Jan Nieuwenhuizen <janneke@gnu.org>
* Documentation/topdocs/INSTALL.texi: Add section for MacOS X.
* darwin.patch: New file.
* lily/beam.cc (set_stem_shorten): Revive deceased stem shorten
code. Shorten stems by fraction of stems to be shortened.
* lily/stem.cc (get_default_stem_end_position): Shorten only half
of shorten value for boundary cases.
* scm/grob-description.scm (Stem): Set stem-shorten to (1.0 0.5).
(Beam): Set beamed-stem-shorten to (1.0 0.5).
2002-03-11 Jan Nieuwenhuizen <janneke@gnu.org>
* lily/beam.cc (check_stem_length_f): Try to lenthen more.
* scm/grob-description.scm (Beam): Add concaveness. Replace
Beam::cancel_suspect_slope with Beam::check_concave.
* lily/beam.cc (check_concave): Calculate concaveness of beam, and
set slope to horizontal if concaveness > Beam.concaveness. This
handles cases that kludgy cancel_suspect_slope was meant to catch
very well.
(cancel_suspect_slope): Remove.
2002-03-12 Rune Zedeler <rune@zedeler.dk>
* lily/beam.cc lily/stem.cc lily/beam-engraver.cc: allow for
stemLeftBeamCount and stemRightBeamCount to equal 0.
Fixes [c8 c4 c8]
2002-03-12 Han-Wen <hanwen@cs.uu.nl>
* lily/spacing-spanner.cc (breakable_column_spacing): Only do
fixed spacing for pref matter, if the next column is musical, and
at the same moment.
* lily/note-spacing.cc (stem_dir_correction): Use correct
discretionary for stem-bar spacing.
2002-03-11 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.38 released
* lily/grob.cc (warning): Use cause tracking to give more
meaningful errors from the backend.
* lily/property-iterator.cc (check_grob): Warn if setting grob
property in unknown grob.
* mf/feta-toevallig.mf: brushed stems for natural sign.
* lily/molecule.cc (align_to): don't translate empty molecule.
(this triggers a very subtle bug in time-signature.)
2002-03-10 Han-Wen <hanwen@cs.uu.nl>
* lily/spring.cc: remove file.
* input/regression/spacing-stem-bar.ly: new file
* lily/score.cc (run_translator): resurrect point-and-click
* input/baerenreiter-sarabande.ly: Copy Barenreiter beaming for
sarabande layout
* lily/spacing-spanner.cc (find_shortest): Shortest note for
spacing is now globally determined, using the most common shortest
note. Notes that are shorter are spaced geometrically, and with
expand hints. This makes spacing more even, and measures that have
very short notes won't be that stretched out.
* mf/feta-klef.mf: F-clef fixes, documentation on the
shape. (WARNING: font changed.)
2002-03-09 Han-Wen <hanwen@cs.uu.nl>
* lily/simple-spacer.cc (add_columns): support for infinitely
stiff springs.
* lily/staff-spacing.cc (get_spacing_params): space after
prefatory matter is fixed.
2002-03-08 Han-Wen <hanwen@cs.uu.nl>
* lily/note-spacing.cc (stem_dir_correction): Correct spacing for
barline following an upstem.
* lily/staff-spacing.cc (extremal_break_aligned_grob): destill
function from next_notes_correction().
(bar_y_positions): idem.
2002-03-04 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* input/regression/break.ly (texidoc): bugfix: escape \ in
strings.
* lily/staff-spacing.cc (next_notes_correction): Correct the
spacing of a note following a barline.
2002-03-04 Glen Prideaux
* mf/feta-solfa.mf: Shaped note heads
2002-03-03 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.37 released
* lily/key-signature-interface.cc (brew_molecule): rename from key_item
left-align molecule.
* lily/break-align-interface.cc (do_alignment): completely
rewritten. Now it does not use Align_interface anymore, but a
separate routine. Like StaffSpacing, it reads space-alist from the
breakable grobs. This allows you to set spacing using
\property Staff.Clef \override #'space-alist = '(....stuff....)
* lily/bar-line.cc, lily/include/bar-line.hh: change name from Bar
to Bar_line. Move files around as well.
* lily/time-signature.cc (time_signature): left align time signatures.
* mf/feta-timesig.mf: Remove padding from C-style time signatures.
Corrections of the glyph shape C. Comments added.
2002-03-02 Han-Wen <hanwen@cs.uu.nl>
* lily/spacing-spanner.cc: move from third-try.cc; rename
Third_spacing_spanner to Spacing_spanner.
* lily/staff-spacing.cc (get_spacing_params): redo prefatory
spacing stuff. Much cleaner now, and we prepare for neat spacing
tricks around bar lines and such.
* lily/third-try.cc (prune_loose_colunms): bugfix. Don't init
variables with themselves. (Ouch.)
* lily/span-bar.cc (brew_molecule): don't try to span bars that
overlap.
2002-03-02 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.36
* lily/lily-guile.cc: isdir_b and isaxis_b changed to ly_axis_p,
ly_dir_p
* lily/music.cc (ly_get_mus_property): typechecking
(ly_set_mus_property): idem
(ly_make_music): idem
(ly_music_name): idem
* lily/chord.cc: use scm_reverse_x iso. gh_reverse()
* lily/note-spacing.cc (stem_dir_correction): correction for
same stem notes as well.
* lily/pitch.cc (pitch_transpose): stricter typechecking
* mf/parmesan*mf: magnification fixes.
* Documentation/topdocs/INSTALL.texi: update RedHat reqs
2002-03-01 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* buildscripts/mf-to-table.py (postfixes): Output also .ly file
documenting the font. (Doesn't work for parmesan at the moment)
* Documentation/user/appendices.itely (The Feta font): Add list of
Feta font symbols with names.
* mf/GNUmakefile ($(outdir)/lilypond.map): Generate lilypond.map
automatically
2002-03-01 Han-Wen <hanwen@cs.uu.nl>
* lily/translator-group.cc (ly_set_trans_property): typechecking
(ly_get_trans_property): typechecking.
* lily/font-metric.cc (ly_text_dimension): typechecking
(ly_find_glyph_by_name): idem.
* scm/bass-figure.scm (brew-complete-figure): support for
bracketed numbers.
* lily/grob.cc (ly_get_paper_var): new function
2002-02-28 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION (PATCH_LEVEL): 1.5.35 released.
* lily/lookup.cc (ly_bracket): Scheme function ly-bracket
(bracket): New function.
* lily/stem-engraver.cc (stop_translation_timestep): bugfix, unset
stemLeftBeamCount, stemRightBeamCount in stead of using #<undefined>
* lily/third-try.cc (set_implicit_neighbor_columns): type checking
bugfix.
* lily/span-arpeggio-engraver.cc (stop_translation_timestep):
typecheck bugfix.
* lily/grob.cc (ly_get_grob_property): be anal about types.
(ly_set_grob_property): idem
* lily/figured-bass-engraver.cc (process_music): move molecule
building completely to Scheme
* lily/include/musical-request.hh (class Bass_figure_req): Add
class.
* lily/parser.yy (bass_figure): add support for space figure.
* lily/molecule.cc (ly_molecule_combined_at_edge): be anal about types
* lily/font-metric.cc (ly_text_dimension): Scheme function ly-text-dimension
* lily/molecule.cc (ly_fontify_atom): new function ly-fontify-atom
(ly_align_to_x): new function ly-align-to!
* lily/font-interface.cc (ly_font_interface_get_font): new Scheme
function ly-get-font
* mf/feta-nummer.mf: include normal-space dimension.
* lily/collision.cc (check_meshing_chords): don't merge collisions
with whole notes.
* lily/system-start-delimiter.cc (after_line_breaking): Bugfix:
glyph is string.
2002-02-28 Mats Bengtsson <matsb@s3.kth.se>
* scm/tex.scm, scm/ps.scm (or): Bugfix, ps output with Guile 3.4
2002-02-28 Juergen Reuter <reuter@ipd.uka.de>
* mf/parmesan-heads.mf: bugfix: mensural note heads (WARNING:
font changed)
* scm/output-lib.scm: bugfix: resort to neo_mensural chars rather
than mensural chars
* mf/parmesan-scripts.mf, mf/parmesan-generic.mf,
scm/grob-description.scm: added mensural fermata symbol
2002-02-27 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION: 1.5.34 released.
* lily/rest-engraver.cc (create_grobs): rests can have pitches.
* lily/staff-symbol-referencer.cc (callback): assume that
staff-position is unset in general.
* input/regression/rest-pitch.ly: new file.
* lily/parser.yy (simple_element): rests can have pitch. Syntax:
a4\rest
2002-02-26 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/scm-option.cc (set_lily_option): add internal-type-checks
as Scheme option. Run regression test by default with
internal-type-checking.
* lily/separating-group-spanner.cc (find_musical_sequences): removed.
* lily/lily-guile.cc (type_check_assignment): changed functions.
* scm/*description*.scm: be anal about typechecks. Some changes
for internal variable names.
2002-02-25 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* scm/ps.scm: -f ps output for GUILE 1.4 and 1.3.4
2002-02-25 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.33 released.
* mf/feta-macros.mf (flare_path): removed draw_flare, replace by
flare_path everywhere (c-clef, numbers).
* lily/bar-number-engraver.cc (process_music): also print bar
number if measure starts with grace note.
* input/regression/grace-bar-number.ly: new test.
2002-02-24 Han-Wen <hanwen@cs.uu.nl>
* lily/figured-bass-engraver.cc (stop_translation_timestep): reset
rest as well.
* scm/music-functions.scm (voicify-music): split chords into
different voices automatically.
* lily/music.cc (ly_music_list_p): new function
* lily/music-sequence.cc (do_relative_octave): robustification
* scm/music-functions.scm: many utility functions
* lily/music.cc (ly_set_mus_property): add type checks to the
Scheme property assignment.
* buildscripts/lilypond-profile,lilypond-login.sh (TEXCONFIG):
dvips fixes
* mf/lilypond.map: .map file from Mats' page.
2002-02-21 Juergen Reuter <reuter@ipd.uka.de>
* Some more parmesan related fixes;
* Custos: varying shape (in particular, stem length), depending on the
vertical position of the custos (on staffline / between stafflines);
* Custos: added grob property "neutral-direction" (same semantics as
with stem); introduced new grob property "neutral-position";
* Time-signature: print a warning when resorting to default layout.
2002-02-22 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/translator-group.cc (add_fresh_simple_translator): remove
function; initialize() is called through
Translator_group::initialize().
* lily/third-try.cc (prune_loose_colunms): add constraints (rods)
for the neighbors of a loose column.
* lily/line-of-score.cc (set_loose_columns): be more intelligent:
position loose columns so that they don't collide.
2002-02-21 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION: 1.5.32 released.
* scm/font.scm: remove font-name symbol.
* mf/GNUmakefile: use pktrace for making PFAs
* make/lilypond.redhat.spec.in: use pktrace when making RPMs
* lily/rest-collision.cc (do_shift): read direction field from
rest-column in case of note-rest collision. This should fix some
problems with rest collisions.
2002-02-19 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/note-heads-engraver.cc (process_music): Removed easyPlay
property.
* lily/note-head.cc (brew_ez_molecule): Remove note-character
property. Read pitch directly from #'cause.
* mf/feta-puntje.mf: bugfix
2002-02-19 Juergen Reuter <reuter@ipd.uka.de>
* mf/*.mf: tried to fix ancient-font.ly. WARNING: Font changed.
2002-02-18 Jan Nieuwenhuizen <janneke@gnu.org>
* Documentation/windows/compiling.texi: Update.
* Documentation/index.texi: Add link to orphaned compiling for
windows page.
* Documentation/footer.html.in: Comment fix.
* stepmake/bin/add-html-footer.py: Python2.[12] re workarounds.
2002-02-18 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.31 released
* lily/new-spacing-spanner.cc: remove file.
* lily/third-try.cc (do_measure): only take spacings into account
if they pertain to the column pair under consideration. This fixes
spacing bug when mixing eighths triplets and normal eighths.
* lily/note-head.cc (brew_molecule): revert ledger change: ledger
lines don't take up space anymore. Document why in note-head.cc
comment.
2002-02-17 Han-Wen <hanwen@cs.uu.nl>
* lily/font-interface.cc (get_font): reinstate
#'font-magnification. See input/regression/font-magnification.ly
(get_font): Change the definition of #'font-name grob property.
* lily/grob.cc (get_uncached_molecule): output origin for grobs
that have a #'cause field.
2002-02-12 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* Documentation/topdocs/INSTALL.texi: remove type3 stuff.
* mf/GNUmakefile: remove metapost stuff
* stepmake/aclocal.m4: remove metapost detection stuff.
2002-02-11 Jan Nieuwenhuizen <janneke@gnu.org>
* mf/GNUmakefile (FET_FILES):
(FONT_FILES): Include parmesan.
* stepmake/bin/packagepython.py (make_assign_re): Bugfix. Use re
iso regex, regsub
* buildscripts/clean-fonts.sh (FILES): Clean parmesan too.
* Documentation/user/refman.itely (Paper size): Quote braces.
2002-02-07 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* stepmake/aclocal.m4: fixed bison version check to be more
robust.
* lily/stem.cc (position_noteheads): fix for cluster chords.
* mf/*.mf: many blotting/pixel rounding fixes by Rune Zedeler
* python 2.2 support.
2002-02-04 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.30 released
* lily/dynamic-engraver.cc: add doco about DynamicLineSpanner
* Documentation/user/refman.itely (Dynamics): add a note about
DynamicLineSpanner.
* scm/grob-description.scm: add a 'translator-type? object
property, so that \property Foo.Bar =\turnOff doesn't cause
type check warning.
* lily/translator-group.cc (add_fresh_group_translator): make
new add-translator functions to make distinction between fresh and
used group-translators. Fixes problem with scripts on auto-changing voice
* lily/timing-engraver.cc: make Timing_engraver instantiatable,
add to Score_performer. Fixes bar checks in MIDI
* lily/tie-engraver.cc (create_grobs): Use pitches to compare note
heads. Fixes many quirks with ties.
* lily/engraver.cc (announce_grob): Use SCM argument. Store cause
in the grob property #'cause, instead of using Grob_info.
* ly/engraver-init.ly (StaffContext): move Dot_column_engraver to
staff context, fixing dot alignment on collisions.
* lily/beam-engraver.cc (try_music): remove can't find beam start
warning, so that skipTypesetting won't complain.
2002-02-01 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* Documentation/user/refman.itely (Paper size): Documentation fix,
papersize
* lily/text-engraver.cc: Bugfix: textNonEmpty works again
* scm/grob-description.scm: \breathe: Use feta font comma by default
2002-01-23 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* input/template/piano-dynamics.ly (pedal): Simplified
2002-01-18 Mats Bengtsson <mats.bengtsson@s3.kth.se>
* ly/engraver-init.ly: avoid warnings on \skip in lyrics
2002-01-10 Mats Bengtsson <matsb@s3.kth.se>
* lilypond-mode.el (LilyPond-command-query): ignore case.
2002-02-01 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION: 1.5.29 released
* all files: change 2001 to 2002 in headers globally
* mf/parmesan20.mf: split out ancient notation into parmesan ("old
cheese") font. WARNING: fonts changed.
2002-02-01 Juergen Reuter <reuter@ipd.uka.de>
* mf/*.mf: Fixed some blot_diameter related flaws in some feta symbols
* mf/*.mf: Added some more vaticana/solesmes style font symbols
* mf/*.mf: Bugfix: renamed subbipunctum -> inclinatum
* mf/*.mf: Fixed a few typos in various .mf files
2002-01-17 Rune Zedeler <rune@zedeler.dk>
* mf/: added macro soft_penstroke
softened some glyphs
redrawn triangular noteheads
redrawn tab-clef
added classical quarter rest
* lily/stem.cc: Bugfix: Stem-attachment when staff_space!=1
* lily/bar.cc: Bugfix: repeat dots when even number of staff
lines and staff_space>=2
* lily/rest.cc: Use default rests when current style glyphs not
found - this allows
\property Staff.Rest \override #'style = #'classical
2002-01-30 Jan Nieuwenhuizen <janneke@gnu.org>
* input/bugs/first-tie.ly: New file.
* input/bugs/spacing-clash.ly: New file.
2002-01-29 Jan Nieuwenhuizen <janneke@gnu.org>
* po: regenerate.
2002-1-24 Chris Jackson <chris@fluffhouse.org.uk>
* lilypond-indent.el: New file providing indentation for
parenthesised blocks of lilypond code in Emacs
* lilypond-font-lock.el: Changes to the syntax table to facilitate
indentation and handle block comments properly. Distinguish
accents from close-brackets in fontification.
* lilypond-mode.el: LilyPond-indent-command set appropriately.
2002-01-22 Jan Nieuwenhuizen <janneke@gnu.org>
* Documentation/windows/installing.texi:
* Documentation/windows/compiling.texi: Include from 1.4.10.
* Documentation/windows/gs-profile.sh: previously lily-gs.sh
* input/bugs/first-midi-tie.ly: New file.
2001-12-29 Han-Wen <hanwen@cs.uu.nl>
* VERSION: 1.5.28 released
* lily/parser.yy (My_lily_parser): Slightly kludgy warning for
illicit beams on [c4 c4] etc.
* lily/bar-check-iterator.cc (Bar_check_iterator): new
file. Make separate iterator for Bar_checks. Bar_check now happen
outside engravers, meaning that you can use them with
skipTypesetting. Associated changes in other files.
* lily/new-spacing-spanner.cc (stem_dir_correction): removed
function
* lily/spacing-spanner.cc (stem_dir_correction): removed function
* lily/include/grob.hh (unsmob_item, unsmob_spanner): Add functions
* lily/bar.cc (before_line_breaking): remove bar-line spacing code.
* lily/stem.cc (set_spacing_hints): removed function
* lily/note-spacing.cc (stem_dir_correction): new stem-direction
correction for spacing; now take vertical extents of the stem into
account.
* lily/third-try.cc: More hacking to get spacing working.
* lily/note-spacing-engraver.cc: new file, Note_spacing_engraver
sits at staff level and creates note spacing objects. Scrap it
again, and document why.
* lily/include/group-interface.hh: rename functions.
2001-12-27 Jan Nieuwenhuizen <janneke@gnu.org>
* stepmake/stepmake/c++-rules.make:
* stepmake/stepmake/c-rules.make: Fixes for bison-1.28.
2001-12-25 Jan Nieuwenhuizen <janneke@gnu.org>
* make/lilypond-vars.make:
* scripts/ly2dvi.py (setup_environment):
* scripts/lilypond-book.py (setup_environment): Also set tex
memory options.
2001-12-24 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* VERSION: 1.5.27 released.
* Documentation/user/refman.itely (Bar numbers): added bar number
documentation.
* scm/font.scm (make-style-sheet): Fixes to make staff-sizes work
again.
2001-12-22 Mats Bengtsson <matsb@s3.kth.se>
* tex/lilyponddefs.tex: Make sure interscorelinefill=1 doesn't
spread the last few lines all over the last page of a score.
2001-12-24 Han-Wen <hanwen@cs.uu.nl>
* lily/third-try.cc: 3rd try at revising spacing
engine. Not yet finished.
* lily/paper-column.cc (brew_molecule): print debugging marks on a
paper-column.
* lily/tie-engraver.cc (class Tie_engraver): Use busyGrobs for
collecting past note heads.
* lily/note-heads-engraver.cc (try_music): Remove end_mom_
stuff.
* lily/grob-pq-engraver.cc (class Grob_pq_engraver): New file, new
class. Keep a queue of grobs that are still playing in busyGrobs.
* lily/lyric-combine-music-iterator.cc (get_busy_status): New
function. Use busyGrobs to detect playing notes.
2001-12-16 Jan Nieuwenhuizen <janneke@gnu.org>
* Documentation/topdocs/INSTALL.texi: Added note about broken
python-2.1. Updated note for Debian's broken (well, broken for
our use anyway) tex configuration.
* scripts/lilypond-book.py (re_dict): python2.2 fix.
* stepmake/stepmake/c++-rules.make ($(outdir)/%.hh):
($(outdir)/%.cc): Adapted to bison-1.30; added bison < 1.30 fix.
* scripts/lilypond-book.py (bounding_box_dimensions): Bugfix.
(But left margin of png's still misses a few pixels. Arg.)
2001-12-16 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-mode.el (LilyPond-command-next-midi): Make
possible to kill midi-process (using "C-c C-m").
2001-12-14 Han-Wen <hanwen@cs.uu.nl>
* scripts/lilypond-book.py (LatexPaper.set_geo_option):
Convert strings with dimensions to numbers.
* lily/volta-engraver.cc: only make a bracket for the top staff,
as found in stavesFound.
* lily/bar-number-engraver.cc: remove staff administration.
* lily/mark-engraver.cc (acknowledge_grob): remove staff
administration. This breaks support for invisible-staff.
* lily/staff-collecting-engraver.cc: new engraver. Collects staff
symbols into stavesFound.
* lily/score-engraver.cc (acknowledge_grob): Acknowledge spacing
grobs, and put them into columns.
* lily/engraver-group-engraver.cc (acknowledge_grobs): Include the
Engraver_group_engraver as a potential candidate for ack'ing grobs.
2001-12-13 Heikki Junes <hjunes@cc.hut.fi>
* lilypond-mode.el (LilyPond-command-next-midi): Play next (or last)
midi section in the Emacs-mode, so it is possible to play certain
score in a multiscore lilypond-file.
2001-12-09 Rune Zedeler <rune@zedeler.dk>
* lily/lily-guile.cc: Added ly_assoc_front_x() and ly_assoc_cdr()
(FIXME: not accessible from guile)
* lily/accidental-engraver.cc: rewrote accidental-routines to get
better support for Kurt Stone's suggestions.
Removed properties: noResetKey, forgetAccidentals, autoReminders,
lazyKeySignature.
Changed property: localKeySignature.
Added properties: extraNatural, autoAccidentals,
autoCautionaries.
(BUGFIX: broken-tie-support destroyed in 1.5.16)
* ly/property-init.ly: added commands
\defaultAccidentals \modernAccidentals \modernCautionaries
\noResetKey \forgetAccidentals
* ly/engraver-init.ly: Correct initialization of new accidentals.
* scm/translator-property-description.scm: The new properties
added.
* input/: Some examples added, some changed.
* Documentation/regression-test.tely: Added quick test of new
accidentals.
2001-12-13 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* scripts/lilypond-book.py (scan_latex_preamble): don't crash if
header not found
2001-12-07 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/beam.cc (before_line_breaking): Make beams without stems
or with only one stem disappear.
2001-12-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* bibtools/bib2html.py: Add simple bib2html convertor, and .bst
files to have standardised HTML bibliography output. Update build
docs to reflect this.
* lily/include/simple-spacer.hh (struct Simple_spacer): add
active_count_, so that we don't have to look for active springs
anymore.
* scm/interface-description.scm,scm/grob-property-description.scm:
Add 'penalty
* lily/simple-spacer.cc (solve): Handle forced line breaks
here. Fixes problems when combining linebreaks with non-fitting
line configurations
2001-12-05 Jan Nieuwenhuizen <janneke@gnu.org>
* 1.4.9.jcn3 forward ports.
* Really included .cvsignore.
* Included Han-Wen's uu1 windows fixes.
* Bugfix: lilypond-profile.sh: append to GS_FONTPATH, GS_LIB.
* Added Cygwin setup.hint
* Removed tex, python wrappers and postinstalls to go with Cywgin's
tetex/texmf, python installations.
* Updated cygwin installer.
* ly2dvi: Don't accept filenames with spaces (+ fix).
2001-12-03 Han-Wen <hanwen@cs.uu.nl>
* ly/engraver-init.ly (VoiceContext): fix text engraver ordering.
* lily/translator-def.cc: Remove manual symbol caching.
* lily/script-column.cc (before_line_breaking): robustness check:
don't crash if no direction set.
* scripts/pmx2ly.py: Key and clef change support (Laura Conrad)
* scripts/pmx2ly.py (Parser.parse_header): more generic header
parsing.
2001-12-01 Han-Wen <hanwen@cs.uu.nl>
* lily/note-head.cc (head_extent): added to compute width without
ledger lines. By default, ledger lines take up width now.
* input/regression/fingering.ly: demonstrate auto fingering.
Horizontal placement is still buggy.
* lily/fingering-engraver.cc (class Fingering_engraver):
added. Provides support for horizontal fingering scripts
* lily/include/grob.hh: Naming: change parent_l() into get_parent()
* lily/side-position-interface.cc (add_staff_support): add staff
only for Y-axis side positions.
* lily/parser.yy (request_chord): Fix mem leak.
* lily/musical-request.cc (transpose): moved to Music::transpose()
* lily/include/grob-info.hh: Change music pointer to SCM, so we
can store grobs as grob-creation cause as well.
* lily/group-interface.cc (add_thing): efficiency tweak: reuse
handle when adding. Use precomputed symbols throughout lily.
* lily/rhythmic-column-engraver.cc: make NoteSpacing grobs to keep
track of spacing issues.
* lily/separating-line-group-engraver.cc: make StaffSpacing grobs
to keep track of staff spacing
2001-11-30 Jan Nieuwenhuizen <janneke@gnu.org>
* Rewrote new conditional guile >= 1.5 compilation switches, to keep
code clean from conditionals and have a concentrated sets of
compatibility fixes for old guile versions.
* Fixes for guile 1.4, including embedded ps.
2001-11-30 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/stanza-number-engraver.cc (process_music): allow pairs as
well for markup texts.
* lily/musical-request.cc (length_mom): kludge for null pointer.
* scm/sketch.scm (sketch-output-expression): guile 1.4 compatibility
* scm/lily.scm (sign): bugfix
* CHANGES: Change log instated.
* stepmake/add-html-footer.py: @BRANCH@ tag insertion.
|