~ubuntu-branches/ubuntu/wily/xmms2/wily

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
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
Changes between 0.5 DrLecter+WIP+TEST2 and 0.6 DrMattDestruction

 Release date: 2009-04-21
 Authors contributing to this release: 4
 Number of changesets: 6
 Number of files in this release: 745

 Anders Waldenborg:
  * BUG(2192): Fix browsing in gvfs plugin with files with strange chars.
  * BUG(2195): Remove (broken) last.fm plugin.

 Anthony Garcia:
  * BUG(2139): manpage for nycli

 Florian Ragwitz:
  * OTHER: Lower gvfs default priority for cdda://

 Thomas Frauendorfer:
  * BUG(2193): Fix generation of xmms2d manpage
  * BUG(2193): fix creation of avahi manpage



Changes between 0.5 DrLecter+WIP+TEST1 and 0.5 DrLecter+WIP+TEST2

 Release date: 2009-03-15
 Authors contributing to this release: 6
 Number of changesets: 25
 Number of files in this release: 748

 Anders Waldenborg:
  * BUG(2086): Make nycli use filename when title is missing.
  * BUG(2127): Make nycli wscript try to link against ncurses too if readline fails.
  * BUG(2169): Fix crash on first chain setup when visualization is enabled.
  * BUG(2176): Revert xmmsv_coll_add_operand semantics to allow duplicate add.
  * BUG(2179): Make nycli wscript check for readline header files.
  * BUG(2180): Make nycli wscript look for GNU specific readline functions.
  * BUG(2185): Fix readline detection in nycli wscript. Based on patch by anthonyg.
  * BUG(2186): Properly check type in collection methods in python bindings.
  * BUG(2188): Make airplay work with newer ApEx hardware.
  * OTHER: Be more specific about versions of (L)GPL license in COPYING.
  * OTHER: Change nycli default propmt to "xmms2>"

 Anthony Garcia:
  * BUG(2165): Create default nycli.conf
  * BUG(2166): Load default config before config file
  * BUG(2175): Error when terminal is resized /or errno is set to EINTR
  * BUG(2177): Total duration overflows
  * OTHER: Get rid of deprecated function calls
  * OTHER: nycli license change, LGPL -> GPL

 Daniel Svensson:
  * BUG(2174): Add --prefix option to main wscript.
  * FEATURE(2173): Add help text to all custom waf parameters.

 Thomas Frauendorfer:
  * BUG(1897): remove usage of xmmsv_get_uint from xmms2d
  * BUG(1897): remove usages of XMMSV_TYPE_UINT32 in the deamon
  * BUG(1897): remove usages of xmmsv_get_uint from cli
  * BUG(1897): remove usages of xmmsv_get_uint from smaller clients

 Tilman Sauerbeck:
  * BUG(2114): Updated Perl bindings to use xmmsv_coll_operands_get().

 Łukasz Michalik:
  * BUG(1897): Finish with s/uint/int/ in C++ bindings



Changes between 0.5 DrLecter and 0.5 DrLecter+WIP+TEST1

 Release date: 2009-03-04
 Authors contributing to this release: 23
 Number of changesets: 554
 Number of files in this release: 749

 Anders Waldenborg:
  * BUG(1871): Add header check to mac plugin wscript.
  * BUG(1897): Change collection object methods to use int instead of uint for args
  * BUG(1897): Change main object methods to use int instead of uint.
  * BUG(1897): Change medialib object methods to use int instead of uint for args
  * BUG(1897): Change output object methods to use int instead of uint for args
  * BUG(1897): Change playlist object methods to use int instead of uint for args
  * BUG(1897): Make output status use signed int
  * BUG(1897): Make playtime signed
  * BUG(1897): Make volume signed
  * BUG(1897): Never serialize uint xmmsv_t
  * BUG(1897): Remove support for uint xmmsvs in (ny)cli and bindings
  * BUG(1897): Remove uint stuff from python bindings
  * BUG(1897): Remove uint. Just some deprecated compatibility crap left
  * BUG(1897): hack xmmsv_get_uint to handle XMMSV_TYPE_INT32 too.
  * BUG(1897): make medialib ids signed
  * BUG(1897): make visualisation version signed
  * BUG(1897): playlist pos is int in cli
  * BUG(1897): playlist pos is int in nycli
  * BUG(1897): remove support for uints in ipc
  * BUG(1897): send signal/broadcast ids as int
  * BUG(1962): Fix crash in FLAC plugin on 64-bit platforms with libflac1.2.
  * BUG(1986): Fix handling of xmms_error_t in segment xform.
  * BUG(1987): Remove XMMS_OBJECT_CMD_ARG_HASH_TABLE
  * BUG(1995): Fix crash in pulse plugin when pulseaudio server disappears.
  * BUG(1996): Fix out of bounds access in xml plugin.
  * BUG(2017): Fix getaddrinfo usage in daap plugin.
  * BUG(2026): Fix crash in mad with xing headers specifying 0 frames.
  * BUG(2028): Look for avcodec header in subdir aswell.
  * BUG(2032): Make xmmsc_medialib_get_id encode properly.
  * BUG(2048): Properly check return value of xmmsv_dict_get in xform browse.
  * BUG(2079): Fix sql queries containing apostrophe (').
  * BUG(2081): Update C tutorials for xmmsv_t.
  * BUG(2102): Remove error printout in xmmsv_list_iter_entry
  * BUG(2103): Fix crash on xmmsv_list_get on empty list.
  * BUG(2106): Store collection operands in an xmmsv list
  * BUG(2109): Fix double free in xmmsv_coll_operand_list_clear/coll_unref
  * BUG(2110): Fix python collection refcounting.
  * BUG(2118): Validate string before putting it in xmmsv.
  * BUG(2138): Don't use GHashTableIter. Based on patch by Igor Assis.
  * BUG(2144) Move xmmsc_entry_format to xmmsv_dict_format.
  * BUG(2149): Fix reference leak in xmmsv_build_dict.
  * BUG(2151): Remove import of nonexistant UINT32 type in python bindings
  * BUG(2154): Only print \r when refreshing status in nyxmms2.
  * BUG(2155): Make nyxmms2 status use xmmsv_dict_format
  * BUG(2159): Fix memleak in browse.
  * BUG(2161): Make xmmsv_coll_attribute_get set value to NULL like before.
  * BUG(2163): Fix callbacks in diskwriter.
  * FEATURE(1338): Add socket_invalidate.
  * FEATURE(1338): Cleanup write_udp
  * FEATURE(1338): Detect if semtimedop exists and only enable vis-over-unixshm if so.
  * FEATURE(1338): Fix shm vis on 64 bit platforms.
  * FEATURE(1338): Refactor
  * FEATURE(1338): Remove at least some of the unaligned accesses
  * FEATURE(1338): Remove last unaligned accesses.
  * FEATURE(1338): Remove side effects from x_api_error_if.
  * FEATURE(1338): Remove xmmsc_result_wait from clientlib code
  * FEATURE(1338): Use xmms_socket_close.
  * FEATURE(1338): Use xmms_socket_valid.
  * FEATURE(1338): refactor clientside
  * FEATURE(1338): wscript fixes.
  * FEATURE(1597): Add simple testing framework.
  * FEATURE(1597): Add testcases for xmmsv_t, based on Daniel Svensson's tests.
  * FEATURE(1835): Update clientlib to use xmmsv. Disables clients and bindings.
  * FEATURE(1835): Updated the CLI to the new API.
  * FEATURE(2056): Add new functions for taking xmmsv_t url args in clientlib
  * FEATURE(2077): Verify that strings passed to xmmsv_new_string are UTF-8.
  * FEATURE(2090): Add functions for explicitly destroying list and dict iters.
  * FEATURE(2108): Change collection attributes to a xmmsv_t dict.
  * FEATURE(2108): Enable direct access to coll attributes dict.
  * FEATURE(2111): Update pythonbindings to use xmmsv_coll_operands_list_get.
  * FEATURE(2115): Update cli to use xmmsv_coll_operands_list_get.
  * FEATURE(2117): Make xmms_object_emit use xmmsv_t
  * FEATURE(2122): Add xmmsv_list_restrict_type.
  * OTHER: '=' is a valid char in xmms2 urls.
  * OTHER: Add some stuff to .gitignore
  * OTHER: Add testcase for larger negative positions in xmmsv_lists.
  * OTHER: Add testcase for xmmsv_format_dict.
  * OTHER: Add valgrind configure check used by plugin.c
  * OTHER: Add xmms_sqlite_query_int to improve type safety.
  * OTHER: Add xmmsv_build_dict.
  * OTHER: Add xmmsv_is_type and deprecate xmmsv_is_{list,dict}
  * OTHER: Add xmmsv_list_iter_last to xmmsv.h
  * OTHER: Add xmmsv_list_iter_prev to xmmsv.h
  * OTHER: Change vistest wscript to build as many test clients as possible.
  * OTHER: Consistently use xmms_config_property_get_int/string in config changed callbacks.
  * OTHER: Create xmmsc_compiler.h and move XMMS_DEPRECATED and xmmsc_inline there
  * OTHER: Don't include xmmsclient/* headers from lib/xmmstypes/
  * OTHER: Drop deprecated xmmsv uint usage in nycli.
  * OTHER: Enforce waf python2.4 requirement as early as possible.
  * OTHER: Explicit is better than implicit (flv cleanup)
  * OTHER: Fix memory leak on errorpath in xmmsv_new_bin
  * OTHER: Fix warning in xmmsv_decode_url.
  * OTHER: Fix warnings in src/lib/xmmsipc/msg.c
  * OTHER: Handle XMMSV_TYPE_NONE in emit_f again
  * OTHER: Let pyrex be as ignorant about const as it is.
  * OTHER: Lots of things changed, up protocol, API, and so versions.
  * OTHER: Make "before first" and "after last" two different things in iters.
  * OTHER: Make browse create xmmsv dicts directly.
  * OTHER: Make cli use xmmsc_playlist_insert_full, based on patch by Daniel Chokola
  * OTHER: Mark xmmsv_get_error_old as deprecated.
  * OTHER: Merge value_data_free function into xmmsv_free.
  * OTHER: Minor style cleanup.
  * OTHER: Minor tutorial updates.
  * OTHER: Move tests to optional subdirs, so things build without cunit installed.
  * OTHER: Move xmmsv_type_t to xmmsc_value.h
  * OTHER: Ported xmms2-et to rv-split
  * OTHER: Refactor collection pretty-printer in cmd_coll.c
  * OTHER: Remove extra indirection in alias list array in nycli.
  * OTHER: Remove support for some unused types in xmms_object_emit_f allowing removal of more code.
  * OTHER: Remove unused config changed callback in medialib.c.
  * OTHER: Remove unused enum.
  * OTHER: Remove unused xmmsv_make_dict function.
  * OTHER: Remove usages of xmmsv_is_{list,dict} in src/lib/xmmstypes/value.c
  * OTHER: Remove xmmsc_visualization_properties_t now that xmmsv is used.
  * OTHER: Rename xmmsc_coll_t to xmmsv_coll_t  with compability
  * OTHER: Rename xmmsc_value.h to xmmsv.h and xmmsc_coll.h to xmmsv_coll.h
  * OTHER: Rename xmmsv_coll_operands_list_get -> xmmsv_coll_operands_get
  * OTHER: Rename xmmsv_dict_insert->xmmsv_dict_set.
  * OTHER: Rename xmmsv_dict_iter_seek to xmmsv_dict_iter_find
  * OTHER: Rename xmmsv_get_collection -> xmmsv_get_coll
  * OTHER: Rename xmmsv_get_dict_entry_* -> xmmsv_dict_entry_get_*
  * OTHER: Rename xmmsv_list_iter_goto -> xmmsv_list_iter_seek
  * OTHER: Sort plugins in waf configure summary.
  * OTHER: Store iter position as signed int.
  * OTHER: Store xmmsv list size as signed integer.
  * OTHER: Transform get_absolute_position into absolutify_and_validate_pos.
  * OTHER: Update copyright notice for 2009 in flv.c
  * OTHER: Update tests for xmmsv_is_type.
  * OTHER: Use xmmsv_build_dict in xmms_plugin_client_list_foreach
  * OTHER: Use xmmsv_dict_get in xmmsv_get_dict_entry_*.
  * OTHER: Use xmmsv_list_restrict_type for collection operands.
  * OTHER: Use xmmsv_t for returnvalue for bin methods instead.
  * OTHER: Variable initializers are great ways of hiding bugs.
  * OTHER: We got an SCM, no need to comment out large blocks of code.
  * OTHER: Whitespace cleanup.
  * OTHER: python xmmsc -> xmmsv

 Andrew G Potter:
  * BUG(1972): Setting prop's on nonexisting IDs doesn't add those IDs anymore.

 Anthony Garcia:
  * BUG(1979): Configurable default output plugin
  * BUG(2038): cue sets artist/title/album when they are not present
  * BUG(2039): cue plugin should use global PERFORMER property
  * BUG(2080): Separate output from xform plugins in summary.
  * BUG(2098): Invalid field instead of track title
  * BUG(2140): Add missing hunk from nyxmms2 addpls fix.
  * BUG(2140): Use g_path_get_dirname in url_isdir and fix broken pls add
  * BUG(2145): add xmmsv_dict_has_key
  * BUG(2157): server shutdown causes segfault
  * BUG(2158): nyxmms2 add -f file.mp3 broken
  * BUG(443): EXTM3U, silly assumptions, titles
  * FEATURE(1664): Check id before updating status
  * FEATURE(1815): FLV plugin
  * OTHER: Add public key fingerprint to AUTHORS
  * OTHER: Allow choice of column display type in config
  * OTHER: Change wscript for building with waf 1.5.2
  * OTHER: Check return value of g_hash_table_lookup.
  * OTHER: Clear operand list with xmmsv_list_clear
  * OTHER: Compilation warnings
  * OTHER: Don't warn about output plugins without xmms2d
  * OTHER: HTML plugin fixed
  * OTHER: Log timestamps with configurable formatting
  * OTHER: Python 2.6 and 3.0 compatibility for wscripts.
  * OTHER: Typo in python version exception
  * OTHER: Use new coll functions

 Auke Schrijnen:
  * BUG(2003): Properly default to active playlist.
  * BUG(2096): Fix git version detection with newer git.

 Daniel Chokola:
  * BUG(1997): remove extra ruby include path
  * BUG(1998): use XMMS_PATH_MAX in helpers.h
  * BUG(2049): restart broadcasts in status
  * BUG(2089): Win32 doesn't have nanosleep(), so use Sleep() instead.
  * OTHER: Add copyright notice to xmmsc_compiler.h
  * OTHER: Change xmms_xform_auxdata_get_bin signature to stress constness.
  * OTHER: PATH_MAX is not defined everywhere, use XMMS_PATH_MAX
  * OTHER: Update copyright notices for 2009.
  * OTHER: clean some wscript code that was way over 80 cols
  * OTHER: fix main wscript indentation
  * OTHER: fix printf compiler warning in unixshm.c
  * OTHER: fixed typo in ipc.c
  * OTHER: ruby to_propdict source argument is now optional
  * OTHER: unbreak SHM vis by including xmms_configuration so we know about semtimedop
  * OTHER: use xmmsc_stdint.h instead of sys/types.h for portability

 Daniel Svensson:
  * BUG(1781): Require sqlite3 >= 3.5.1 for sqlite3_threadsafe() func.
  * BUG(2101): Add xmmsc_coll_idlist_from_playlist_file to python bindings.
  * FEATURE(1835): Update pythonbindings for xmmsv.
  * OTHER: Check for SQLite 3.5 instead of 3.5.1
  * OTHER: Monkey's Audio test should use a c++ compiler, not c.
  * OTHER: Refactor long plugin detection line to use a predicate.
  * OTHER: Remove stupid GLib check from main.c
  * OTHER: Update AUTHORS with some new info about me.
  * OTHER: Update to waf 1.5.2+r5241
  * OTHER: s/HAVE_PROTECT_INSPECT/HAVE_RB_PROTECT_INSPECT/g
  * OTHER: s/HAVE_UNIXSHMSUPPORT/HAVE_SEMTIMEDOP/g

 Deng Xiyue:
  * FEATURE(2091): C++ binding for xmmsc_playlist_add_idlist

 Erik Massop:
  * BUG(1924): Implement some kind of natural sorting
  * BUG(1934): Support relative jumps in the cli
  * BUG(1967): Synchronize 10s after last collections change.
  * BUG(2045): Inserting into any playlist can change the position in the active playlist.
  * BUG(2055): Number of entries in pshuffle playlist is wrong after creation or clearing.
  * BUG(2083): Fix pshuffle (wrong signedness)
  * BUG(2098): entry_format does not ignore non-existent properties
  * BUG(2099): Return enum value, fix documentation
  * BUG(2100): Make jumplist mimic playlist load better
  * BUG(2126): Make sure man-pages can be built
  * BUG(2147): Allow building of no plugins/optionals
  * OTHER: Allow lists to be traversed backwards
  * OTHER: Fix typo to make xmms2d compile
  * OTHER: Make xmmsv_coll_new return NULL on invalid type.
  * OTHER: Tabsize 4, image path for Doxygen
  * OTHER: Use boolean options

 Florian Ragwitz:
  * BUG(1192): Include the tutorials.
  * OTHER: Add license for src/plugin/sid/md5.* to COPYING.
  * OTHER: Mention the GPLed faad plugin in COPYING.
  * OTHER: Port perl bindings to xmmsv api.

 Igor Assis:
  * BUG(2092): Fix 'add' with multiple files bug.
  * BUG(2097): Add heuristics to check if pattern looks like a url or file when adding.
  * BUG(2123): Filter by pattern if provided.
  * BUG(2123): Make filter by positions work.
  * BUG(2123): Print positions correctly.
  * BUG(2124): Make info use current song if no pattern/positions is given.
  * BUG(2133): Quote as expected.
  * BUG(2141): Exit status mode if the daemon quits.
  * BUG(2156): Handle daemon disappearing correctly.
  * FEATURE(1664): 'server property' command partially implemented.
  * FEATURE(1664): Add --source flag to 'server property' command.
  * FEATURE(1664): Add variable ${position} to be used in status format.
  * FEATURE(1664): Aliases initial commit.
  * FEATURE(1664): Automatically add playlist files if GUESS_PLS = true.
  * FEATURE(1664): Change $0 for $@ in alias definition.
  * FEATURE(1664): Change behaviour when using $@ with no parameters in aliases.
  * FEATURE(1664): Change command-trie so that 'subtrie' nodes stores an 'action'
  * FEATURE(1664): Copy collection in 'collection create' than reference.
  * FEATURE(1664): Count UTF-8 chars instead of bytes when printing status.
  * FEATURE(1664): Example of working aliases.
  * FEATURE(1664): Fix bug (don't resume input loop) in some commands.
  * FEATURE(1664): Fix bug in 'add' command.
  * FEATURE(1664): Fix bug in cli_pl_sort (freeing of cache string).
  * FEATURE(1664): Fix bug when typed alias has no parameters.
  * FEATURE(1664): Fix memory leak in command trie.
  * FEATURE(1664): Fix memory leaks in playlist config.
  * FEATURE(1664): Fix segfault in status command when playlist is empty.
  * FEATURE(1664): Fix segfaults when aliases arguments are missing.
  * FEATURE(1664): Fix small bug in 'encode_url'.
  * FEATURE(1664): Fix two bugs in help command.
  * FEATURE(1664): Fix two memory leaks.
  * FEATURE(1664): Fix typo.
  * FEATURE(1664): Implement 'server import'.
  * FEATURE(1664): Implement 'server' commands: rehash, plugins, sync and shutdown.
  * FEATURE(1664): Implement 'server' commands: remove, volume and stats.
  * FEATURE(1664): Implement alias with parameters (see src/etc/nycli.conf for examples.)
  * FEATURE(1664): Implement globbing using xform_browse.
  * FEATURE(1664): Implment add playlist file option.
  * FEATURE(1664): Make 'status' command work in inline mode.
  * FEATURE(1664): Make aliases with commands that use cache work correctly.
  * FEATURE(1664): Make helper function to filter playlist contents.
  * FEATURE(1664): More memory leak fixes.
  * FEATURE(1664): More rv-split upgrade.
  * FEATURE(1664): Move find_terminal_width to utils.c for reuse in status.
  * FEATURE(1664): Remove trailing slashes from user entered paths.
  * FEATURE(1664): Remove unused "glob.h" include.
  * FEATURE(1664): Separate help for commands and aliases.
  * FEATURE(1664): Support recursive alias.
  * FEATURE(1664): Upgrade to rv-split and code cleanup.
  * FEATURE(1664): Use rinsert in 'add' command.
  * OTHER: Added default configuration file.
  * OTHER: Adjust time parser: fix bug in offset parsing, add a new input option.
  * OTHER: Cache playback status and use it in 'toggle'.
  * OTHER: Change move behaviour.
  * OTHER: Code cleanup
  * OTHER: Code cleanup.
  * OTHER: Command 'seek' was using infos->conn instead of sync
  * OTHER: Configuration-file support added.
  * OTHER: Escape tokens before joining them when it's a pattern, patterns with spaces working now.
  * OTHER: Fix bug in parse_time.
  * OTHER: Fix buggy recursive add implementation (worked only if paths
  * OTHER: Fix coding-style.
  * OTHER: Fix coding-style.
  * OTHER: Fix coding-style.
  * OTHER: Fix file globbing and coding style.
  * OTHER: Free cmdnames list.
  * OTHER: Handle reading errors correctly.
  * OTHER: Implement 'move' command.
  * OTHER: Implement collection commands.
  * OTHER: Implement recursive add and filename matching (glob).
  * OTHER: Improve help system, allow 'help playlist' to show playlist commands.
  * OTHER: Make command 'add' sync.
  * OTHER: Make command 'jump' sync.
  * OTHER: Make command 'playlist config' sync.
  * OTHER: Make command 'search' sync.
  * OTHER: Make commands 'info', 'remove' and 'playlist create' sync.
  * OTHER: Make commands 'prev' and 'next' sync.
  * OTHER: Make commands 'seek', 'pl_switch', 'pl_rename', 'pl_rename', 'pl_remove', 'pl_clear', 'pl_shuffle' and 'pl_sort' use the sync connection.
  * OTHER: Make commands 'status' and 'pl_list' sync.
  * OTHER: Make playlist_positions foreach iterate in both directions.
  * OTHER: New parser for time arguments.
  * OTHER: Partial status command.
  * OTHER: Prevent overwrite when creating new playlists.
  * OTHER: Read default status format string from configuration.
  * OTHER: Refactoring and implementation of 'toggle' in status mode.
  * OTHER: Remove udata_pack stuff.
  * OTHER: Rename callback functions.
  * OTHER: Replace PATH_MAX by XMMS_PATH_MAX.
  * OTHER: Status command 'format' flag implemented.
  * OTHER: Support for other (general) info fields in status format string.
  * OTHER: Whitespace fix.
  * OTHER: added 'next' column in 'list' command showing argument for 'next'.
  * OTHER: added 'toggle' command
  * OTHER: bug ('add' after a 'playlist clear' doesn't add) fixed
  * OTHER: features added
  * OTHER: implement two connections method: one sync for sending commands and one async listening to server updates.
  * OTHER: make work with PLAYLIST_CURRENT_POS returning a dict
  * OTHER: simple error handling
  * OTHER: unref connections when disconnecting
  * OTHER: unused infos_ctx pack removed
  * OTHER: unused old code removed

 Johannes Jordan:
  * FEATURE(1338): preliminary support of spectrum analyzer

 Johannes Michael Jordan:
  * FEATURE(1338): Add new example client using libvisual.
  * FEATURE(1338): Added proof-of-concept streamripper
  * FEATURE(1338): Improved UDP transport, X-platform
  * FEATURE(1338): New visualization code
  * FEATURE(1338): changed client API, blocking can be given in ms
  * FEATURE(1338): introduced xmmsc_visualization_properties_t

 Jonathan Horowitz:
  * FEATURE(1929): Added seek functionality to GME plugin.

 Jonne Lehtinen:
  * BUG(1897): Remove uint stuff from C++ bindings.
  * BUG(2009): Fix signedness of times_played and last_started.
  * BUG(2022): link speex plugin with libogg.
  * BUG(2031): Don't send curpos broadcasts when curpos doesn't change.
  * FEATURE(1664): Fixed the alignment, cropping and display of multi-byte, wide characters.
  * OTHER: Added Dict::const_iterator.
  * OTHER: Cleaned up Xmms::List and implemented c++ style iterators.
  * OTHER: Remove useless valid() from C++ list iterators
  * OTHER: list iterator is bidirectional, not forward-only

 Juho VÀhÀ-Herttua:
  * BUG(1837): Implement seeking in musepack files.
  * BUG(1977): Update musepack plugin to support the mpcdec6 API.
  * BUG(1988): Fix wma file playing with newer libavcodec.
  * BUG(1994): Fix bug in id3v2 plugin's seeking.
  * BUG(2041): Fix crash in case xmms_lastfm_adjust receives an error message.
  * BUG(2053): Fix avcodec to work on latest versions of the library.
  * BUG(2128): Ignore hidden streams in ASF files.
  * FEATURE(1948): Add support for playing tta files using ffmpeg.
  * FEATURE(1950): Add Monkey's Audio demuxer to play .ape files with ffmpeg.
  * FEATURE(1989): Implement support for seeking in apefile plugin.
  * FEATURE(1990): Implement tag reading in apefile plugin.
  * FEATURE(2027): Add shorten (SHN) support for the avcodec plugin.
  * FEATURE(805): Add a working WavPack decoder plugin.
  * OTHER: Add ID3v1 tag reading support into mpg123 plugin.
  * OTHER: Add a hack to avcodec to avoid crashes coming from buggy ape decoder.
  * OTHER: Add support for OSS4 softmixer in the oss plugin.
  * OTHER: Cleanup the xform chain setup functions.
  * OTHER: Code style cleanups in src/plugins/apefile/apefile.c
  * OTHER: Code style cleanups in src/plugins/musepack/musepack.c
  * OTHER: Code style cleanups in src/plugins/pulse/backend.c
  * OTHER: Code style cleanups in src/plugins/vocoder/pvocoder.c
  * OTHER: Fix bug in avcodec appearing when seeking certain files.
  * OTHER: Fix duration on MP3 files that don't have the LAME headers.
  * OTHER: Fix possible incorrect return value in ASF seeking.
  * OTHER: Fix segment refcount when adding playlists, bug introduced by myself.
  * OTHER: Make the OSS plugin compile on FreeBSD again, broken by OSS4 patch.
  * OTHER: Move ALAC hack from avcodec to mp4 to make avcodec more general.
  * OTHER: Refactor ID3v1 tag reading in mad for better modularity.
  * OTHER: Remove the request_channels variable from avcodec.
  * OTHER: Small bugs in avcodec plugin that might cause trouble later.
  * OTHER: Synchronize the libasf library with latest upstream version (r87).
  * OTHER: Update avcodec to support dynamic buffers, required for .ape playing.
  * OTHER: Update mac plugin priority to be higher to override apefile plugin.

 Lucas Adam M Paul:
  * FEATURE(2084): Made GME "magic numbers" user-configurable
  * FEATURE(2085): GME: Made stereo depth a user-configurable value
  * OTHER: Added AY magic to GME plugin
  * OTHER: Added GYM magic to GME plugin
  * OTHER: Added NSFE magic to GME plugin
  * OTHER: Added SAP magic to GME plugin
  * OTHER: Added VGM magic to GME plugin
  * OTHER: Fixed memory leak on error in xmms_gme_init

 Raphaël Bois:
  * BUG(2024): Respect bindata.path config value in bindata.c.

 Sebastien Cevey:
  * BUG(2050): Improve xmmsv_propdict_to_dict to use default src_prefs and exclude non-matching tuples
  * BUG(2112): Discard use of obsolete xmmsv_coll_operand_list_* functions in C++ bindings
  * BUG(2121): xmmsc_playlist_insert_collection reverses the order
  * FEATURE(1184): Added playlist_rinsert and playlist_rinsert_encoded, incl. bindings and CLI
  * FEATURE(1664): Add default value (true) to CLASSIC_LIST configuration var
  * FEATURE(1664): Add support for positions to move, remove, info and jump
  * FEATURE(1664): Add support for program flags (-h, -v)
  * FEATURE(1664): Added auto size_type, total time footer, render time to column displayer
  * FEATURE(1664): Added playlist_positions system to parse positions in playlist
  * FEATURE(1664): Allow playlist create from copy, changed argument style.
  * FEATURE(1664): Auto-compute and crop AUTO columns, play nice with others
  * FEATURE(1664): Avoid hanging when no argument passed to import.
  * FEATURE(1664): Change C++-style comments into old-school C comments
  * FEATURE(1664): Cleanup code, remove duplicated time formatting code
  * FEATURE(1664): Cleanup code, use command retval, modularize argument fetching.
  * FEATURE(1664): Cleanup column display code, add comments
  * FEATURE(1664): Code cleanup, fix warnings.
  * FEATURE(1664): Completed the cache_t (now functional), added richer action req flags, fixed autostart, cache loading.
  * FEATURE(1664): Count UTF-8 chars instead of bytes to fix alignment.
  * FEATURE(1664): Do not limit width if outputting to a pipe.
  * FEATURE(1664): Don't die on 'playlist' command.
  * FEATURE(1664): Drop the 'next' column in playlist by default
  * FEATURE(1664): Factor description indentation in a separate command.
  * FEATURE(1664): Factor out argument parsing into a separate function.
  * FEATURE(1664): Finished clean support for subcommands, with two dummy playlist examples. Cleaner code, too.
  * FEATURE(1664): Fix argument parsing bug, due to annoying glib parsing of flags anyway.
  * FEATURE(1664): Fix multiple bugs in parse_format.
  * FEATURE(1664): Fix small warning.
  * FEATURE(1664): Fixed the default configuration file path
  * FEATURE(1664): Generalize padding function to cleanup column display header/footer
  * FEATURE(1664): Implement playlist config command.
  * FEATURE(1664): Implemented recursive subtries to manage subcommands.
  * FEATURE(1664): Make SERVER_AUTOSTART a configuration variable
  * FEATURE(1664): More explicit help for subcommands.
  * FEATURE(1664): More framework improvements, new commands: playlist list/switch/create/rename/remove.
  * FEATURE(1664): Move print_padding to utils.c for reuse.
  * FEATURE(1664): Nicer indentation of description in command help.
  * FEATURE(1664): Old-style output for listing the playlist
  * FEATURE(1664): Quick hack to write 'alias' when dealing with aliases.
  * FEATURE(1664): Remove unneeded currid fetching in status command
  * FEATURE(1664): Set currpos to -1 in the cache if unset
  * FEATURE(1664): Support custom format for the classic playlist display
  * FEATURE(1664): added clear/shuffle/sort playlist commands, still buggy.
  * FEATURE(1835): Add Sebastien Cevey's xmmsv_t.
  * FEATURE(1835): More explicit doc about borrowed ref.
  * FEATURE(1835): Use xmmsv_t on the server instead of _cmd_value_t
  * OTHER: Add 'remove' command, with double dispatch and packing functions
  * OTHER: Add -p and -c flags to search, unsupported yet.
  * OTHER: Add Igor/greafine to AUTHORS (Summer of Code 2008 student, mentored by theefer)
  * OTHER: Add many missing xmmsc_result_unref.
  * OTHER: Add missing decodeUrl function to C++ bindings.
  * OTHER: Added backward jump.
  * OTHER: Added custom column formatter and the query function.
  * OTHER: Added dummy jump command, support for boolean flag.
  * OTHER: Added xmmsc_write_msg_to_ipc to avoid code duplication
  * OTHER: Allow --at at the end of the playlist, but error with --at 0.
  * OTHER: Broadcasts don't need to be restarted
  * OTHER: Buggy info, was releasing the BUSY lock too early.
  * OTHER: Centralize "no such command" errors in help command.
  * OTHER: Change to C-style comments.
  * OTHER: Check for error in the serialization of a return value on the server
  * OTHER: Clean nycli code, prepare for connection.
  * OTHER: Cleanup FIXMEs, fix readline I/O bug.
  * OTHER: Converted to async, use readline.
  * OTHER: Defining structures for arguments and context.
  * OTHER: Fix bugs, autostart, and add smart command-autofill.
  * OTHER: Fix documentation of next/prev flags.
  * OTHER: Fix erroneous @param in value.c doxygen
  * OTHER: Fix erroneous documentation of xmmsc_broadcast_playback_current_id
  * OTHER: Fix hanging shell when calling info with no argument.
  * OTHER: Fix int/uint swap error in CLI
  * OTHER: Fix possible overflow with long values in column display.
  * OTHER: Fix teh br0kenness. Actually, play/pause work now.
  * OTHER: Fix the quit command to always work and resume listening.
  * OTHER: Fix weird error message in CLI
  * OTHER: Fixed missing i18n-ification.
  * OTHER: Fixed move offset dance, cleaner errors on wrong params.
  * OTHER: Fixed nasty crashes, now info command works.
  * OTHER: Implemented seek.
  * OTHER: Improved alignment of flag descriptions.
  * OTHER: Improved column_display, now show position, current song, etc.
  * OTHER: Initial draft for the Korving CLI.
  * OTHER: Initial draft for the nycli 'add' command.
  * OTHER: Introduce action status for generic use of async, first draft of multiple commands, and help. Various cleanup.
  * OTHER: Major improvement of the declaration of commands.
  * OTHER: Make command -h work like help command.
  * OTHER: Make sure all commands are sent in inline mode too.
  * OTHER: Merge command_action_t and command_t.
  * OTHER: Missing i18n.
  * OTHER: More cleanup, now flags accessible easily from commands.
  * OTHER: More code cleanup in the nycli.
  * OTHER: More memory free(), reduce leaks.
  * OTHER: New jump command, added sync cache.
  * OTHER: Port vis to xmmsv
  * OTHER: Ported xmms2-mlib-updater to rv-split
  * OTHER: Preliminary structure for saving flags.
  * OTHER: Prepare auto-callback of action when the command is identified.
  * OTHER: Proper cache update, fix horrible connection bug.
  * OTHER: Refactoring cleanup so that help now works!
  * OTHER: Remove deprecated FIXME's and commented code
  * OTHER: Replace printf by g_printf, prepare i18n of texts.
  * OTHER: Replace xmmsc_coll_* by xmmsv_coll_* in the C++ bindings
  * OTHER: Simple code cleanup
  * OTHER: Simpler output for info for multiple entries, blank line separated.
  * OTHER: Simplify Dict::each and PropDict::each in C++ bindings.
  * OTHER: Simplify and clean how signals are restarted (reuse the result_t)
  * OTHER: Slightly sexier help formatting, bits of code refactoring.
  * OTHER: Splitted nycli in multiple files.
  * OTHER: Support adding file paths.
  * OTHER: nycli trie parser now works.
  * OTHER: rv-split support for xmmsclient++
  * OTHER: small NULL check cleanup.

 Thomas Frauendorfer:
  * BUG(2046): only add 'title' if pls file provides one.
  * BUG(2058): Test needed off_t size for mpg123 on unix
  * BUG(2104): make sun plugin work on netbsd
  * BUG(2105): add statfs implementation for NetBSD 3 and later
  * BUG(2150): return exitcode 1 when waf configure fails
  * OTHER: Do not include stdbool.h when building with c++ compiler
  * OTHER: Updated AUTHORS entry
  * OTHER: fix warning for handle_quit in mdns-avahi.c
  * OTHER: nanosleep is in librt on Solaris 10
  * OTHER: remove return value from void function
  * OTHER: waf ckecks need 'package' set, fix that for lastfmeta plugin

 Thomas Orgis:
  * FEATURE(1844): Added the mpg123 plugin.

 Tilman Sauerbeck:
  * BUG(2014): Make sure we kill the IPC object if xmmsc_ipc_connect() fails.
  * BUG(2015): Reworked notifier handling in xmmsc_result_t.
  * BUG(2020): Slimmed down xmms_object_t.
  * BUG(2057): Fixed xmmsv_list_clear() to not cause memory corruption.
  * BUG(2059): Free xmmsv_t instances after we sent them over the wire.
  * BUG(2060): Plugged a leak in xmms_plugin_client_list_foreach().
  * BUG(2061): Clean up xmms_sqlite_query_table() wrt GTree/xmmsv usage.
  * BUG(2062): Fixed xmmsv leaks when emitting GLists.
  * BUG(2063): Added volume control to the waveout plugin.
  * BUG(2067): Added magic spec for audio/x-scpls again.
  * BUG(2068): Fixed memory leak in xmms_medialib_entry_to_tree().
  * BUG(2069): Fixed memory leaks in IPC method call return value handling.
  * BUG(2070): xmms_playlist_current_active() returns a copied string now.
  * BUG(2075): We now don't try to g_tree_destroy(NULL) anymore.
  * BUG(2076): Querying mlib data for nonexistant entries fails now.
  * BUG(2089): Don't use MSG_DONTWAIT when reading data from the socket.
  * BUG(2113): Updated Ruby bindings to use xmmsv_coll_operands_list_get().
  * FEATURE(1835): Ported the Ruby bindings to rv-split.
  * OTHER: Added xmmsv_dict_get_size().
  * OTHER: Added xmmsv_list_set().
  * OTHER: Const correctness fix for xmms_bindata_build_path().
  * OTHER: Declared a few xmmsipc callback functions static.
  * OTHER: Don't have the GIOChannel close the client connection fd.
  * OTHER: Don't return undefined values when putting NONE xmmsvs.
  * OTHER: Fixed Ruby inspect method enabling.
  * OTHER: Fixed a const correctness bug in the airplay plugin.
  * OTHER: Fixed a typo.
  * OTHER: Fixed indentation.
  * OTHER: Fixed notifier/refcount madness related to xmmsc_result_restart().
  * OTHER: Fixed xmms_socket_invalidate() in the win32 implementation.
  * OTHER: Fixed xmmsv_decode_url().
  * OTHER: If a connection attempt fails, tell the caller about the reason.
  * OTHER: Make negative index access work in xmmsv_list_get/set().
  * OTHER: Make use of the fact that xmmsv_ref() returns its argument.
  * OTHER: Make xmmsc_result_restart() static.
  * OTHER: Move stdarg.h include to the top of the file.
  * OTHER: Reduced sizeof(xmmsc_result_t) on x86_64 by rearranging its fields.
  * OTHER: Release references to converted propdicts in the CLI.
  * OTHER: Removed a few unused variables.
  * OTHER: Removed old FIXME from xmmsv_list_clear().
  * OTHER: Removed unused IPC signal/broadcast definitions.
  * OTHER: Removed unused fields from xmmsc_connection_t.
  * OTHER: Resurrect xmmsc_result_disconnect().
  * OTHER: Simplified list-handling code in xmms_object_connect().
  * OTHER: Sort dictionaries by key to speed up lookup.
  * OTHER: Spell 'daemon' correctly.
  * OTHER: Teach print_hash about unsigned integers.
  * OTHER: The pls plugin now doesn't read the Length attribute anymore.
  * OTHER: Try to avoid xmmsv_dict_insert() corrupting the dictionary.
  * OTHER: Use memmove() to move around items in xmmsv_list_{insert,remove}.
  * OTHER: Use the bool datatype for flags in xmmsc_result_t.
  * OTHER: Use xmms_{get,free}_addrinfo in xmmsclient's vis code, too.
  * OTHER: result.c doesn't need xmmsc_strlist.h anymore.
  * OTHER: xmms_medialib_entry_to_tree is declared static now.
  * OTHER: xmmstypes doesn't need strlist anymore.

 Łukasz Michalik:
  * BUG(2018): Make Xmms::Superlist::op=() non-virtual

 Łukasz P. Michalik:
  * OTHER: Added _tell and _get_parent functions to list iterators
  * OTHER: Implement Xmms::Dict::find
  * OTHER: Reverse iterator for Xmms::List<T>



Changes between 0.4 DrKosmos+WIP+TEST3 and 0.5 DrLecter

 Release date: 2008-06-15
 Authors contributing to this release: 1
 Number of changesets: 1
 Number of files in this release: 673

 Anders Waldenborg:
  * BUG(1985): Add hack to GVFS plugin to handle local files with # sign.



Changes between 0.4 DrKosmos+WIP+TEST2 and 0.4 DrKosmos+WIP+TEST3

 Release date: 2008-06-11
 Authors contributing to this release: 3
 Number of changesets: 6
 Number of files in this release: 673

 Anders Waldenborg:
  * BUG(1982): Change default priority for file:// scheme in gvfs plugin.
  * BUG(1984): Fix returnvalue of gvfs's seek method
  * OTHER: Add note about alphabetic sort in AUTHORS.

 Florian Ragwitz:
  * BUG(1981): Make gvfs set lmod and size as int instead of string.
  * BUG(1983): Make gvfs report size for files, not directories.

 Thomas Frauendorfer:
  * BUG(1973): Change Playlist::currentPos to return Dict.



Changes between 0.4 DrKosmos+WIP+TEST1 and 0.4 DrKosmos+WIP+TEST2

 Release date: 2008-06-10
 Authors contributing to this release: 1
 Number of changesets: 1
 Number of files in this release: 673

 Anders Waldenborg:
  * OTHER: Fix ip et reports to.



Changes between 0.4 DrKosmos and 0.4 DrKosmos+WIP+TEST1

 Release date: 2008-06-10
 Authors contributing to this release: 21
 Number of changesets: 367
 Number of files in this release: 673

 Alan LaMielle:
  * FEATURE(1553): Add ability to show the name of the active playlist in the cli.

 Alexander Botero-Lowry:
  * BUG(1891): Use two arguments for coll and namespace in Reference instead of splitting
  * OTHER: add --with-pkgconfigdir to waf

 Anders Waldenborg:
  * BUG(1095): Do not require glib 2.14, but use it if present (based on Erik Massop's patch)
  * BUG(1805): Add xform_media_browse_encoded to pythonbindings.
  * BUG(1819): Fix possible out of bounds access in id3v2 plugin.
  * BUG(1823): Install pkg-config file for xmmsclient-ecore (Patch from Samuel Mendes)
  * BUG(1826): Enforce GLib version 2.8
  * BUG(1838): Add missing unlock on errorpath in playlist_clear.
  * BUG(1881): Do our own GLib version check instead of using glib_check_version
  * BUG(1887): Fix up extern "C" in mac plugin.
  * BUG(1900): Allow PropDict.sources in python bindings to be any sequence.
  * BUG(1904): Fix crash in volume setting/getting in pulseaudio plugin.
  * BUG(1935): Don't let any effect plugins pick up when the converter should.
  * BUG(1944): Compile gme with c++ compiler.
  * BUG(1978): EOS isn't an error.
  * BUG(852): Add songlengths.txt support to sid xform.
  * FEATURE(957): Add airplay output plugin.
  * OTHER: Add --with-custom-version option
  * OTHER: Add extra sanity checking to alsa plugin.
  * OTHER: Add header check for musepack wscript.
  * OTHER: Add typedef for xmmsc_io_need_out_callback_set callback.
  * OTHER: Bump plugin api versions
  * OTHER: CLI uses glib, so use g_malloc
  * OTHER: Cache result of "get next medialib id" in xmms_medialib_session_t
  * OTHER: Change python bindings wscript to use plugin instead of shlib
  * OTHER: Coding style (brace placement) fixes.
  * OTHER: Coding style fixes in nms.
  * OTHER: Every saga has a beginning (add +WIP to version)
  * OTHER: Fix error reporting when plugin missing plugin description.
  * OTHER: Fix notation of keyword arguments in python binding docstrings.
  * OTHER: Fix some function prototypes in header files.
  * OTHER: Fix some pyrex warnings.
  * OTHER: Fix speex warnings.
  * OTHER: Fix those GDestroyNotify/xmms_object_cmd_value_unref warnings.
  * OTHER: Fix xmmsclient.consts
  * OTHER: Link replaygain with libm
  * OTHER: Make segment plugin builtin.
  * OTHER: Make segment plugin initialization never fail (just passthrough on fail).
  * OTHER: Make sure headers in src/include/xmms are selfcontained.
  * OTHER: Minor GME plugin cleanups.
  * OTHER: Minor cleanup of the pyrex code in the python bindings.
  * OTHER: Minor codingstyle fixes in xform.c
  * OTHER: Move effect xform initialization in separate function (based on patch by Deng Xiyue)
  * OTHER: Only compile gme if c++ compiler is available.
  * OTHER: Remove ancient and unused dbus names of error codes.
  * OTHER: Remove const from XMMS_PLUGIN declaration because it screws up c++.
  * OTHER: Remove old unused visualisation
  * OTHER: Remove stupid casts of returnvalue of va_arg
  * OTHER: Remove unused plugin types
  * OTHER: Rewrite xmms_plugin_client_list to use xmms_plugin_foreach
  * OTHER: Rewrite xmms_plugin_find to use xmms_plugin_foreach
  * OTHER: Update nms plugin.
  * OTHER: Use provided functions to figure out if a result is a broadcast in pythonapi
  * OTHER: Use the nice xmms_ipc_msg_store_uint32 when serializing dicts  aswell
  * OTHER: Work around constness warnings in pyrex generated code.

 Bert Wesarg:
  * OTHER: Add --with-bindir configure option

 Daniel Chokola:
  * BUG(1496, 1501): support Windows 2000 and up and do explicit library and header checks
  * BUG(1856): Update Ruby wscript to recognize Ruby 1.9
  * BUG(1856): Use RSTRING_LEN and RSTRING_PTR for Ruby 1.9 compatibility.
  * BUG(1861): copy startup scripts instead of doing nothing when the os doesn't support symlinks
  * BUG(1873): don't try to install objects in pixmaps
  * BUG(1964): cast filesize to guint64 for bitrate calculation
  * OTHER: check that strdup succeeds when setting error string
  * OTHER: cleanup xmmsclient-glib
  * OTHER: delete unused playlist actions
  * OTHER: disable ET on win32
  * OTHER: fix compiler warnings about const-ness in xmmsclient++
  * OTHER: log error when a script fails to run
  * OTHER: remove duplicate XMMS_PATH_MAX from xmms_configuration.h
  * OTHER: remove some ancient ipc declarations
  * OTHER: update gme plugin copyright
  * OTHER: use xmmsc_result_iserror instead of checking for XMMS_ERROR_NONE
  * OTHER: whitespace fix in wscript

 Daniel Svensson:
  * BUG(1518,1825): Make sure avformat doesn't fail for too old/new versions.
  * BUG(1561): Add support for additional id3 tags.
  * BUG(1668): s/xmms_xform_privdata_/xmms_xform_auxdata_/g
  * BUG(1807): Use in bld.env() instead of bld.env_of_name('..') in wscripts.
  * BUG(1810): Only build xmms2core library on windows.
  * BUG(1814): Put XMMS_VERSION in xmms_configuration.h instead of a cmdline define
  * BUG(1818): Make icon an object on win32 to prevent rebuilds.
  * BUG(1876): Use xmms_error_set instead of xmms_log_fatal in xmms_ao_write.
  * BUG(1916): Emit playlist position _after_ emiting playlist insert.
  * FEATURE(1824): Add volume controls to PulseAudio.
  * OTHER: Make scary mac xform code less broken.

 Dave Moore:
  * OTHER: Added missing method Playlist::remove to C++ bindings (thanks to Dave Moore).

 Deng Xiyue:
  * BUG(1895): improve cue errorchecking by checking index for validity
  * FEATURE(1311): Add segment effect (startms/stopms handling)

 Erik Massop:
  * BUG(1095): Make xmms2d handle -h.
  * BUG(1292): Fixed a typo in cmd_status.c.
  * BUG(1566): Remove redundant "size" attribute on idlists.
  * BUG(1889): Ability to move n+1 track into playlist screws everything up.
  * BUG(1893): Fix handling of playlists to "xmms2 add" cli command.
  * BUG(1902): Allow for case-sensitive MATCH and make * and ? the wildcards
  * BUG(1905,1892): Wrap around when relatively jumping in repeat_all, emit error when relatively jumping to < 0
  * BUG(1909): Absolute paths in playlistfiles malfunction
  * BUG(1914): By default enable effects on registering
  * BUG(1914): Streamline effect-enablement
  * FEATURE(1470): Add xmmsc_playlist_add_idlist and make cli's addpls use it.
  * FEATURE(1471): xmms2 addpls does not take a medialib playlist name
  * OTHER: Create collquery-aliases in a possibly more efficient order.
  * OTHER: Fix a warning introduced in 01c0fceed53e6ead28fdadc354024fd6c495e017
  * OTHER: Improve Sqlite indices, and make sure they can be used.
  * OTHER: Use GINT_TO_POINTER for a forgotten cast.
  * OTHER: Use subqueries for ordering instead of LEFT JOINs.

 Florian Ragwitz:
  * BUG(1831): Warn if the perl archdir isn't inside the install prefix.
  * BUG(1831): Warn if the python libdir isn't inside the install prefix.
  * BUG(1831): Warn if the ruby archdir isn't inside the install prefix.
  * BUG(1831): Warn if the ruby libdir isn't inside the install prefix.
  * BUG(1836): Run ldconfig with the lib prefix.
  * BUG(1855): Bind bindata_list to c++.
  * BUG(1855): Bind bindata_list to perl.
  * BUG(1855): Bind bindata_list to python.
  * BUG(1855): Bind bindata_list to ruby.
  * BUG(1855): Implement bindata_list.
  * BUG(1855): Make bindata_list accessable from the clientlib.
  * BUG(1937): Refactor xmms_file_browse.
  * FEATURE(1927): Add name and priority to streamtypes.
  * FEATURE(1927): Make indata priorities configurable via config.
  * FEATURE(1927): Use streamtype priorities to set up the chain.
  * FEATURE(1961): gvfs plugin.
  * OTHER: Add license/copyright exception for ppport.h.
  * OTHER: Another try on implementing perl constant mapping.
  * OTHER: Avoid timesplayed = -1 in mlib.
  * OTHER: Bind bindata_remove to ruby.
  * OTHER: Bind more constants to perl.
  * OTHER: Bind playback_status constants to perl.
  * OTHER: Bump the libxmmsclient SOVERSION to 4.0.0.
  * OTHER: Bump the libxmmsclient++ SOVERSION to 3.0.0.
  * OTHER: Bump the perl bindings version to 0.04.
  * OTHER: Document toggleplay in the cli manpage.
  * OTHER: Don't croak on accessing propdicts with non-existing keys.
  * OTHER: Don't use the deprecated g_io_channel_close.
  * OTHER: Don't use the deprecated g_str{,n}casecmp.
  * OTHER: Fix a POD error in XMMSClientResult.xs.
  * OTHER: Fix some compilation warnings in the perl bindings.
  * OTHER: Fix some formatting in COPYING.
  * OTHER: Fix typo on pulse backend.
  * OTHER: Indenting fix for output.c.
  * OTHER: Make plugin obj.sources a list.
  * OTHER: Make the perl propdict results values overwritable.
  * OTHER: POD fix, making xmmsc_medialib_move_entry available.
  * OTHER: Relicense the samba plugin under GPL >= 2.
  * OTHER: Small simplification to the perl bindings.
  * OTHER: Update AUTHORS email address for Sebastian Noack.
  * OTHER: Update XMMS2 Team copyright statments for 2008.
  * OTHER: Update copyright statements for the perl bindings.
  * OTHER: Update ppport.h.
  * OTHER: Upgrade ppport.h to version 3.14.
  * OTHER: Use g_get_current_time instead of time(2).
  * OTHER: Whitespace fix in src/clients/cli/cmd_coll.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_coll.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_coll.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_coll.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_coll.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_coll.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_coll.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_coll.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_coll.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_coll.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_config.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_mlib.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_mlib.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_mlib.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_mlib.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_mlib.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_mlib.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_mlib.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_mlib.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_mlib.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_other.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_other.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_playback.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_playback.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_playback.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_playback.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_playback.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_playback.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_pls.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_status.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_status.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_status.c.
  * OTHER: Whitespace fix in src/clients/cli/cmd_status.c.
  * OTHER: Whitespace fix in src/clients/cli/common.c.
  * OTHER: Whitespace fix in src/clients/cli/common.c.
  * OTHER: Whitespace fix in src/clients/cli/common.c.
  * OTHER: Whitespace fix in src/clients/cli/common.c.
  * OTHER: Whitespace fix in src/clients/cli/common_unix.c.
  * OTHER: Whitespace fix in src/clients/cli/main.c.
  * OTHER: Whitespace fix in src/clients/cli/main.c.
  * OTHER: Whitespace fix in src/clients/cli/main.c.
  * OTHER: Whitespace fix in src/clients/cli/main.c.
  * OTHER: Whitespace fix in src/clients/cli/main.c.
  * OTHER: Whitespace fix in src/clients/et/xmms2-et.c.
  * OTHER: Whitespace fix in src/clients/lib/xmmsclient-cf/xmmsclient-cf.c.
  * OTHER: Whitespace fix in src/clients/lib/xmmsclient-cf/xmmsclient-cf.c.
  * OTHER: Whitespace fix in src/clients/lib/xmmsclient-cf/xmmsclient-cf.c.
  * OTHER: Whitespace fix in src/clients/lib/xmmsclient-cf/xmmsclient-cf.c.
  * OTHER: Whitespace fix in src/clients/mdns/avahi/mdns-avahi.c.
  * OTHER: Whitespace fix in src/clients/mdns/avahi/mdns-avahi.c.
  * OTHER: Whitespace fix in src/clients/mdns/avahi/mdns-avahi.c.
  * OTHER: Whitespace fix in src/clients/mdns/avahi/mdns-avahi.c.
  * OTHER: Whitespace fix in src/clients/mdns/avahi/mdns-avahi.c.
  * OTHER: Whitespace fix in src/clients/mdns/dns_sd/mdns-dnssd.c.
  * OTHER: Whitespace fix in src/clients/mdns/dns_sd/mdns-dnssd.c.
  * OTHER: Whitespace fix in src/clients/mdns/dns_sd/mdns-dnssd.c.
  * OTHER: Whitespace fix in src/clients/mdns/dns_sd/mdns-dnssd.c.
  * OTHER: Whitespace fix in src/plugins/mad/mad.c.
  * OTHER: Whitespace fix in src/plugins/normalize/normalize.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/backend.c.
  * OTHER: Whitespace fix in src/plugins/pulse/pulse.c.
  * OTHER: Whitespace fix in src/plugins/pulse/pulse.c.
  * OTHER: Whitespace fix in src/plugins/pulse/pulse.c.
  * OTHER: Whitespace fix in src/plugins/pulse/pulse.c.
  * OTHER: Whitespace fix in src/plugins/pulse/pulse.c.
  * OTHER: Whitespace fix in src/plugins/pulse/pulse.c.
  * OTHER: Whitespace fix in src/xmms/playlist.c.
  * OTHER: Whitespace fix in src/xmms/playlist.c.
  * OTHER: Whitespace fix in src/xmms/playlist.c.
  * OTHER: Whitespace fix in src/xmms/plugin.c.
  * OTHER: Whitespace fix in src/xmms/plugin.c.
  * OTHER: Whitespace fix in src/xmms/sample.head.c.
  * OTHER: Whitespace fix in src/xmms/sqlite.c.
  * OTHER: Whitespace fix in src/xmms/xform.c.
  * OTHER: Whitespace fix in src/xmms/xform.c.

 Hugh Davenport:
  * BUG(1809): The ALSA mixer index is now configurable.

 Jonne Lehtinen:
  * BUG(1728): Check if the CD has been ejected before trying to read.
  * BUG(1965): Change Playlist::broadcastCurrentPos to use DictSignal.
  * OTHER: Change ReaderStatus value extraction to use int instead of uint.
  * OTHER: Fix some incompatible pointer warnings.

 Juho VÀhÀ-Herttua:
  * BUG(1817): Import change from libasf fixing potential buffer overflow on some video files.
  * FEATURE(1938): Karaoke plugin for voice removal from tracks.
  * OTHER: Enable seeking with wma files.
  * OTHER: If curl plugin finishes with an error, print the error message.
  * OTHER: Link mp4 plugin to libm to make it work on systems that require it.
  * OTHER: Synchronize the libasf library with latest upstream svn version (r64).
  * OTHER: Update outdated personal description.

 Lucas Adam M Paul:
  * FEATURE(1438): Added GME plugin to support SPC/NSF/GBS files

 Martin Salzer:
  * BUG(1960): normal playlist_current_pos returns now the same result as its broadcast-version

 Sebastian Noack:
  * OTHER: Added PGP fingerprint for Sebastian Noack (wallunit).

 Sebastian Woetzel:
  * BUG(1862): Added broadcast_collection_changed and the COLLECTION_CHANGED_* constants

 Sebastien Cevey:
  * BUG(1723): Changed PLAYLIST_CURRENT_POS broadcast to return a dict containing position and playlist name.
  * BUG(1804): Bind xmmsc_medialib_entry_status_t in bindings (C++, python, ruby).
  * BUG(1907): Allow 'All Media' as pshuffle input.
  * FEATURE(1890): Playlist current_active missing in Ruby bindings.
  * OTHER: Add boundary check in coll_idlist_remove, removed check in server.
  * OTHER: Do not emit PLAYLIST_LOADED signal if loading the active playlist.
  * OTHER: Fix collparsing bug with single-letter property filters.
  * OTHER: Fix collparsing bug with trailing spaces.
  * OTHER: Fix leaks with coll_read_collname.

 Tilman Sauerbeck:
  * BUG(1748): Properly tell the daemon about the formats that we support.
  * BUG(1821): Fixed medialib insertion of our sample track.
  * BUG(1822): Properly emit entry_added broadcasts when using the radd command.
  * BUG(1839): Start the client thread _after_ the client has been registered.
  * BUG(1840): Fixed memory leaks in the error path of xmmsc_ipc_exec_msg().
  * BUG(1842): Fixed a memory leak in xmms_object_emit_f().
  * BUG(1843): Fixed another collection parser leak.
  * BUG(1847): Fixed the signature of xmmsc_result_get_dict_entry_string().
  * BUG(1848): xmmsc_result_get_string() takes a _const_ char** now.
  * BUG(1850): Added return values to xmmsc_{result,coll,}ref().
  * BUG(1851): Fixed a few memory leaks in process_dir().
  * BUG(1852): Optimized the list handling in xmms_medialib_add_recursive().
  * BUG(1853): Don't use g_list_append() in xmms_medialib_entry_to_list().
  * BUG(1854): Handle xmms_object_cmd_value_t resources on the sqlite side only.
  * BUG(1854): Made xmms_object_cmd_value_t refcounted.
  * BUG(1854): Moved the allocation of 'row' outside the loop.
  * BUG(1857): xmms_ipc_msg_put_*() return offsets into the message buffer now.
  * BUG(1858): Improved xmms_ipc_handle_cmd_value's LIST/PROPDICT handling.
  * BUG(1859): Don't copy the default sources for every result.
  * BUG(1859): Reworked xmmsc_source_preference_get().
  * BUG(1859): Store results' prefered sources in a char* array.
  * BUG(1867): Fixed a memory leak in the plugin_list command.
  * BUG(1868): Kill a very serious case of a pascalesque loop.
  * BUG(1875): Fix leak in cue plugin.
  * BUG(1877): Removed the gnome-vfs xform.
  * BUG(1896): Made the config object use a BST instead of a hashtable.
  * BUG(1937): Use fstatat() in xmms_file_browse().
  * BUG(1940): Support nested sections in config.c:dump_tree().
  * BUG(1941): Cleaned up load_config().
  * BUG(1942): Ported the Speex plugin to the xform API.
  * BUG(1952): Properly free 'in_types' in xmms_xform_plugin_destroy().
  * BUG(1953): Fixed two memory leaks in xmms_collection_dag_restore().
  * BUG(1954): Properly free lists in xmms_playlist_{add,insert}_collection().
  * BUG(1958): Made the _DICT IPC type use GTree instead of GHashTable.
  * OTHER: Added a typedef for the client disconnect callback.
  * OTHER: Added missing license header to nulstripper.c.
  * OTHER: Added xmms_strlist_copy().
  * OTHER: Allocate another small buffer on the stack instead of the heap.
  * OTHER: Another bunch of const correctness fixes.
  * OTHER: Applied the prepend & reverse thing to xmmsc_deserialize_dict().
  * OTHER: Cleaned up xmmsc_ipc_result_unregister().
  * OTHER: Code cleanup.
  * OTHER: Constified some arrays.
  * OTHER: Declared chain_setup() static.
  * OTHER: Document why we have to free the xmmsc_result_decode_url() retval.
  * OTHER: Don't set the "size" property on directories anymore.
  * OTHER: Don't use strlen() to find out whether a string is empty or not.
  * OTHER: Don't use x_malloc0() in xmms_ipc_msg_get_{str,bin}_alloc().
  * OTHER: Fixed a double free in xmms_collection_media_filter_match().
  * OTHER: Fixed a memory leak in prepend_key_string().
  * OTHER: Fixed a memory leak in xmms_collection_media_filter_match().
  * OTHER: Fixed memory leaks in list code in object.c.
  * OTHER: Fixed my AUTHORS entry.
  * OTHER: Formalize a maximum length for plugins' "shortnames".
  * OTHER: Hooked up the read and seek methods to xmms_xform_read/seek directly.
  * OTHER: In process_dir(), destroy the list as we iterate it.
  * OTHER: In stats(), don't duplicate static hash table keys.
  * OTHER: Initialize coll_query_alias_t's id.
  * OTHER: Killed a silly g_strdup_printf() user.
  * OTHER: Made source_pref constant.
  * OTHER: Made the "hex" string constant, so it can be put in ro memory.
  * OTHER: Made xmmsc_coll_prop_short constant and declare it static, too.
  * OTHER: Moved coll_autofilter to coll_parse_autofilter().
  * OTHER: Moved the prototype of xmmsc_result_run() to the private header file.
  * OTHER: Pass -1 to g_utf8_strdown() instead of calling strlen() ourselves.
  * OTHER: Properly tear down the plugin list in xmms_plugin_shutdown().
  * OTHER: Removed another unneeded g_strdup_printf() call.
  * OTHER: Removed the declaration for the nonexistant xmms_ipc_msg_append().
  * OTHER: Removed two g_strdup_printf() calls.
  * OTHER: Removed unused function tree_bytes_max_needed().
  * OTHER: Replace g_strdup_printf() by g_snprintf() in a couple of places.
  * OTHER: Reuse the list in xmms_collection_query_ids().
  * OTHER: Set methods.read to xmms_xform_read directly instead of wrapping it.
  * OTHER: Split xmmsc_result_dict_lookup() into two smaller functions.
  * OTHER: Style fix and const cleanup.
  * OTHER: The config object now stores the config filename.
  * OTHER: Tweaked list handling in xmms_object_{emit,cleanup}.
  * OTHER: Tweaked source_match_pattern() to not use g_strsplit() anymore.
  * OTHER: Tweaked xmms_stream_type_parse().
  * OTHER: Use g_new0() where applicable in the daap xform.
  * OTHER: Use g_string_append_c() instead of g_string_append() if possible.
  * OTHER: Use xmms_object_cmd_value_unref() instead of g_free().
  * OTHER: Various const-vs-non-const cleanups.
  * OTHER: sizeof(gchar) == 1, mmhkay?
  * OTHER: xmms_ipc_client_t's thread field is unused, so kill it.
  * OTHER: xmms_plugin_init()'s argument is const.
  * OTHER: xmmsc_strlist.h needs stdarg.h.

 Tobias Rundstrom:
  * OTHER: Updated my PGP key fingerprint

 andersg@0x63.nu:
  * Don't use PYTHON in pyext/pyembed uselib, it is already copied into them
  * Make python extension modules use plugin type. Pick up suffix from distutils



Changes between DrJekyll+WIP+TEST1 and DrJekyll+WIP+TEST2

 Release date: 2007-11-13
 Authors contributing to this release: 2
 Number of changesets: 4
 Number of files in this release: 558

 Anders Waldenborg:
  * BUG(1808): Fix crash in normalize when read fails

 Florian Ragwitz:
  * BUG(1813): Fix perl binding installation.
  * OTHER: Bump up SOVERSIONs for libxmmsclient and libxmmsclient++.
  * OTHER: Make manpages NAME sections parsable by mandb.



Changes between 0.2 DrJekyll and DrJekyll+WIP+TEST1

 Release date: 2007-11-10
 Authors contributing to this release: 27
 Number of changesets: 241
 Number of files in this release: 558

 Alexander Botero-Lowry:
  * BUG(1569): Include method signatures in the docstrings for the Python bindings

 Anders Waldenborg:
  * Actually check ipc protocol version serverside
  * BUG(1369): Remove outdated documentation and code from plugin.c
  * BUG(1369): Update documentation for xmms_plugin_foreach
  * BUG(1385): Don't start mixer thread if output fails to init.
  * BUG(1386): Fix crash changing lastfmeta.recordtoprofile config
  * BUG(1479): split out os-dependent code for find_terminal_width in CLI
  * BUG(1528): Fix crash changing ipc socket.
  * BUG(1533): Better error reporting on bad urls in daap.
  * BUG(1533): Set isdir flag correctly in daap server browse.
  * BUG(1570): Fix kwargs handling of syncwrapper in python bindings.
  * BUG(1586): Try to find -st and -mt variants of boost_signals lib.
  * BUG(1622): Change xmmsc_playlist_addarg not to check the url again.
  * BUG(1642): Fix playlist position to be updated on insert
  * BUG(1710): Fix memleak in pythonbindings
  * BUG(1711): Python module should not have "lib" prefix.
  * BUG(1713): Proper unicode handling for collection names in pythonbinding
  * BUG(1717): Fix double-free when parsing fails in libasf
  * BUG(1721): Fix assertion when seeking misses too much.
  * BUG(1734): Handle EOF correctly in curl
  * BUG(1740): Update waf to 1.2.0
  * BUG(1747): Fix oss to correctly link against libossaudio where needed
  * BUG(1757): Avoid locking order reversal causing sqlite busy event
  * BUG(1759): Improve error message
  * BUG(1775): Fix xmms_config_property_callback_remove to take userdata arg
  * BUG(1785): Only wake mediainfo thread on new entries.
  * BUG(1786): Fix memleaks when an xform's init method fails
  * BUG(1788): Fix crash when converter fails to init.
  * BUG(1799): Fix compilation of rubybindings on osx
  * BUG(1803): Remove useless signedness qualifiers from python bindings.
  * BUG(620): Remove XMMS_OS_xyz.
  * BUG(620): Remove strange XMMS_OS_DARWIN check in xmmsclientpriv/xmmsclient.h
  * BUG(848): Cleanup PulseAudio output plugin
  * BUG(848): Don't leak a pulse client on every stop.
  * BUG(848): Fix format setting in pulse
  * FEATURE(1666): Cleanup normalize plugin
  * FEATURE(1715): Store "description" from flac comment.
  * FEATURE(1787): New jack plugin
  * FEATURE(486): Make preamp configurable in replaygain.
  * FEATURE(943): Let output plugins handle any samplerate
  * FEATURE(972): Extract coverart in FLAC files.
  * Fix error handling on hello ipc method.
  * OTHER: Add some email addresses in AUTHORS
  * OTHER: Carry over doc and func_name in python syncwrapper.
  * OTHER: Clean up the add_install_flag wscript thing.
  * OTHER: Don't try to install sid intermediate object
  * OTHER: Fix waf installation paths after 1.1.1 upgrade.
  * OTHER: Fix warning in xmmsclient.c
  * OTHER: Make flac plugin write directly into GString buffer.
  * OTHER: Make rubybindings compile on osx
  * OTHER: Make sure pointer passed to xmmsc_result_get_uint is big enough in cmd_playlist.c
  * OTHER: Make sure static xmms2core lib isn't installed.
  * OTHER: Minor coding style cleanups.
  * OTHER: Minor whitespace cleanups in asf plugin
  * OTHER: My lastname is now Waldenborg
  * OTHER: Print error message with xmms_log_error not XMMS_DBG
  * OTHER: Print warning when unreffing object without references
  * OTHER: Remove bad unref in xmms_plugin_destroy
  * OTHER: Remove unused argument from process_msg in ipc.c
  * OTHER: Remove useless imports in wscripts
  * OTHER: Revert old behaviour where server don't respect XMMS_PATH
  * OTHER: Simplify sid wscript
  * OTHER: Use g_platform in wscripts
  * OTHER: Use waf stuff to build perl bindings
  * OTHER: Use waf stuff to build python extensions.. Use environment variable 'PYTHONDIR' instead of --with-python-archdir
  * OTHER: Workaround waf-1.1.1 strangness where plugin_PREFIX must be called shlib_PREFIX
  * PRIVATE: Add +WIP to version.
  * PRIVATE: Update to waf-1.1.1

 Andrew Ruder:
  * BUG(1525): Handle XMMS_PATH in clientlib.

 Armando Jagucki:
  * FEATURE(1492): Add medialib_remove_entry to pythonbindings.

 Auke Schrijnen:
  * BUG(1502): replace mkdir with portable g_mkdir_with_parents in diskwrite
  * BUG(1504): build dns_sd on win32

 Daniel Chokola:
  * BUG(1190): Make plugin path relative on Windows.
  * BUG(1475): remove unused pthread include
  * BUG(1478): allow mp4 plugin to build on MinGW
  * BUG(1480): install libxmms2core.dll on win32
  * BUG(1481): define x_realpath and x_path2url for cross-platform use
  * BUG(1487): set priority for waveout output
  * BUG(1503): link FLAC plugin with winsock2 on win32
  * BUG(1521): link cdda with winmm on win32
  * BUG(1522): link curl with winsock2 on win32
  * BUG(1567): pass block to on_disconnect method using Sync or Async class
  * BUG(1571): add xmmsc_result_source_preference_get
  * BUG(1575): link ices with winsock2 on win32
  * BUG(1594): Provide XMMS2 logo in Git.
  * BUG(1595): Added XMMS2 logo to Doxygen output. It looks sexy.
  * BUG(1606): check for a C++ compiler before building xmmsclient++-glib
  * BUG(1654): show toplevel xmmsclient documentation
  * BUG(1686): Ruby: bind COLLECTION_CHANGED constants
  * BUG(1736): Ruby: bind xmmsc_medialib_entry_move
  * BUG(1751): remove old effect plugin files
  * BUG(1756): fix and add priorities for all output plugins
  * BUG(743): Ruby: bind xmmsc_result_source_preference_get
  * OTHER: Ruby: bind XMMS_PLAYLIST_CHANGED_UPDATE
  * OTHER: Ruby: document userconfdir and decode_url
  * OTHER: Ruby: fix typo (io_need_out -> io_on_need_out)
  * OTHER: Ruby: remove lib prefix on extensions
  * OTHER: disable launcher on win32
  * OTHER: fix typing error in xmmsc_plugin_list
  * OTHER: fix typo in medialib doxygen
  * OTHER: fix warning from -fPIC on MinGW
  * OTHER: re-add xmmsc_medialib_select prototype in xmmspriv
  * OTHER: read files in binary mode when calculating SHA-1
  * OTHER: untabify waftools/* to comply with PEP-8
  * OTHER: use g_platform in top wscript

 Daniel Kaminski:
  * BUG(1687): Added Ruby binding for xmmsc_broadcast_playlist_loaded().

 Daniel Kamiński:
  * BUG(1678): Ruby: bind xmmsc_iserror and xmmsc_get_error
  * BUG(1679): Ruby: bind xmmsc_coll_parse

 Daniel Svensson:
  * BUG(1548): Accept multiple occurances of --conf-prefix=...
  * BUG(1582): Add proper locking to samba xform.
  * BUG(1593): Link xmms2.exe and xmms2d.exe to xmms2.ico on win32.
  * BUG(1616): Get rid of data->hwparams and data->buffer_size
  * BUG(1667): Get values by reference with xmms_xform_metadata_get_int/str.
  * BUG(1724): Remove the use of Params.g_platform from build() methods.
  * BUG(1726): s/g_platform/Params.g_platform/g
  * BUG(1727): Add --with-target-platform to waf
  * BUG(1792): Replace types with glib ones in normalize xform.
  * BUG(765): synchronous STOP when shutting down internal output worker thread.
  * BUG(932): make xmms2 cli set duration to 0 if duration is not known.
  * OTHER: Add support for setting pkg-config ${prefix} by environment
  * OTHER: Add various win32 crosscompile variable initiations
  * OTHER: Backport pkg-config variable define patch (r1514) from waf svn
  * OTHER: Coding style fixes for long long xmms_xform_metadata_* lines.
  * OTHER: Documentation for outputplugin.c
  * OTHER: Fix the remaining threading issues in samba xform
  * OTHER: Make all waf configure methods return True unless fail.
  * OTHER: OutputPlugin documentation
  * OTHER: Prepend instead of append additional configuration prefixes.
  * OTHER: Remove daap g_platform check and always uselib 'socket'
  * OTHER: Remove implicit build() g_platform dependency from tool.py
  * OTHER: Reverse 'explicit_dnssd' flag.
  * OTHER: Sane oses are case-sensitive take two.
  * OTHER: Sane oses are case-sensitive.
  * OTHER: Try detecting curl with pkg-config first.
  * OTHER: Try detecting mad with pkg-config
  * OTHER: Update waf to waf r1421
  * OTHER: outputplugin.c coding style updates
  * OTHER: xform.c coding style updates.

 David Anderson:
  * BUG(1463): Reorganize ices.c to conform to the common plugin conventions.
  * BUG(1463): Rewrite ices plugin to not leak memory, handle flushing properly, and be more xmms specific.
  * BUG(848): Add a PulseAudio output plugin.

 Florian Ragwitz:
  * BUG(1068): Don't update last_started and timesplayed when rehashing.
  * BUG(1660): Install logos.
  * BUG(1720): Bind XMMS_PLAYLIST_CHANGED_UPDATE to python.
  * BUG(1762): Fix a warning compiling perl bindings.
  * Make Audio::XMMSClient::Sync's can() method fall back to UNIVERSAL::can.
  * OTHER: Allow coll attributes to be queried from perl.
  * OTHER: Assert some invalid xmmsclient usage in the perl bindings.
  * OTHER: Bind source_preference_get to perl.
  * OTHER: Bind xmmsc_coll_sync to perl.
  * OTHER: Bind xmmsc_medialib_entry_move to perl.
  * OTHER: Document Audio::XMMSClient.
  * OTHER: Document Audio::XMMSClient::Glib.
  * OTHER: Document the Audio::XMMSClient methods implemented in perl.
  * OTHER: Document the perl bindings license in COPYING.
  * OTHER: Documentation for Audio::XMMSClient::Collection.
  * OTHER: Documentation for Audio::XMMSClient::Playlist.
  * OTHER: Documentation for Audio::XMMSClient::Result.
  * OTHER: Don't dump core on fatal errors.
  * OTHER: Don't handle XMMS_PATH in the perl bindings as the clientlib does that now.
  * OTHER: Fix a type in src/clients/lib/xmmsclient/medialib.c docs.
  * OTHER: Fix documentation typo in src/clients/lib/xmmsclient/playlist.c.
  * OTHER: Fix memory corruption due to collection wrapper ref counting.
  * OTHER: Fix several perl binding issues.
  * OTHER: Fix some rss parsing inaccuracies.
  * OTHER: Fix some xspf parsing inaccuracies.
  * OTHER: Make the perl bindings more portable on different perls.
  * OTHER: More documentation for Audio::XMMSClient.
  * OTHER: Remove some tailing whitespace.
  * OTHER: Remove some tailing whitespace.
  * OTHER: Remove some tailing whitespace.
  * OTHER: Remove user_data from Audio::XMMSClient::request.
  * OTHER: Simplify some perl binding internals.
  * OTHER: croak when the object to be converted isn't derived by the class we expect.
  * OTHER: don't pass 0 pointers to xmmsc when we fail to convert perl values.
  * Remove some tailing whitespaces from the perl bindings.

 Georg Wacker:
  * BUG(1650): add group parameter to coll_query_info documentation

 Javeed Shaikh:
  * FEATURE(1666): Added normalize effect plugin

 Jonne Lehtinen:
  * BUG(1601): Fix assertations on cdda seeking.
  * BUG(1624): fix unresolved symbol in C++ bindings.
  * BUG(1806): Made a config value for ANALYZEing the DB on startup.

 Juho VÀhÀ-Herttua:
  * BUG(1485): Separate checking for root user from main.c for portability.
  * BUG(1485): Separate the symlink_file function from main.c for portability.
  * BUG(1674): Fix faad plugin with HE AAC files and certain libfaad versions.
  * BUG(1772): Apply upstream patch of libasf utf-8 bug to xmms2 branch.
  * FEATURE(1669): Add still a bit experimental libasf plugin.
  * OTHER: Add MusicBrainz support to ASF plugin.
  * OTHER: Add Sebastian Noack to AUTHORS file.
  * OTHER: Fix most compile time warnings on x86-64 platform.
  * OTHER: Fix printf formatting warnings with %lld and x64-64.
  * OTHER: Initialize IO channels better and handle HUP as disconnect. (Windows)
  * OTHER: Make avcodec fail if there's no decoder data available.
  * OTHER: Move all platform dependent stuff into "compat" subdirectory.

 Martin Salzer:
  * BUG(1520): Allow the cli to query single config values.
  * BUG(1663): properly sort on multiple attributes when there is a missing attribute
  * FEATURE(1620): Allow sorting in reverse order

 Robin Lee Powell:
  * FEATURE(1698): Added the xmmsc_medialib_move_entry to update an entry path.
  * FEATURE(1707): Added a coll_sync command.

 Sadrul Habib Chowdhury:
  * BUG(1774): Improve error reporting in lastfm plugin.
  * BUG(1782): Fix crash on icecast errors.

 Sebastian Noack:
  * BUG(1771): Added support of "WM/TrackNumber" extended content descriptor entry.

 Sebastien Cevey:
  * BUG(1670): collparser fails to parse unary operator (reference, complement).
  * BUG(1671): collparser fails to parse groups (parentheses)
  * BUG(1672): collparser crashes when parsing number sequences.
  * BUG(1673): As anders gusta^Wwaldenborg said, this commit fixes the fact that CLI escapes spaces/parentheses/quotes incorrectly for patterns.
  * BUG(1719): bind xmmsc_playlist_{add,insert}_collection in python.
  * BUG(1777): Fix collection attributes never freed.
  * FEATURE(1707): Added a coll sync command to the CLI.
  * FEATURE(1722): Added the xmmsc_coll_operand_list_clear function.
  * OTHER: Bind xmmsc_medialib_move_entry in xmmsclient++.
  * OTHER: Clarify documentation for xmmsc_coll_operand_list_entry.
  * OTHER: Improve doc of xmmsc_coll_universe.
  * OTHER: Minor fix in collparser.

 Tilman Sauerbeck:
  * BUG(1712): Use pkg-config to detect ecore.
  * OTHER: Don't export a few functions in mp4.c
  * OTHER: Don't export id3_genres.
  * OTHER: Fixed a bunch of const correctness issues.
  * OTHER: Marked misc tables as constant.
  * OTHER: More const correctness fixes.
  * OTHER: Plugin description data is constant.
  * OTHER: Ruby: don't unref NULL xmms_client_t
  * OTHER: id3 genre tables are pretty constant, too.

 Tim Schumacher:
  * BUG(1479): find real terminal width on win32

 Tobias Rundstrom:
  * BUG(1703): Remove xmmsc_medialib_select from client and server
  * BUG(1706): Added --with-libdir to configure
  * BUG(1768): Split sqlite_open to sqlite_open and sqlite_create
  * BUG(1801): Adjust output priority.
  * OTHER: Add -multiply_defined supress on osx.
  * OTHER: Compile CoreFoundation bindings
  * OTHER: Fix OSX plugin loading.
  * OTHER: Fix osx plugin suffix.
  * OTHER: Update the indexes for collections.
  * OTHER: run analyze on startup.

 Tobias Rundström:
  * BUG(1778): Fix crash in mac plugin on files without ape tag

 Ugo Riboni:
  * OTHER: Added Ugo Riboni to AUTHORS
  * OTHER: Update nms plugin to version running in neuros firmware.

 andersg@0x63.nu:
  * Add new perl tool
  * Fix perl tool to give correct CFLAGS when compiling extensions
  * Restore LIBPATH_uselib to previous value when library_configurator fails.
  * g++ tool wants CXXFLAGS, not CCFLAGS

 tnagy1024:
  * Obvious typo.



Changes between DrI+WIP+TEST5 and 0.2 DrJekyll

 Release date: 2007-05-20
 Authors contributing to this release: 1
 Number of changesets: 3
 Number of files in this release: 509

 Alexander Botero-Lowry:
  * BUG(1563): bind xmmsc_coll_parse in python bindings and add it to xmmsclient.collections
  * BUG(1564): when making the operands list in create_coll, call xmmsc_coll_ref on the operand colls
  * FEATURE(1535): CollectionsOperands now mimics a list and CollectionsAttributes now mimics a dict



Changes between DrI+WIP+TEST4 and DrI+WIP+TEST5

 Release date: 2007-05-12
 Authors contributing to this release: 2
 Number of changesets: 9
 Number of files in this release: 509

 Alexander Botero-Lowry:
  * BUG(1541): add playlist_current_active to the Python bindings
  * BUG(1545): Fix sid plugin to properly check for the resid-builder

 Anders Gustafsson:
  * BUG(1517): Use different names for boost signal headers and lib so they don't get miscached.
  * BUG(1549): Fix fd-leak when daap xform can't connect to server.
  * BUG(1550): Fix recursive medialib session with mlib remove and pshuffle playlist.
  * BUG(1557): Fix PShuffle in python bindings.
  * BUG(1558): Fix race on client disconnect.
  * BUG(1559): Use mandantory=0 in all check_library2 plugin wscripts.
  * OTHER: Revert "OTHER: Force curl to HTTP version 1.0."



Changes between DrI+WIP+TEST3 and DrI+WIP+TEST4

 Release date: 2007-05-02
 Authors contributing to this release: 10
 Number of changesets: 23
 Number of files in this release: 509

 Alexander Botero-Lowry:
  * BUG(1392): Update the xmms2(1) manual page to reflect the Playlist refactoring and Collections

 Anders Gustafsson:
  * BUG(1526): Emit the real playlist name in playlist_changed broadcast (based on Sebastien Cevey's patch)

 Daniel Chokola:
  * BUG(1529): link DAAP to dnssd on non-Darwin systems

 Daniel Svensson:
  * BUG(1490): sun plugin fix
  * OTHER: Added Rainer Wittmaack to AUTHORS.

 Erik Massop:
  * BUG(1542): Upcoming attribute does not do what it is meant to do
  * OTHER: Fix some typos and clarify some points in the xmms2(1) manpage

 Florian Ragwitz:
  * OTHER: Fix documentation for xmms2 seek.
  * OTHER: Fix perl binding compilation warnings on 64bit platforms.
  * OTHER: Only use __attribute__((deprecated)) where available.

 Georg Schild:
  * BUG(1510): Fix medialib-updater to use collections instead of mlib-select

 Sebastien Cevey:
  * BUG(1483): cli hangs with no playlist loaded

 Tilman Sauerbeck:
  * BUG(1534): Added some argument checks for Collection instances.
  * BUG(1536): Collection#attributes is now perfectly writable.
  * BUG(1537): Fixed a potential segfault in xmmsc_coll_attribute_get().
  * BUG(1539): Implemented Collection#union, intersect, complement in Ruby.
  * BUG(1540): Implemented Collection::Operands.
  * OTHER: Added a rough implementation of Playlist#add_collection.
  * OTHER: Improved documentation for xmmsc_coll_attribute_get().
  * OTHER: Playlist#add_collection accepts the "order" argument now.
  * OTHER: Simplified Attributes#has_key?.

 Tobias Rundstrom:
  * FEATURE(1547): Check libcurl for broken versions during runtime
  * OTHER: Force curl to HTTP version 1.0.



Changes between DrI+WIP+TEST2 and DrI+WIP+TEST3

 Release date: 2007-04-10
 Authors contributing to this release: 12
 Number of changesets: 39
 Number of files in this release: 508

 Alexander Botero-Lowry:
  * BUG(1458): add playlist_create to python bindings
  * BUG(1459): add callback argument to playlist_remove in python bindings

 Algardas Pelakauskas:
  * BUG(1467): add radd binding

 Anders Gustafsson:
  * BUG(1465): Hide "fatal: Not a git repository" error message.
  * BUG(1472): Fix crash when buffering more than READ_CHUNK*2 bytes for hotspots in xform.

 Daniel Chokola:
  * BUG(1499): bind medialib_remove_entry
  * OTHER: add Algardas to AUTHORS
  * OTHER: add Auke to AUTHORS

 Daniel Svensson:
  * BUG(1457): Update xmms2-launcher manpage to tell the new log-file location.
  * BUG(1460): Check for basesstring, not str, in medialib_property_set.
  * BUG(188): Add toggle play/pause command to xmms2 cli.

 Erik Massop:
  * BUG(1455): Fix installation of pkgconfig files and manpages.
  * OTHER: Use spaces for indenting in waftools/pkgconfig.py.

 Florian Ragwitz:
  * OTHER: Add Audio::XMMSClient::Playlist for better playlist handling.
  * OTHER: Add waf-lightc to .gitignore.
  * OTHER: Default to $0 if no clientname is given.
  * OTHER: Don't bind medialib_select to perl.
  * OTHER: Expose xmmsc_ref to the clientlib api.
  * OTHER: Fix a memory leak in the file plugins browse method.
  * OTHER: Fix warnings generated by older xsubpps.
  * OTHER: Make Audio::XMMSClient::Collection::universe exportable.
  * OTHER: Make the Sync wrapper work with the new playlist API.
  * OTHER: Make the sidplay rpath checks use realpath.

 Georg Schild:
  * BUG(1498): Fixed xmms_ipc_unlock().

 Jonne Lehtinen:
  * BUG(1456): Don't handle ints as strings when adding properties from plugins

 Sebastien Cevey:
  * BUG(1413): Fixed bug with parentheses and parsing in collparser.
  * BUG(1414): Remove xmmsc_coll_set_type.
  * BUG(1469): xmms2 addarg fails if playlist included
  * BUG(1486): xmmsc_coll_parse cannot parse numeric values for equals/match
  * BUG(1488): Collparser doesn't detect all errors (when missing op value)
  * BUG(1495): Remove XMMS_COLLECTION_TYPE_ERROR as it is not used.
  * OTHER: Add methods to access the operand of a PShuffle in C++.
  * OTHER: Fix allocation bug in collparser.
  * OTHER: Increased verbosity about xmmsc_medialib_select being deprecated.
  * OTHER: Prevent the saving of self-referencing collections.
  * OTHER: Small cleanup of PartyShuffle constructors.

 Tilman Sauerbeck:
  * BUG(1491): Don't assume we can use Fixnums for any int32/uint32 value.

 Tobias Rundstrom:
  * BUG(1461): Updated INSTALL file
  * BUG(1497): Fix ruby-glib compilation on OSX



Changes between DrI+WIP+TEST1 and DrI+WIP+TEST2

 Release date: 2007-03-15
 Authors contributing to this release: 8
 Number of changesets: 27
 Number of files in this release: 507

 Alexander Botero-Lowry:
  * BUG(1399): update xmms2 man page to include insert and reflect that basic

 Anders Gustafsson:
  * OTHER: Remove old python test clients.
  * OTHER: Use 4 spaces for indentation in wscript files.

 Daniel Chokola:
  * BUG(1451): move Xmms::Result#decode_url to Xmms#decode_url
  * OTHER: Add big fat warning to xmmsc_result_decode_url comments about passing a NULL result.
  * OTHER: Ruby: add Xmms::Client::Async convenience class
  * OTHER: Ruby: add reader for the real Xmms::Client object in Xmms::Client::Sync
  * OTHER: Ruby: add readers for the other real Xmms::*::Sync objects
  * OTHER: Ruby: remove ancient Library files
  * OTHER: Ruby: remove shebang and add license header in async.rb

 Erik Massop:
  * BUG(1454): fix waftools/man.py to install manpages again.

 Florian Ragwitz:
  * BUG(1442): Don't build ruby bindings for ecore clientlib if we don't build the ecore clientlib as well.
  * OTHER: Fix faad plugin indenting.
  * OTHER: Fix indenting in waftools/xsubpp.py
  * OTHER: delegate can() to the actual Audio::XMMSClient object.

 Juho VÀhÀ-Herttua:
  * BUG(1446): Add magic bytes for Unreal files to modplug plugin.
  * OTHER: Disable the DTS playback from release because it's still unstable.

 Tilman Sauerbeck:
  * BUG(1442): ecore depends on ecore-config --libs-core.
  * BUG(1443): Fixed a memory corruption bug.
  * BUG(1444): Fix OFA plugin on little endian systems.
  * BUG(1445): Sanitize playlist instantiation.
  * BUG(1449): Install sync.rb in the right directory.
  * OTHER: Added Xmms::Client#medialib_entry_property_remove.
  * OTHER: Removed the pyrex error message.
  * OTHER: Removed the shebang line and added the license header.

 Tobias Rundstrom:
  * BUG(1452): Handle mdns removes correctly.
  * BUG(1453): Unbreak xmms_signal_mediainfo_reader_unindexed



Changes between 0.2 DrHouse and DrI+WIP+TEST1

 Release date: 2007-03-10
 Authors contributing to this release: 15
 Number of changesets: 438
 Number of files in this release: 510

 Alexander Botero-Lowry:
  * FEATURE(956): Update pythonapi to refactored api for collections.

 Anders Gustafsson:
  * BUG(1321): Fix curl plugin to handle multiple write callbacks from one perform
  * BUG(1343): Make pythonbindings compile with older pyrex (Patch from danderson)
  * BUG(1354): Rename MATCH/CONTAINS to EQUALS/MATCH everywhere i python bindings
  * BUG(1378): Make 'xmms2 status' fit terminal width (Based on Sébastien Cevey's patch)
  * BUG(1380): Fix typo in pythonbindings that broke pshuffle collections
  * BUG(1381): Fix unlock on errorpaths in playlist.c
  * BUG(1415): Fix datacorruption in curl.
  * BUG(1417): Handle BOM in xml xform.
  * BUG(1418): Fix compilation with newer pyrex.
  * BUG(1419): Don't set samplerate/channels where the automatic value suffices.
  * BUG(1422): Fix typo in pythonapi (resulttype constanst are XMMSC_ not XMMS_)
  * BUG(1423): -soname -> -h to support solaris linker. (Cherrypicked from waf svn r1305)
  * BUG(1432): Use xmmsc_result_notifier_set_full in pythonbindings
  * BUG(1434): Use snd_pcm_delay instead of snd_pcm_avail_update in alsa driver
  * BUG(1436): Drop javabindings.
  * BUG(278): Remove broken/old python twisted reactor integration.
  * FEATURE(1280): Add Neuros OSD output plugin (nms)
  * FEATURE(1316): Add some more pythonic stuff for creating collections in python
  * FEATURE(1316): Support for collections in pythonbindings.
  * FEATURE(1416): Refactor xform browse api
  * FEATURE(1433): libofa effect plugin
  * FEATURE(279): Install python glib bindings
  * FEATURE(279): Install python qt3 bindings
  * FEATURE(320): Add a xmmsclient.collections module.
  * FEATURE(320): Move python PropDict to separate .py file.
  * FEATURE(320): Move python XMMS sync into a separate .py file
  * FEATURE(320): Move pythonmodule into a directory with __init__.py
  * FEATURE(320): Put constants in a separate module.
  * FEATURE(320): Rename pyrex generated file to xmmsapi
  * FEATURE(320): Simplyfy xmmsclient.sync now that it is written in python.
  * FEATURE(320): Use explicit imports instead of * in python module __init__
  * FEATURE(320): Use spaces in python xmmsclient.propdict
  * FEATURE: Iterator for collection attributes.
  * OTHER: Add +WIP to version
  * OTHER: Add \n to mdns-avahi error message.
  * OTHER: Add comment to avoid db upgrade mistakes.
  * OTHER: Added Erik Massop to AUTHORS
  * OTHER: Bail out if filenames contain '/' in xform browse.
  * OTHER: Bail out if wscripts have changed without "waf configure"
  * OTHER: Change waf broken message to fit 80-col terminal.
  * OTHER: Check pythonversion at start.
  * OTHER: Cleanup and fix warnings in xspf plugin.
  * OTHER: Coding style cleanups
  * OTHER: Fix _ListConverter in python bindings to handle empty lists correctly
  * OTHER: Fix alignment in wscript files.
  * OTHER: Fix avformat wscript
  * OTHER: Fix warning
  * OTHER: Fix xmms_defs.h leftover in xmmsapi.pyx
  * OTHER: Handle uint from coll_query_ids in cli.
  * OTHER: Increase xform API version
  * OTHER: Make global_config static.
  * OTHER: Minor cleanup in xform browse.
  * OTHER: Pass a real xmms_error_t in xml xform.
  * OTHER: Py2.3 ships with sets module, no need to include it.
  * OTHER: Quote arguments correctly in our thin "waf" wrapper.
  * OTHER: Remove src/plugins/old/
  * OTHER: Remove stupid "#!/usr/bin/env python" from wscript files
  * OTHER: Remove useless import from python wscript
  * OTHER: Remove xmms_defs.h in favor of xmms_configuration.h
  * OTHER: Rename "type" variable to "typ" to avoid shadowing the builtin in xmmsapi.pyx.
  * OTHER: Rewrite the thin "waf" wrapper in python.
  * OTHER: Silence some more warnings in pythonbindings.
  * OTHER: Update README to version on wiki
  * OTHER: Update python xmmsapi xmmsc_result_get_type prototype
  * OTHER: Update waf to 1.1.0.
  * OTHER: Use 4 spaces for indentation in wscripts as per PEP-8
  * OTHER: Use insert instead of doing list concatenation in toplevel wscript.
  * OTHER: Use os.path.basename instead of split("/")[-1] in wscript
  * OTHER: Workaround git bug by giving uselib_local in other order
  * OTHER: You get os.path when importing os, no need to import it explicitly.

 Ben Slote:
  * BUG(1351): Fix playlist_list in python bindings.

 Bernard Pratz:
  * FEATURE(956): Complete updating Python bindings for Playlist/Medialib API refactoring

 Daniel Chokola:
  * BUG(1275): Make playlist_volume_set accept a Symbol instead of a String.
  * BUG(1370): update old XmmsClient references in rdoc to Xmms::Client
  * BUG(1371): added XFORM plugin type
  * BUG(1372): move playlist methods to their own class
  * BUG(1403): Ruby collections API - featuring work by Tilman Sauerbeck
  * BUG(1440): build xmmsclient-ecore
  * BUG(1441): build xmmsclient-ecore Ruby binding
  * OTHER: Add my webpage to AUTHORS
  * OTHER: Move Xmms::Client::Playlist to Xmms::Playlist
  * OTHER: Ruby c_playlist_new and c_name should be static functions
  * OTHER: Ruby: Make Xmms::Client#playlist a shortcut for Xmms::Playlist#new
  * OTHER: Ruby: Update documentation on playlist methods.
  * OTHER: Ruby: add Xmms::Client::Sync convenience proxy class
  * OTHER: Ruby: change Xmms::Collection#~ to ~@
  * OTHER: Ruby: fix bug in Xmms::Playlist.new
  * OTHER: Ruby: fix potential bug in idlist=
  * OTHER: Ruby: minor rdoc fix for Xmms::Client#playlist
  * OTHER: Ruby: move rb_xmmsclient_playlist* to rb_playlist*
  * OTHER: Ruby: remove outdated now_playing.rb in favor of tutorials
  * OTHER: ruby: move playlist constants to the playlist class

 Daniel Svensson:
  * BUG(1178): Improve the browsing API.
  * BUG(1273): Split statfs.c to multiple files depending on platform.
  * BUG(1282): Add realpath support to cli browsing.
  * BUG(1288): Move signal related stuff to unixsignals.c
  * BUG(1289): Add a dummy version of unix signals.
  * BUG(1306): Added ASX playlist plugin.
  * BUG(1332): Add wsock support to waf socket group.
  * BUG(1337): Use g_usleep instead of sleep for win32 portability.
  * BUG(1376): Make xmmsc_result_get_type return xmmsc_result_value_type_t
  * OTHER: Add waf's socket group to xmmsclient++.
  * OTHER: Added a Doxyfile for the xmmsclient library.
  * OTHER: Clean up Doxyfile, and only build docs for xmms2d.
  * OTHER: Do not overwrite ptr to dict when sorting browse result.
  * OTHER: Do not store replaygain as dB in musepack.
  * OTHER: Fix broken waveout wscript
  * OTHER: Fix doxygen warnings
  * OTHER: Fix doxygen warnings for xmmsclient.
  * OTHER: Include xmmstypes in the clientlib documentation.
  * OTHER: Make ASX playlist plugin use case insensitive magic matching.
  * OTHER: More doxygen cleanups
  * OTHER: Remove old old relic of old old windows port.
  * OTHER: Remove unused header file
  * OTHER: Remove unused stuff from the clientlib.
  * OTHER: Removed unused header from bindata.c
  * OTHER: Unbreak musepack replaygain.
  * OTHER: Update waf to link plugins with xmms2core instead of xmms2d on win32
  * OTHER: Updated the server documentation.

 Erik Massop:
  * BUG(1265): Support for a jump-to-playlist-on-finish attribute
  * BUG(1313): Fix waf configure inclusion/exclusion.
  * FEATURE(1291): Add xmms2 coll queryadd to cli.

 Florian Ragwitz:
  * BUG(1162): Adapt xmmsc_coll_idlist_inserts parameter order to match the other _insert functions.
  * BUG(1257): Make xmms_playlist_insert_id check the id before inserting.
  * BUG(1261): Failure to create client configfile should not be fatal.
  * BUG(1272): Fix segfaults when parsing a broken config file.
  * BUG(1293): Don't use rpath for sid builders if the builders are in the libpath.
  * BUG(1320, 1229): SIGTERM should issue a clean shutdown.
  * BUG(1322): add proper error msg when using disconnected client
  * BUG(1323): Allow to pass userdata free functions for callbacks.
  * BUG(1327): stop the cli status cmd from displaying 00:00 as the total played time.
  * BUG(1328): Install manpages with the applications they are for.
  * BUG(1329): compress manpages on installation.
  * BUG(1331): Use the running python interpreter for running external py scripts.
  * BUG(1333): Use build instead of build_replace in plugin wscripts.
  * BUG(1349): Run ldconfig after installation.
  * BUG(1353): Rename MATCH/CONTAINS to EQUALS/MATCH
  * BUG(1356): Add XMMS_ACTIVE_PLAYLIST and use it in favour of "_active".
  * BUG(1362): Make sorting on XMMS_MEDIALIB_ENTRY_PROPERTY_ID possible.
  * BUG(1367): Add --with-python-archdir option.
  * BUG(1390): Add an mlib rmprop command.
  * BUG(1396): add relative volume commands.
  * BUG(1397): Don't require a channel for setting the volume.
  * BUG(1410): Add xmms_xform_chain_setup_{,url_}_without_effects.
  * BUG(1410): Create xform chains without effects when reading metadata and loading playlists.
  * BUG(1420): Remove a useless faad include from the mp4 plugin.
  * FEATURE(1340): make xmms2-launcher a separate build target.
  * FEATURE(666): Add (the very evil) XSPF plugin.
  * FEATURE(742): Include perl bindings.
  * OTHER: A minor code style fix for the equalizer plugin.
  * OTHER: Add Audio::XMMSClient::Sync to make writing synchronous clients easier.
  * OTHER: Add Todd to AUTHORS.
  * OTHER: Add an accessor for a collections operands to the perl bindings.
  * OTHER: Add an rss xform for using podcast feeds as playlists.
  * OTHER: Add an xml plugin to dispatch different types of xml data to specialized plugins.
  * OTHER: Add perl_xmmsclient_hv_fetch for easy fetching of hash values from c.
  * OTHER: Add perl_xmmsclient_unpack_char_ptr_ptr to unpack an SV structure
  * OTHER: Add some wrappers around Audio::XMMSClient::Collection->new
  * OTHER: Add waftools/xsubpp.py, which is needed for the perl bindings.
  * OTHER: Better error handling for the rss plugin.
  * OTHER: Better error reporting for the cli volume commands.
  * OTHER: Bind some missing clientlib functions to perl.
  * OTHER: Bind xmmsc_coll_idlist_from_playlist_file to perl.
  * OTHER: Bind xmmsc_coll_query_infos to perl.
  * OTHER: Bind xmmsc_playlist_create to perl.
  * OTHER: Build and install xmms2-find-avahi.
  * OTHER: Build and install xmms2-mlib-updater.
  * OTHER: Clarify mad plugin license.
  * OTHER: Don't add samplerate properties for cdda, flac, mad and vorbis.
  * OTHER: Don't create libtool linker scripts.
  * OTHER: Don't return empty list if coll_operand_list_valid returns false.
  * OTHER: Don't throw away metadata when creating collections from playlists.
  * OTHER: Don't try to free NULL xmms_object_cmd_value_t's.
  * OTHER: Fix -rpath compile time warnings.
  * OTHER: Fix a cli segfault in the insert cmd.
  * OTHER: Fix a coding style issue in src/xmms/main.c.
  * OTHER: Fix a compile time warning in src/lib/xmmstypes/coll.c
  * OTHER: Fix a memory leak in perls result_decode_url.
  * OTHER: Fix a xmms2 insertid segfault and make it work without an explict playlist name
  * OTHER: Fix an issue accidentally introduced by the XMMSC_ACTIVE_PLAYLIST commit.
  * OTHER: Fix compile time warnings in the rss plugin.
  * OTHER: Fix compile warnings in m3u and cue plugins.
  * OTHER: Fix error handling in the sync wrapper of the perl bindings.
  * OTHER: Fix path to the mlib-updater binary in its startup script.
  * OTHER: Fix reference counting issue in the perl bindings.
  * OTHER: Fix segfault when xmms_ipc_msg_get_collection_alloc returns false.
  * OTHER: Fix several compile-time warnings in the perl bindings.
  * OTHER: Fix some code style issues.
  * OTHER: Fix some compile-time warnings.
  * OTHER: Fix some manpage typos.
  * OTHER: Fix some memory leaks in the perl bindings.
  * OTHER: Fix some more indenting errors in src/xmms.
  * OTHER: Fix the generation of a queries alias_base.
  * OTHER: Fix the mapping between char ** structures and perl scalars.
  * OTHER: Get rid of a warning in Audio::XMMSClient::Sync.
  * OTHER: Get rid of all CODE sections in the Perl bindings.
  * OTHER: Handle playlist names the same way in the cli's insert and insertid cmds.
  * OTHER: Install manpages.
  * OTHER: Install mp4 and sid plugins into PLUGINDIR.
  * OTHER: Install sample snippet into SHAREDDIR.
  * OTHER: Link the sid plugin against resid-builder.
  * OTHER: Make Audio::XMMSClient::Collection::new smarter.
  * OTHER: Make Audio::XMMSClient::Result::decode_url a class method.
  * OTHER: Make Audio::XMMSClient::coll_query_ids easier to use by making all
  * OTHER: Make Audio::XMMSClient::coll_{query_id,query_info}s easier to use.
  * OTHER: Make src/plugins/ pass indentcheck.py (except where indentcheck is wrong)
  * OTHER: Make src/xmms/ pass indentcheck.py (except where indentcheck is wrong)
  * OTHER: Make the installed python bindings loadable.
  * OTHER: Make the perl bindings compile against libxmmsclient with collections.
  * OTHER: Make the perl bindings stick to the code style guidelines.
  * OTHER: Make the perl bindings use perls ccflags.
  * OTHER: Make the rss plugin use libxml2 instead of g_markup_*
  * OTHER: Make the ruby bindings loadable by removing the 'lib' prefix of the shared object.
  * OTHER: Make the xspf and rss plugins use the xml plugin.
  * OTHER: Modify waf to only use the major vnum as the soname version.
  * OTHER: Mute a warning with Audio::XMMSClient::Sync.
  * OTHER: Only call ldconfig where it is actually available.
  * OTHER: Only store the current perl context for callbacks when needed.
  * OTHER: Properly initialize PerlXMMSClientCallback structures.
  * OTHER: Re-enable perl bindings.
  * OTHER: Remove a comment with some debugging code.
  * OTHER: Remove a forgotten debugging statement.
  * OTHER: Remove build_replace from waftools/plugin.py.
  * OTHER: Remove lines containing only whitespaces.
  * OTHER: Remove perl_xmmsclient_collection_order_t and thereby all of the
  * OTHER: Remove some debugging code.
  * OTHER: Remove some indenting errors and tailing whitespaces in playlist.c
  * OTHER: Remove some tabs in favour of spaces.
  * OTHER: Remove two useless conditions in the playlist code.
  * OTHER: Remove xmmsc_query_attribute_t which isn't used at all.
  * OTHER: Return an empty idlist coll when importing playlists without entries.
  * OTHER: Set -DVERSION for the perl bindings.
  * OTHER: Simplify parts of the perl binding implementation.
  * OTHER: Simplify the perl binding internals some more.
  * OTHER: Some Audio::XMMSClient::Sync improvements.
  * OTHER: Support collections in propdicts, if that even exists.
  * OTHER: The cli's wscript doesn't use Common. Don't import it.
  * OTHER: Unify some copyright statements.
  * OTHER: Update COPYING.
  * OTHER: Update copyright year date for 2007.
  * OTHER: Update my AUTHORS entry.
  * OTHER: Update waf to svn 1006 to get shared libraries with sane SONAMEs.
  * OTHER: Update waf to svn r1008.
  * OTHER: Use XMMS_OBJECT_CMD_ARG_* defines consequently.
  * OTHER: Use pythons gzip module instead of the gzip binary for manpage compression
  * OTHER: Use the ability to supply free funcs to callbacks to leak less memory.
  * OTHER: Various coding style fixes all over the place.
  * OTHER: add outdata type metadata when setting up the xform chain.
  * OTHER: basic collection support for Audio::XMMSClient::Result structures for perl.
  * OTHER: bind xmmsc_coll_universe () to perl.
  * OTHER: boot the collections part of the perl bindings when loading XMMSClient.so.
  * OTHER: cli: Don't start xmms2d on unknown commands or quit.
  * OTHER: minor memory allocation fix for the perl bindings.
  * OTHER: perl bindings for most parts of the xmmsc_coll_* api.
  * OTHER: perl typemaps for collection related structures.
  * OTHER: properly link the equalizer plugin against libm.
  * OTHER: remove SIGINT and SIGTERM from the sigmask in their signal handler.
  * OTHER: use perl_xmmsclient_unpack_char_ptr_ptr instead of the current
  * OTHER: xmms_xform_t should increment the refcnt of their xmms_plugin_t.
  * OTHER: xmmsc_coll_attribute_get returns 0 on failure, not on success..
  * Revert "OTHER: properly link the equalizer plugin against libm."

 Jonne Lehtinen:
  * BUG(1126): Make getUserConfDir a free function.
  * BUG(1277): Remove useless list of slots to functions in c++
  * BUG(1290): Add missing functions to medialib class.
  * BUG(1313): Make waf able to enable/disable optional stuff (src/client/*)
  * BUG(1317): Fix xmmsc_coll_remove to be const correct.
  * BUG(1318): Removed comma from the end of enum list for standard c++
  * BUG(1344): Fix flac metadata reading.
  * BUG(1391): Add missing values to xmmsc_result_value_t
  * BUG(1401): Make generic callback trap exceptions and pass on.
  * BUG(845): Fix operator-> for Xmms::List< std::string > and Xmms::List<
  * FEATURE(1364): CD Plugin
  * FEATURE(1388): Add coverart from xmms2 cli.
  * FEATURE(1388): Read cover image from stdin also.
  * OTHER: Add signals and broadcasts back to Xmms::Playback.
  * OTHER: Begin to refactor C++ bindings.
  * OTHER: C++ bindings playback module nearly converted.
  * OTHER: Completed result wrappers for C++ bindings.
  * OTHER: Convert Collections to the new Result API.
  * OTHER: Convert Xmms::Bindata to the new Result API.
  * OTHER: Convert Xmms::Config to the new Result API.
  * OTHER: Convert Xmms::Medialib to the new Result API.
  * OTHER: Convert Xmms::Playlist to the new Result API.
  * OTHER: Convert Xmms::Stats to the new Result API.
  * OTHER: Convert Xmms::Xform to the new Result API.
  * OTHER: Fix issue with no callback function in async operations.
  * OTHER: Fix more warnings (xmms2-et this time).
  * OTHER: Fix waf pc file creation to use ${prefix} where possible.
  * OTHER: Fix warning in dict.cpp
  * OTHER: Fix warnings in C++ bindings caused by bug 1376.
  * OTHER: Fix warnings.
  * OTHER: Make cdda to log errors/info/debug better.
  * OTHER: Missing header for the C++ bindings.
  * OTHER: More Result wrappers.
  * OTHER: Nearly everything cleaned up/converted.
  * OTHER: Remove old code from c++ bindings.
  * OTHER: async c++ collection functions
  * OTHER: broadcast result wrappers

 Juho VÀhÀ-Herttua:
  * BUG(1281): Fix a glitch resulting from libfaad misuse
  * BUG(1281): Re-enable gapless mp4 again with xform hotspot support
  * BUG(1287): Finish the Solaris compilation patch to actually work
  * BUG(1287): Fix XMMS2 to compile on Solaris with waf
  * BUG(1357): Skip redundant bytes after seek in output filler
  * BUG(1411): Don't set samplerate if it's already specified in output type.
  * BUG(1421): Fix problem with faad when trying to init the decoder.
  * BUG(908): Add hotspot support to xform peeking buffer
  * FEATURE(1279): Add ALAC support.
  * FEATURE(1279): Change offset and duration to be frame based
  * FEATURE(1279): Fix the waf commit little earlier
  * FEATURE(1279): Re-enable seeking in mp4 files
  * FEATURE(1279): Refactor MP4 as a separate plugin but keep AAC decoding in it
  * FEATURE(1279): Refactor wma into avformat and avcodec plugins
  * FEATURE(1279): Remove useless mp4ff files from faad directory
  * FEATURE(1279): Separate mp4 into a demuxer plugin using privdata.
  * FEATURE(1279): Update waf build scripts
  * FEATURE(1281): Add possibility to add none privdata to separate packets
  * FEATURE(1281): xform data passing API.
  * FEATURE(1377): Enable seeking in avcodec (only works in ALAC)
  * FEATURE(1429): Enable DTS support in libavcodec.
  * OTHER: Add AMR support to avformat codec (needs AMR support in ffmpeg)
  * OTHER: Disable seeking in avcodec for other codecs than ALAC (not handled).
  * OTHER: Don't reset decoder data if seek fails.
  * OTHER: Fix an error message to be correct to avoid confusion.
  * OTHER: Fix broken merge in devel related to Solaris compilation
  * OTHER: Fix broken xmms2d linking
  * OTHER: Fix equalizer building with waf
  * OTHER: Fix seeking hangup introduced earlier. (in bug 1357 fix)
  * OTHER: Fix wma linking on debian and ubuntu systems
  * OTHER: Just small cleanups in faad plugin
  * OTHER: Move XMMS_BUILD_PATH macro into private headers
  * OTHER: Remove "array subscript has type `char'" warning.
  * OTHER: Remove a rounding error from MP4 plugin and clean up the code.
  * OTHER: Remove bashism from waf to make it work better on other shells.
  * OTHER: Remove useless reentrant flag

 Karsten Krispin:
  * FEATURE(1379): Groupby support in pythonbinding's coll_query_infos()

 Sebastien Cevey:
  * BUG(1265): Support for a jump-to-playlist-on-finish attribute
  * BUG(1339): Do not auto-fetch the media id in queries generated by collections.
  * Complain and die if calling the coll API with NULL arguments.
  * FEATURE(1365): added xmmsc_playlist_create clientlib function.
  * OTHER: Add Playlist::create to C++ bindings (related to 1365).
  * OTHER: Add copyright/license in clientlib++ headers.  Merry Christmas RMS!
  * OTHER: Added documentation of the Xmms::Coll class tree in the C++ bindings.
  * OTHER: C++ bindings now contain *all* functions.
  * OTHER: Change Client::connect argument to const char*.
  * OTHER: Complete and comment all async collection methods in C++.
  * OTHER: Don't throw an exception when creating an empty List< Dict >.
  * OTHER: Fix Playlist::list type.
  * OTHER: Fix bug reported by rafl when fetching the 'url' property.
  * OTHER: Fix crash when querying a reference coll operator without the reference attribute.
  * OTHER: Fix missing functions and linking errors.
  * OTHER: Hide constructors taking coll_t* in the C++ bindings.
  * OTHER: Mess around with includes and headers to get the c++ async collection methods to compile.
  * OTHER: Misc code cleanup in cmd_coll.c
  * OTHER: More work on C++ bindings for collections, now compiles.
  * OTHER: More work on the C++ bindings for collections, not done yet.
  * OTHER: Redundant using clause in exceptions.h.
  * OTHER: Refactored coll in C++ to return proper coll pointer, const iterator access, header cleanup.
  * Trigger signal on position autoreset (before jumping to another playlist).
  * Updated the C/C++ bindings for bug 1339, forbidding an empty fetch list to coll_query_infos.

 Tilman Sauerbeck:
  * BUG(1283): the FLAC plugin now works with both FLAC 1.1.2 and 1.1.3.
  * BUG(1334): Reworked the vorbis comment parser.
  * BUG(1335): Reworked the FLAC vorbis comment parser.
  * BUG(1359): Case insensitive string magic matching.
  * Disabled most of the Ruby bindings so it builds.
  * OTHER: Clean up the rss plugin (formatting & coding style).
  * OTHER: Don't ask the FLAC decoder to respond to all metadata types.
  * OTHER: Don't return after calling rb_raise().
  * OTHER: Fixed Playlists's c_free() in a very neat way.
  * OTHER: Fixed linking of the Ruby bindings for libxmmsclient_glib.
  * OTHER: Re-enabled some Ruby binding methods.
  * OTHER: Shorten Playlist callback names.
  * OTHER: Slightly reworked c_playlist_sort().
  * OTHER: Store a copy of the char* to the playlist's name.
  * OTHER: Tweak the handling of 'name' in playlist_new().
  * OTHER: Updated .gitignore.
  * OTHER: xforms aren't forced to have a 'destroy' method anymore.

 Tobias Rundstrom:
  * BUG(1107): Simplify the seek command in CLI.
  * BUG(1304): Remove old plsplugin code.
  * BUG(1319): Only set ignore CCFLAGS for python.
  * BUG(1325): Unify resolved and available to one flag "status".
  * BUG(1424): Disable plugins when --without-xmms2d=1 is passed to configure
  * BUG(1427): Leftover reference to xmms_defs.h in mac plugin.
  * FEATURE(1303): Re-enable playlist plugins.
  * FEATURE(1303): Re-enable pls plugin.
  * FEATURE(1305): Add read_line to xform API
  * FEATURE(1394): Deny user from doing stupid things (running xmms2d as root)
  * FEATURE(1412): Move logfile to XDG_CACHE_DIR as default.
  * FEATURE(210): Add cuesheet playlist plugin.
  * OTHER: Add VERSION to C++ flags also
  * OTHER: Add missing file!
  * OTHER: Convert NMS plugin to waf
  * OTHER: Convert spaces to tabs in wscripts.
  * OTHER: Don't have waf as a binary blob in our tree. And make 'waf' a tiny wrapper.
  * OTHER: Don't leak memory on error path.
  * OTHER: Emit a uint list instead of int list from queryIds
  * OTHER: Enable soversion on public API
  * OTHER: Fix --conf-prefix option to waf.
  * OTHER: Fix compilation on MacOSX
  * OTHER: Fix crash in cuesheet reader.
  * OTHER: Fix daap plugin linking
  * OTHER: Fix dependency issues in waf.
  * OTHER: Fix pkgconfig file generation.
  * OTHER: Fix stupid typo in wscript
  * OTHER: Fix xmmsclient++-glib complation on osx.
  * OTHER: Forgot stupid debug info.
  * OTHER: Make the m3u parser a bit more forgiving.
  * OTHER: Make xmms_playlist_remove_by_entry remove id numbers in all playlists
  * OTHER: Post-merge collections and waf.
  * OTHER: Re-enable xmmsclient++-glib
  * OTHER: Read optional parameters from playlist plugins
  * OTHER: Remove David's copyright on the wscripts and add him to AUTHORS
  * OTHER: Remove old scons files.
  * OTHER: Remove the double-build feature
  * OTHER: Remove typo
  * OTHER: Rename PROPERTY_STARTSAMPLE and STOPSAMPLE to STARTMS and STOPMS
  * OTHER: Reorder include paths.
  * OTHER: Set -WIP flag
  * OTHER: Set USERCONFDIR to Library/xmms2 on OSX
  * OTHER: Set version to DrI+WIP since this is going to be DrJekyll
  * OTHER: Simplify the playlist plugins a bit.
  * OTHER: Simplify the wscript
  * OTHER: Split source strings prettier.
  * OTHER: Update waf to rev 1012 which includes soname fixes on osx
  * OTHER: Updated waf to r1026
  * OTHER: Updated waf version.
  * OTHER: add --without-xmms2d argument to waf.
  * OTHER: cast gsize to a int to get rid of a warning on darwin.
  * OTHER: get rid of other.c
  * OTHER: install_name fix.
  * OTHER: make our waf wrapper set WAF_HOME too.
  * OTHER: make waf pull in flags (--libs-only-other) from pkg-config
  * OTHER: properly propagate errors from browse method.
  * OTHER: set variant to fix some dependency problems.
  * OTHER: upgraded waf to r1025
  * OTHER: upgraded waf to svn 1021
  * OTHER: xmms/xmms_xformplugin.h was missing?

 Todd Bayley:
  * BUG(1408): make coll_query_* take arguments



Changes between DrGonzo+WIP+TEST2 and 0.2 DrHouse

 Release date: 2006-12-02
 Authors contributing to this release: 4
 Number of changesets: 47
 Number of files in this release: 403

 Anders Gustafsson:
  * BUG(1276): Reset GError before retrying conversion in mad/id3v1.c
  * OTHER: Wrap lines in INSTALL and README

 David Anderson:
  * FEATURE(1179): Add --without-plugins, fix the default build that I broke.
  * FEATURE(1179): Add a --with-plugins configure option, to explicitely
  * FEATURE(1179): Add a plugin helper function that helps reduce the
  * FEATURE(1179): Tweak, refactor and clean up some waf stuff.
  * Refactor all plugins.

 Juho VÀhÀ-Herttua:
  * FEATURE(1217): Add replaygain support into faad plugin.
  * OTHER: Make AAC audio track detection more generic.

 Tobias Rundstrom:
  * Ignore plugins without wscript
  * OTHER: Add -install_name to macosx shlib targets
  * OTHER: Add output priority.
  * OTHER: Added PKGCONFIG support in waf.
  * OTHER: Build ruby bindings
  * OTHER: Create directory for xmms_defs.h before writing it.
  * OTHER: Documentation updates for DrHouse
  * OTHER: Enable et, mdns, xmmsclient++ and make a new optional build variable
  * OTHER: Enable python bindings and updates to various wscripts
  * OTHER: Fix CCFLAGS and CXXFLAGS when set from the environment.
  * OTHER: Fix CoreAudio wscript
  * OTHER: Fix cpp tool bug in WAF
  * OTHER: Fix install_in in daap script
  * OTHER: Fix musepack wscript
  * OTHER: Fix ruby/wscript to execute correct binary
  * OTHER: Generate the header on configure instead of buildtime
  * OTHER: Install headerfiles
  * OTHER: Just put statfs defines there on xmms2d
  * OTHER: Make the PLUGINDIR a flag.
  * OTHER: Make waf-korvsallad port.
  * OTHER: Run configure on xmmsclient and xmmsclient-glib
  * OTHER: Split autogen of xmms_defs.h into specific file.
  * OTHER: Update waf with small bugfixes.
  * OTHER: Updates to mad, mac and sid plugins.
  * OTHER: Waf updates, install headers in the right place.
  * OTHER: add forgotten file
  * OTHER: add launcher script support.
  * OTHER: added --with-ruby-binary to ruby/wscript
  * OTHER: bugfix for avahi buildscript
  * OTHER: enable configure in oss
  * OTHER: fix oss/wscript correctly
  * OTHER: import sys in oss/wscript
  * OTHER: really fix the oss/wscript
  * OTHER: remove confusing minus in avahi/wscript
  * OTHER: remove old crud
  * OTHER: s/=+/+= in dns_sd/wscript
  * OTHER: tweak install target
  * OTHER: update wafscripts to include xmmsutils



Changes between DrGonzo+WIP+TEST1 and DrGonzo+WIP+TEST2

 Release date: 2006-11-27
 Authors contributing to this release: 5
 Number of changesets: 17
 Number of files in this release: 403

 Anders Gustafsson:
  * BUG(1250): Make default tcp port a define and change it to 9667
  * BUG(1256): Allow insertion on end of playlist (patch from Frank v Waveren)
  * BUG(1260): Don't use g_free as key destroy function when we use integers as key. (patch from Rob Hoelz)
  * BUG(1266): Fix crash in converter when not resampling.
  * BUG(1268): Fix xmms_strlist_len to return correct value when there are empty items
  * BUG(1269): Fix infinite loop on read errors in bindata retrieve
  * OTHER: Clean up xmms_build_path
  * OTHER: Fix obvious typo in win32 xmms_userconfdir_get
  * OTHER: Move XMMS_STRINGIFY to xmmsc_util.h
  * OTHER: Move code after declarations in strlist.c

 Juho VÀhÀ-Herttua:
  * OTHER: Cleanup the strlist to be a bit more readable.

 Rob Hoelz:
  * BUG(1255): Switched the position and id in the CLI insert failure output.

 Sham Chukoury:
  * BUG(1253): Fix java bindings build on Linux

 Tobias Rundstrom:
  * BUG(1252): Available was misspelled in upgrade path.
  * BUG(1254): Update currentpos when inserting entries.
  * BUG(1270): Don't leak memory on non-broadcasts in c++ bindings.
  * BUG(1271): Set executable bit for scripts that are being installed



Changes between 0.2 DrGonzo and DrGonzo+WIP+TEST1

 Release date: 2006-11-14
 Authors contributing to this release: 13
 Number of changesets: 121
 Number of files in this release: 403

 Alexander Botero-Lowry:
  * BUG(1176): Write errors to stderr instead of stdout
  * OTHER: Change default SHAREDIR to include xmms2 in the path
  * OTHER: Move all manual pages to section 1
  * OTHER: Unbreak java bindings on FreeBSD

 Anders Gustafsson:
  * BUG(1137): Change the ipc listen sockets to use giochannels.
  * BUG(1152): Don't create many medialib sessions when setting up chain.
  * BUG(1154): Clear plugin/* sources aswell as server source when rehashing.
  * BUG(1163): Open files in file.c with O_BINARY where available.
  * BUG(1171): Fix leaks on error paths.
  * BUG(1171): Kill off unused data->url in daap.
  * BUG(1171): Minor string handling cleanups.
  * BUG(1171): Sanitize daap_generate_request.
  * BUG(1171): Use g_new instead of g_malloc.
  * BUG(1171): Use g_new instead of g_malloc.
  * BUG(1171): Use g_strdup_printf instead of g_ascii_dtostr + g_malloc
  * BUG(1171): Use g_strdup_printf instead of g_sprintf + g_malloc0
  * BUG(1171): Use g_strdup_printf instead of malloc+sprintf.
  * BUG(1171): private data is always created in _init method.
  * BUG(1171): use g_return instead of just return.
  * BUG(1222): Remove entry from active playlist when removing from mlib.
  * BUG(1227): Fix encoding of urls in xform browse.
  * BUG(1241): Fix handling of port in daap urls.
  * FEATURE(1147): Add filename extension fallback in magic detection.
  * FEATURE(1158): Simplify browse api.
  * FEATURE(1234): Make xform browse return a sorted list.
  * OTHER: Add +WIP to version
  * OTHER: Added Florian Ragwitz to AUTHORS
  * OTHER: Change order metadata is collected.
  * OTHER: Fix loglevel of message in ip_setup_server.
  * OTHER: Improve log messages in ipc.c
  * OTHER: Improve v29->v30 medialib upgrade path.
  * OTHER: Minor cleanup in magic.c

 Cole Thompson:
  * BUG(1171): Changed gethostbyname() to the more reentrant-friendly getaddrinfo().
  * BUG(1171): Fixed breakage with gcc 2.95.

 Daniel Chokola:
  * BUG(1189): Separate userconfdir function into win32 and unix files.

 Daniel Svensson:
  * BUG(1159): Update daap to the new browsing API.
  * BUG(1171): Use the portable XMMS_EINPROGRESS instead.
  * BUG(1172,116): Add a generic version of EINPROGRESS.
  * BUG(1174): make get_data_from_url more readable, and less buggy.
  * BUG(1249): Add a platform independent default connection path method.
  * FEATURE(1153): last.fm plugin
  * FEATURE(116,1164): Added WaveOut output plugin.
  * OTHER: Added Manuel Fuhr to AUTHORS
  * OTHER: Fix copy/paste error in lastfmeta xform description.
  * OTHER: Fix typo in xmms_bindata.h
  * OTHER: Missing check for curl in lastfmeta Plugin file.
  * OTHER: Set connect timeout for lastfm plugins
  * OTHER: Turn xmms_lastfm_strstr_len into a xmms_lastfm_memstr.
  * OTHER: lastfm plugin init cleanup, and proper error messages.

 David Anderson:
  * Add a few comments.
  * Add the beginnings of an option parsing mechanism for selecting plugins
  * Add the glib client lib and cli builders to the master script.
  * Build the clientlib from the main wscript file.
  * Can now build xmms2d with waf... Once...
  * FEATURE(1179): Add the missing wscript for the xmms source directory.
  * FEATURE(1179): Add wscripts for all plugins. They configure okay on my
  * FEATURE(1179): Correct the detection for libmodplug, and make sidplay
  * FEATURE(1179): Finish configuration support for xmms2d, and add build
  * FEATURE(1179): First attempt at a Waf build system. Will currently
  * FEATURE(1179): Fix the OSS configuration function so that the oss plugin
  * FEATURE(1179): Fix the dependencies between libs so that the xmms2 cli
  * FEATURE(1179): Fix the generator hook to have full dependency tracking
  * FEATURE(1179): Fix the mms plugin build rules.
  * FEATURE(1179): Make FLAC non-mandatory.
  * FEATURE(1179): Make the OSS plugin build.
  * FEATURE(1179): Make the XMMS2 libs all static, readd color support
  * FEATURE(1179): Make the build system understand plugins and OSX bundles.
  * FEATURE(1179): Oops, forgot the new function for gittools that the waf
  * FEATURE(1179): Preemptively upgrade waf to support osx bundles.
  * FEATURE(1179): Refer to the tooldir using an absolute path to avoid
  * FEATURE(1179): Remove all the now obsolete Plugin files.
  * FEATURE(1179): Unbork the build funcs for all the plugins I can build.
  * Factor out the tests for glib into the main script.
  * Fix the build for xmms2d.
  * Make sidplay take builder paths into account, and pass the right flags
  * Make xmms2d build from end to end.
  * Name the plugin targets properly
  * Remove Scons stuff, so that I don't execute it accidentally and bork
  * Remove an extraneous return statement.
  * Remove debug output from the modplug configurator
  * Remove debug output, shouldn't be there.
  * Remove the color disabling code. export NOCOLOR=1 instead.
  * Some more build fixes contributed by rafl. Thanks!
  * Start adding support for plugins. Alsa configure script in place.
  * xmmsenv/python-generator.py

 Florian Ragwitz:
  * Add support for building the glib-enabled clientlib and the xmms2 cli.
  * FEATURE(1031): Let the magic plugin add metadata about the mime type.
  * FEATURE(1031): Let the magic plugin add metadata about the mime type.

 Juho VÀhÀ-Herttua:
  * BUG(1165): Fix compilation on Solaris.
  * BUG(1166): Fix errno handling in diskwrite plugin.
  * BUG(1167): Fix xmms2-et system name on Solaris.
  * BUG(1169): Don't lock the audio device twice in libao.
  * BUG(1177): Convert xmmsclient-glib not to use custom GSource.
  * FEATURE(1105): Add support for pitch changing in vocoder plugin.
  * FEATURE(1105): Add transient detector for phase vocoder plugin.
  * FEATURE(1105): Fix overflows in sample conversion of vocoder plugin.
  * FEATURE(1105): Unregister config callbacks properly on cleanup.
  * FEATURE(1105): Update copyright information related to vocoder.
  * FEATURE(1105): Whitespace cleanups for vocoder plugin.
  * FEATURE(1137): Convert client ipc thread to use mainloop and giochannels.
  * FEATURE(168): Add libao output plugin.
  * OTHER: Cleanup ao plugin a little bit.
  * OTHER: Don't destroy write_cb in xmmsclient-glib if we have data in queue.
  * OTHER: Fix an annoying typo no one else fixes no matter how much I bitch.
  * OTHER: Fix broken vocoder commit earlier.
  * OTHER: Fix possible crash when freeing memory in ao plugin.
  * OTHER: Make absolutely sure xmmsclient-glib always disconnects.
  * OTHER: Remove clipping from vocoder when attack detection is on.

 Sebastien Cevey:
  * OTHER: Fix bug in xmmsc_coll_idlist_get_size.

 Sham Chukoury:
  * BUG(1149): Use integer config file version
  * BUG(1160): Use xmms_userconfdir_get in xmms2d

 Tobias Rundstrom:
  * BUG(1193): Fix compilation for Java bindings on OSX
  * BUG(1220): trigger entry_changed() on entry_property_remove()
  * FEATURE(512): Instead of removing entries from the medialib, set property available to zero.
  * FEATURE(867): Generate launcher-scripts to contain the path.
  * OTHER: Emit entry_changed signal when updating the AVAILABLE flag.
  * OTHER: In dns-sd, when register a service, port should be in bigendian.
  * OTHER: Use EXIT_SUCCESS and EXIT_FAILURE on all exit-points
  * OTHER: don't free NULL values in value_cleanup()

 Todd Bayley:
  * BUG(1233): Fixed bindata methods in Ruby bindings.

 rafl:
  * Add support for the xmmsclient lib



Changes between DrFeelgood+WIP+TEST4 and 0.2 DrGonzo

 Release date: 2006-09-26
 Authors contributing to this release: 3
 Number of changesets: 12
 Number of files in this release: 384

 Anders Gustafsson:
  * BUG(1132): Fix crash in daap when passed empty url.

 Sebastien Cevey:
  * OTHER: First draft of C++ collection bindings.
  * OTHER: Fix const-ness, indentation and some visibility restrictions.
  * OTHER: More work on the c++ collection bindings.
  * OTHER: Organized the C++ collection classes in a hierarchy. Added collection module.
  * OTHER: Prefer exceptions to bool return value, cosmetic fixes.
  * OTHER: Reduce the verbosity of errors when accessing idlists.
  * OTHER: Surround xmmsc_coll.h with extern "C", for C++.
  * OTHER: add xmmsc_coll_operand_list_
  * OTHER: coll.c needs -fPIC on 64-bit arch.
  * OTHER: updated the xmmsclient++ Playlist class to match the API refactoring.

 Tobias Rundstrom:
  * OTHER: Up version dependecy of Python to python 2.3



Changes between DrFeelgood+WIP+TEST3 and DrFeelgood+WIP+TEST4

 Release date: 2006-09-21
 Authors contributing to this release: 4
 Number of changesets: 20
 Number of files in this release: 384

 Anders Gustafsson:
  * BUG(1115): Fix crash when trying to play nonexistant entry.
  * BUG(1117): Fix oss format probing (based on patch from Constantin Makshin)
  * BUG(1122): Fix browse in samba.
  * BUG(1123): Fix ipc argument handling.
  * BUG(1127): Fix seeking in xing vbr mp3 files larger than 16M
  * OTHER: Make length checks in ipcmsg wrapsafe.
  * OTHER: Use the correct value for mb trackid.

 Daniel Svensson:
  * BUG(1121): Always return hash of data even if it has already been added.

 Sebastien Cevey:
  * OTHER: Cleanup the hierarchy of collection documentation.
  * OTHER: Fix bug in IPC (stringlist extraction)
  * OTHER: Fix bug in cli when updating type of a pshuffle playlist.
  * OTHER: Fix bug in validation of collections in the DAG ; pshuffle now works properly.  (reported by nesciens)
  * OTHER: Fix warning in cmd_coll.c
  * OTHER: Fixed heaps of documentation warnings.
  * OTHER: In collection patterns, make '~' imply matching of the argument anywhere in the property (real CONTAINS check).
  * OTHER: Quick and dirty fix for add/radd arguments vs playlist name.
  * OTHER: Support explicit autofilters, e.g. ~foo (matches if any property contains foo).

 Tobias Rundstrom:
  * BUG(1125): Release memory in xmmsclient++ bindings
  * FEATURE(1124): reduce frequency of playtime signal
  * OTHER: Don't do crap.



Changes between DrFeelgood+WIP+TEST2 and DrFeelgood+WIP+TEST3

 Release date: 2006-09-15
 Authors contributing to this release: 3
 Number of changesets: 6
 Number of files in this release: 384

 Jonne Lehtinen:
  * BUG(1106): Wrap xmmsc_userconfdir_get in C++ bindings.

 Ma Xuan:
  * BUG(1108): Fix seeking in MAC (APE Files) plugin

 Tobias Rundstrom:
  * BUG(1109): Fix crash in daap browsing
  * OTHER: Added SCons options to compile things static
  * OTHER: Listen to the warnings from gcc, that makes you happier.
  * OTHER: Re-Added Library file for xmmsclient-cf



Changes between DrFeelgood+WIP+TEST1 and DrFeelgood+WIP+TEST2

 Release date: 2006-09-13
 Authors contributing to this release: 6
 Number of changesets: 14
 Number of files in this release: 383

 Anders Gustafsson:
  * BUG(1096): Implement seeking in converter xform.
  * BUG(1099): Do proper error and bounds checking in ipc.
  * OTHER: Bump xform api version (should be done a while ago)

 Cole Thompson:
  * BUG(1090): If url is incorrect and daap can't connect, user is informed. Also, fixed annoying "trailing slash in url" issue.

 Daniel Svensson:
  * BUG(1102): Fix typo in SConstruct that installed headers incorrectly.

 Juho VÀhÀ-Herttua:
  * BUG(116): Change bzero into memset also in sse optimized equalizer version.
  * FEATURE(1105): Add initial (somewhat experimental) phase vocoder plugin.

 Tilman Sauerbeck:
  * BUG(1100): The 'radd' and 'mlib addpath' commands now support 1+ args.

 Tobias Rundstrom:
  * BUG(1098): Don't hold the transaction longer than needed in radd/path_import commands
  * BUG(1101): Add missing encoded() functions.
  * BUG(1101): Wrap missing encoded() functions in Python.
  * BUG(1101): Wrapped missing encoded functions in C++ bindings.
  * BUG(775): Updated xmms2d.8 manpage.
  * OTHER: assert when BUSY timeout happens.



Changes between 0.2 DrFeelgood and DrFeelgood+WIP+TEST1

 Release date: 2006-09-07
 Authors contributing to this release: 16
 Number of changesets: 287
 Number of files in this release: 383

 Alexander Botero-Lowry:
  * BUG(1086): Updates to xmms2d manpage
  * BUG(656): Add xmmsc_userconfdir_get() to the Python bindings
  * BUG(775): Add xmms2-mdns-avahi.8 manual Page
  * BUG(977): Implement PropDict.get method
  * OTHER: Clarify docstring for broadcast_medialib_entry_changed()
  * OTHER: Clarify userconfdir_get() docstring

 Anders Gustafsson:
  * BUG(1010): Make bad options to xmms2d fatal errors.
  * BUG(1017): We only need non block when opening the alsa device.
  * BUG(1022): Set GError to NULL before use.
  * BUG(1023): Fix macros in ape tag parser.
  * BUG(1066): Stop playback if sampleformat setting fails (based on patch by Sham Chukoury)
  * BUG(1083): Make shuffle do full shuffle if currentpos==-1 (patch from Bryan Taylor)
  * BUG(1084): Fix segfault when wma can't initialize (found by Bryan Taylor)
  * BUG(1087): Simplify bindata api for plugins. Don't include len in hashes. (changes filenames!)
  * BUG(801): Remove debian/ directory
  * BUG(885): Fix noise when doing xmms2 next too fast.
  * BUG(897): Fix next/prev to work in paused.
  * BUG(939): Fix double unlock in ipc when write returns EAGAIN.
  * BUG(946): Make xmms_vorbis_read return -1 on error, not vorbis error code.
  * BUG(954): Fix handling of eos flag in xform.c.
  * BUG(979): Flush after seeking.
  * BUG(980): Flush when killing xform chain.
  * FEATURE(1094): Add playlist_add_encode and friends.
  * OTHER: Cleanup id3v2 parser.
  * OTHER: Fix typo in musepack.
  * OTHER: Improve LAME parsing code in mad.c
  * OTHER: Loosen up runtime glib version check a bit.
  * OTHER: Make cli say that it autostarts the daemon.
  * OTHER: Minor clean up of errormessages in mad.c
  * OTHER: Minor typ cleanup in bindata.
  * OTHER: Verify that returnvalue of xform plugins read method is not < -1.

 Bryan Taylor:
  * FEATURE(263): Added sorting on multiple properties

 Cole Thompson:
  * Added mDNS browsing of DAAP shares.
  * Avahi mDNS code properly updates the server list when a DAAP server disconnects.
  * Changed all remaining instances of g_printf() to XMMS_DBG()
  * Cleaned unnecessary whitespace, fixed compiler warnings.
  * Code cleanup and style fixes.
  * Cosmetic fixes.
  * DAAP browse lists urls with the correct suffix instead of always .mp3
  * DAAP: Track lengths now display correctly, instead of 0:00
  * Enable support for meta tags, can now ask iTunes for useful data.
  * FEATURE(1064): DAAP: Multiple servers supported.
  * Fixed headers on daap_conn.c for compiling on FreeBSD
  * Fixed memory leak.
  * Fixed read bug in daap xform, should work fine now.
  * Fixed some login/logout crashes, plus some other fixes and cleanup.
  * Fixed the rest of the whitespace to conform to standards.
  * Made improvements to mDNS and browser handling. Avahi support now optional.
  * Miscellaneous cleanup work. Fixed some memory leaks.
  * Previous commit missed some files.
  * Protect g_server_list with a mutex.
  * Removed an unneccessary argument from cc_data_free(), as well as made a
  * Removed some unnecesary cruft. Added GPL notices. Changed nonfatal asserts
  * Removed the rest of the asserts; there is no more ugly message printing on

 Daniel Svensson:
  * BUG(1004): Make mad set samplerate in medialib.
  * BUG(116): Make equalizer compile on Windows.
  * BUG(116): Make file xform compile on Windows.
  * BUG(116): Make plugins link with glib.
  * BUG(116): Make socket code compile on Windows
  * BUG(116): Make xmmsipc compile on Windows.
  * BUG(116): Remove unused Windows stuff from SConstruct
  * BUG(116): Remove unused stuff from xmmsclient/Library
  * BUG(656): Obey fd.o by moving ~/.xmms2 to ~/.config/xmms2
  * BUG(656): Obey fd.o by moving ~/.xmms2 to ~/.config/xmms2
  * BUG(656): Update the xmms2 cli to use the new path.
  * BUG(983): Make ALSA open the soundcard non-blocking.
  * FEATURE(1037): Add autostart support for the cli.
  * OTHER: Fixed some uninitialized compiler warnings.
  * OTHER: Load/save config file at the correct place.

 Dries Harnie:
  * FEATURE(930): Make CLI aware of current status.

 Georg Schild:
  * BUG(1072): Fix getConfigurationPath in java client bindings
  * BUG(1073): in javabindings use byte[] for bindata instead of short[] and remove base64 stuff
  * FEATURE(823): fix small bug in playlist
  * FEATURE(923): Much improvements to the javabindings
  * FEATURE(923): cleanups the improvements ;)
  * FEATURE(949): repackage javabindings
  * FEATURE(953): wrap bindata API into javabindings and refactor some things
  * FEATURE(958): Add more features to the new javabindings

 Jonne Lehtinen:
  * FEATURE(1008): xmms2-launcher accepts --logfile and --pidfile
  * FEATURE(967): Wrap bindata API in CPP bindings

 Juho VÀhÀ-Herttua:
  * BUG(352): Add support for configurable encoding in ID3v1 tags.
  * FEATURE(970): Add coverart extraction in FAAD plugin.

 Ma Xuan:
  * BUG(796): Fix special chars in playlistnames.
  * BUG(974): Monkey's audio plugin coding style fixes.
  * FEATURE(363): XForm for decode Monkey's Audio (APE) added.

 Sebastien Cevey:
  * Add the coll attr subcommand to modify collection attributes.
  * Added a field to the PLAYLIST_CHANGED signal to store the name of the changed playlist.
  * Added collection versions of mlib search/searchadd to cli.
  * Added create_playlist command to the cli.
  * Added cycle detection in the collection DAG, storage on the server now tested and stable!
  * Added support for receiving STRINGLIST arguments on the server.
  * Added the PARTYSHUFFLE operator.
  * Added the QUEUE collection operator.
  * Added the _HAS operator, fixed issues in the query generation.
  * Added the xmmsc_coll_rename command.
  * Added type_playlist command to the cli.
  * Added validation of collection structures before they are saved.
  * Added xmmsc_coll_idlist_* manipulation functions.
  * Added xmmsc_playlist_current_active to find the active playlist.
  * Allow NULL string list (e.g. query order).
  * Also trigger PL_CHANGED when a coll is first saved (auto-init Party Shuffle).
  * Append fields to fetch to the SELECT.
  * BUG(1023): Musepack file crashes the server.
  * BUG(1023): Musepack file crashes the server.
  * CLI now support collections.
  * Cast to gint64 even, safer.
  * Change recursion order (apply first, recurse then).
  * Cleanup and factorize collection code.
  * Cleanup of _get/set_int_attr functions.
  * Cleanup source, fix bugs in collection_find.
  * Code cleanup, reuse functions.
  * Collections now support 'id' as any other property (ordering, operator attribute, etc).
  * Completed the Playlist refactoring, now using collections as playlists!
  * Cross-signals between collections and playlists.
  * Do not recurse in operands of reference operators.
  * Document and cleanup the query code.
  * Documentation of the coll_idlist_* functions, plus _{get/set}_index functions.
  * Documentation spree.
  * Done stripping all the references to the old GList* playlist structure.
  * Done with mem allocation when saving/removing collections.
  * Filter operators default to case-insensitive, support for the 'case-sensitive' attribute.
  * First draft of query generation from a collection structure.
  * Fix argumen type of xmms_collection_get_int_attr
  * Fix argument names.
  * Fix bug in cli (remove command).
  * Fix bug in coll_idlist_insert
  * Fix bug in collection serialization, now works with '_active' playlist.
  * Fix bug with type of data retrieved from the mlib.
  * Fix bugs in collection de/serialization.
  * Fix bugs in collection_find, now functional.
  * Fix collection serialization issues (DB schema, refcounting).
  * Fix compilation warning and errors.
  * Fix compilation warnings.
  * Fix errors in position update while moving entries in the playlist.
  * Fix leaks and refcounting/free issues.
  * Fix mismatching declaration.
  * Fix more complex leaks.
  * Fix previous commit (missing ref').
  * Fix warning while compiling ET.
  * Fixed a reference bug in collection queries.
  * Fixed the multi-properties playlist sort function.
  * Handle DESCending ordering using the '-' prefix.
  * Identify namespaces by a string (instead of a uint).
  * Implement the COLLECTION_CHANGED signal
  * Implemented _playlist_{add,insert}_collection (added order argument).
  * Implemented server part of collection list/save/get/remove.
  * Implemented the coll_query_ids method, testing still needed.
  * Improve xmms_collection_query_ids (reuse query_infos). Don't escape numbers.
  * Improved the query generation (cleverer choice of the SELECT base property).
  * Improved validation checks in Playlists namespace and hashtable updates.
  * Initial implementation of collection_find, not working yet.
  * Limit recursion inside the collections, simplify query condition generation.
  * Make xmmsc_coll_free private.
  * Modularized _playlist commands of the CLI in subcommands.
  * Modularized collection queries and serialization in separate files.
  * More error warning on collection operands.
  * Move xmms_medialib_select to public header
  * New playlist name argument to _playlist_current_pos
  * No need to save the colldag reference.
  * No side effect in x_return_if.
  * OTHER: Added xmmsc_coll_parse, a modular string-to-collection parser.
  * OTHER: Better handling of argument list passed to xmmsc_coll_parse in the cli.
  * OTHER: Cleanup the parser code, factor with macros.
  * OTHER: Create a Default playlist on mlib creation/upgrade.
  * OTHER: Document and cleanup the collection parser.
  * OTHER: Fix cli help about search/add.
  * OTHER: Fix the cli so party shuffles use a proper reference to their input collection (reported by nesciens).
  * OTHER: Improver parser detection of CONTAINS filter.
  * OTHER: Prevent warning on parsing of invalid pattern.
  * OTHER: Put back xmmsc_medialib_select for the next release.
  * OTHER: Support xmmsc_coll_parse in the cli (for coll save, mlib search, mlib searchadd).
  * OTHER: Surround #define argument with parentheses.
  * OTHER: Updated AUTHORS file.
  * Optimize the query generation from collections.
  * Prettier playlists_list command for the xmms2 cli (emph. the active playlist).
  * Refactoring of Medialib/Playlist API (clientlib part).
  * Refactoring of Medialib/Playlist API (more breakage: server, cli, clientlib)
  * Refactoring of Medialib/Playlist API (updated the cli, fixed compilation of server)
  * Refactoring of playlists to use collections (early changes).
  * Remove over-verbose collection debugging messages.
  * Send list of properties to sort by in xmmsc_playlist_sort.
  * Style fix (else bracket position).
  * Support query_infos on the server.
  * The collection DAG is now saved/restore with the daemon (a few bugs left still).
  * Unitialized value in filter_get_operator_case in some cases.
  * Update dbversion.
  * Update playlist_sort doc
  * Update the CLI to send proper list of properties to sort by.
  * Use correct SQL operators for all filter operators.
  * Use sqlite string escape function.
  * coll_add_operand already increments ref count, no need to do it manually.

 Sham Chukoury:
  * BUG(1015): move userconfdir_get out of xmmsclient.XMMS
  * BUG(1071): Make xmmsc_userconfdir_get accept a buffer to fill
  * BUG(1072): Make xmmsc_userconfdir_get return absolute path
  * BUG(656): Respect XDG_CONFIG_HOME as per fd.o base directory spec
  * BUG(976): Use encoded url in xmmsc_playlist_insert_args
  * OTHER,PYTHONMINOR: recognise unicode strings as keys in PropDict.__getitem__
  * OTHER: Fix some whitespace issues
  * OTHER: some cleanups to xmmsclient.pyx after indentcheck
  * Update AUTHORS: add Thomas Jollans

 Thomas Jollans:
  * BUG(1009): Implement PropDict.__contains__

 Tilman Sauerbeck:
  * BUG(1027): Sort the magic specs by complexity again.
  * BUG(1032): Added missing bindata methods.
  * BUG(1033): Don't allocate the buffer for the hex string on the heap.
  * BUG(1034): Sanitized xmms_bindata_add().
  * BUG(1035): Don't use sprintf() for the ascii conversion.
  * BUG(1093): Tweaked xmmsc_userconfdir_get().
  * BUG(656): Added Xmms.userconfdir.
  * BUG(656): Include '/xmms2' in USERCONFDIR.
  * BUG(947): Handle files correctly that consist only of NUL bytes.
  * DOC: Improve documentation for xmmsc_userconfdir_get().
  * FEATURE(968): Added bindata support to Ruby bindings.
  * OTHER: Adapted Ruby code to the XMMS2 coding guidelines (finally).
  * OTHER: Added .gitignore
  * OTHER: Formatting.
  * OTHER: Spell "retrieve" correctly.

 Tobias:
  * BUG(950): Make sure to pass 1 to more_init in all broadcast functions in pythonapi
  * DOC: Updated AUTHORS file

 Tobias Rundstrom:
  * BUG(1043): When filesize == -1 we don't set duration in the metadata.
  * BUG(1048): Make sure to check len of TXX fields in id3v2 parser.
  * BUG(1075): Unbreak bindata md5 routine.
  * BUG(1076): Remove unused base64 stuff from clientlib
  * BUG(1088): The CLI now doesn't have to connect to server before it can print help
  * BUG(790): Make sure that internal functions can use sources too
  * BUG(940): Make sure that the compilers work before we do any work with them.
  * BUG(963): Don't dealloc messages before they are totaly read.
  * BUG(964): Propagate exceptions from python callbacks.
  * BUG(975): Make sure to update mediainfo in ogg streams when a new serial is found.
  * BUG(978): make it able to get the format_set call everytime.
  * BUG(981): Added options for controlling where the compiled binaries should end up.
  * BUG(981): Put python modules in platform specfic directory.
  * FEATURE(1013): Add last_started property in the Medialib
  * FEATURE(1024): Decode URL properly in cli
  * FEATURE(1050): Make buffersize configurable
  * FEATURE(1078): Implement browse method in samba xform
  * FEATURE(1079): Use xmms_xform_browse() internally in path_import
  * FEATURE(1091): Make default source preference to prefer client set values.
  * FEATURE(1094): Add functions that takes already encoded paths in python.
  * FEATURE(1094): Wrap new encoded functions in C++ API
  * FEATURE(148): Update ices to new API and redo it as a output plugin.
  * FEATURE(373): Preliminary support for gapless mp3's encoded with LAME. Expect bugs.
  * FEATURE(775): Add missing manpages.
  * FEATURE(814): Added ID3v2 comment extraction.
  * FEATURE(854): Move radd to the serverside.
  * FEATURE(854): Wrap new xmmsc_playlist_radd() in Python.
  * FEATURE(854): Wrap xmmsc_playlist_radd() in C++ bindings
  * FEATURE(942): Also provide the mimetype for the base64 stored image.
  * FEATURE(953): Added bindata api
  * FEATURE(953): Wrap bindata api in python
  * FEATURE(953): id3v2 plugin now saves art with the bindata api
  * FEATURE(965): Added result_type_bin and updated PythonAPI and ID3v2 plugin.
  * OTHER: Add missing files
  * OTHER: Added a generic strnlen
  * OTHER: Added disclaimers, and comments to the URL decoding feature of the CLI.
  * OTHER: Better check for C++ compiler.
  * OTHER: DAAP plugin updates. DNS-SD (MacOSX etc) is now supported.
  * OTHER: Fix a stupid error and add some fail checking in id3v2
  * OTHER: Fix for bigendian and DAAP
  * OTHER: Fixed speling.
  * OTHER: Fixed stupid warning in output.c
  * OTHER: Fixed two small bugs in feature 1094
  * OTHER: Free some memory in medialib_destroy()
  * OTHER: Improve error message when cli can't create configfile.
  * OTHER: Include xmms_log.h in the DAAP plugin.
  * OTHER: Let DAAP plugin send more information on browse
  * OTHER: Let xmmsc_result_decode_url() be called without result argument
  * OTHER: Make outputplugin honour errors from write method.
  * OTHER: Make sure that sources.append() work in config stage.
  * OTHER: Make xmms_output_current_id visible for plugins
  * OTHER: Plug memory leak in medialib_source
  * OTHER: Really commit the fix for big endian machines
  * OTHER: Remove a warning
  * OTHER: Removed old dnssd code
  * OTHER: Removed spam in DAAP Plugin
  * OTHER: Replaced the LAME tag parsing code from the one found in madplay.
  * OTHER: Unblock connect() call in DAAP plugin.
  * OTHER: Updated COPYING
  * OTHER: Wrap xmmsc_xform_media_browse() in C++ bindings.
  * OTHER: bug fix for streamed metadata.
  * OTHER: fix small warning
  * OTHER: make sure that we update sources in a target after we runned config.
  * OTHER: remove unecessary debug output.
  * OTHER: remove warning about unused variable
  * OTHER: remove warning in xmms2-et
  * OTHER: remove warnings
  * OTHER: unbreak strnlen
  * OTHER: update .gitignore



Changes between 0.2 DrEvil and 0.2 DrFeelgood

 Release date: 2006-07-15
 Authors contributing to this release: 6
 Number of changesets: 54
 Number of files in this release: 380

 Cole Thompson:
  * Add (broken) DAAP xform
  * Removed standalone client (xform mostly complete now)

 Daniel Svensson:
  * BUG(839): Change to medialib version 29 and provide an upgrade path.
  * BUG(839): Change to medialib version 29 and provide an upgrade path.

 Sebastien Cevey:
  * Fixed another bug in the collection API (_coll_operand_save/restore).
  * Fixed small bugs in the collection API.
  * Use xmms_ipc_msg_get_collection_alloc instead of xmmsc_deserialize_coll.

 Sham Chukoury:
  * BUG(936): Use a property to handle the PropDict sources list

 Tilman Sauerbeck:
  * BUG(922): Let SQLite do the ordering so we don't need to reverse the list.
  * BUG(931): Properly export XMMS_PATH
  * BUG(933): Don't access freed memory.
  * BUG(933): Don't access freed memory.
  * BUG(934): Sort entries in "mlib addpath" before adding them.
  * BUG(938): 0 is a valid fd, so use -1 as the default value and in the asserts.
  * OTHER: Some formatting cleanup.
  * OTHER: Warning fix.

 Tobias Rundstrom:
  * BUG(941): Add a workaround for iTunes b0rkness to the id3v2.4 parser.
  * BUG(941): Add a workaround for iTunes b0rkness to the id3v2.4 parser.
  * BUG(945): Handle Xing's 'Info' header also
  * BUG(945): Handle Xing's 'Info' header also
  * FEATURE(354): Extend xmms_xform_browse_entry_add() with extended info.
  * FEATURE(942): Store media images in medialib from id3v2 tags.
  * OTHER: Cleanup building of loadables on MacOSX
  * OTHER: Cleanup building of loadables on MacOSX
  * OTHER: Fix annoying problem with SCons adding wrong dependecys for Programs sometimes
  * OTHER: Fix annoying problem with SCons adding wrong dependecys for Programs sometimes
  * OTHER: Fix annoying problem with SCons adding wrong dependecys for Programs sometimes
  * OTHER: Fix compiler warning
  * OTHER: Plug memoryleak in xform_chain_setup
  * OTHER: Plug memoryleak in xform_chain_setup
  * OTHER: Plug memoryleak in xform_chain_setup
  * OTHER: Plug memoryleak when destroying a client.
  * OTHER: Plug memoryleak when destroying a client.
  * OTHER: Plug memoryleak when destroying a client.
  * OTHER: Plugged two ugly memory leaks in mad plugin.
  * OTHER: Plugged two ugly memory leaks in mad plugin.
  * OTHER: Plugged two ugly memory leaks in mad plugin.
  * OTHER: Style cleanup for effect.c
  * OTHER: Style cleanup for log.c
  * OTHER: Style cleanup in object.c
  * OTHER: Style cleanup in playlist.c
  * OTHER: Style cleanup in plsplugins.c
  * OTHER: Style cleanup in ringbuf_xform.c
  * OTHER: Style cleanup in sample.c and sqlite.c
  * OTHER: Style cleanup in statfs.c
  * OTHER: Style cleanup in visualisation.c
  * OTHER: Style cleanup of medialib.c
  * OTHER: Style cleanups for mediainfo.c
  * OTHER: Updated Alex's email.
  * OTHER: Whitespace removal in xmms2-launcher.c
  * OTHER: remove whitespaces in xform.c
  * OTHER: style cleanup for config.c
  * OTHER: style cleanup for ipc.c
  * OTHER: style cleanup in main.c



Changes between DrDolittle+WIP+TEST2 and 0.2 DrEvil

 Release date: 2006-07-06
 Authors contributing to this release: 8
 Number of changesets: 28
 Number of files in this release: 380

 Alexander Botero-Lowry:
  * FEATURE(884): Add a insert command to the CLI

 Anders Gustafsson:
  * BUG(926): Don't crash on vorbiscomments that are empty or don't contain a =

 Cole Thompson:
  * Added the DAAP standalone client.

 Daniel Svensson:
  * BUG(839): change source "plugins" to "plugin"

 Sebastien Cevey:
  * Added support for extraction of collections from a result.
  * Added xmmsc_coll_operand_list_save/restore, and use them now.
  * Bug fixes, header declarations and various cleanup.
  * Check for NULL instead of '\0' at the end of string lists.
  * Fix xmmsclient++ to match the refactored API.
  * Important source tree refactoring, moved collection utility functions and xlist to src/lib/xmmstypes/.
  * Improved memory alloc/deallocation of collections, changed idlist to uints.
  * Initial code for collection IPC support, including serialization, IPC command generation.
  * Initial collection API, with all the collection manipulation functions.
  * Refactor files and headers to share things for client/server.

 Sham Chukoury:
  * OTHER, PYTHONMINOR: Return values from XMMS.ioin and XMMS.ioout
  * OTHER, PYTHONMINOR: xmmsglib: return value of xmms.ioin() so gsource can be
  * OTHER: Return false on ipc error when dispatching gsource in

 Tilman Sauerbeck:
  * BUG(888): Use the full config property key when registering a new property.
  * BUG(889): Properly access the config-property-changed dict.
  * OTHER: In clear_config(), don't destroy and recreate the hash table, but remove all entries.

 Tobias Rundstrom:
  * BUG(927): Fix CoreAudio init sequence for intel macs.
  * FEATURE(354): Add a method to browse files from xform plugins.
  * FEATURE(354): Add xform_media_browse to Python bindings
  * FEATURE(354): Add xform_media_browse to Ruby bindings
  * FEATURE(929): Store part of set in the medialib.
  * OTHER: Cleanup building of loadables on MacOSX
  * OTHER: Make sure that variables have sane names.
  * OTHER: Set WIP flag for postEvil



Changes between 0.2 DrEvil-RC1 and DrDolittle+WIP+TEST2

 Release date: 2006-06-11
 Authors contributing to this release: 6
 Number of changesets: 44
 Number of files in this release: 380

 Anders Gustafsson:
  * BUG(375): Adjust some loglevels.
  * BUG(593): Fix crash in python when callback raised exception.
  * BUG(764): Fix type of current_pos broadcast when removing from playlist.
  * BUG(850): Remove log-table.
  * BUG(855): Fix glitch when doing playback_start while already playing.
  * BUG(856): Fix seek_samples_rel.
  * BUG(858): Don't use assert to validate file data in wave plugin.
  * BUG(862): Make playback status go to stopped when going to end of playlist.
  * BUG(871): Skip effects that don't handle the sample format.
  * BUG(874): Replace braindead bandaid in samba with a slightly less braindead one.
  * BUG(880): Fix seeking in vbr mp3 files.
  * BUG(885): Fix noise when doing several xmms2 next too fast.
  * FEATURE(833): Support arguments on url in client lib.
  * FEATURE(851): Add timesplayed property.
  * FEATURE(852): Calculate HVSC fingerprint on sid files.
  * OTHER: Add some doxygen comments about xform stuff.
  * OTHER: Added "chain" property to medialib, containing colon-separated list of xforms used.
  * OTHER: Don't declare variable in middle of block in icymetaint.
  * OTHER: Enable jack plugin.
  * OTHER: Fix misleading comments in clientlib.
  * OTHER: Fix some minor warnings.
  * OTHER: Make ET send chain value.
  * OTHER: Remove ChangeLog file.
  * OTHER: Remove some unused functions from medialib.c
  * OTHER: Remove spam in magic.c

 Georg Schild:
  * BUG(842): Add versioncheck for swig
  * BUG(842): Add versioncheck for swig
  * BUG(847): Add support for typed mlibPropertySet in java bindings.

 Sham Chukoury:
  * BUG(789): Check for NULL from xmmsc_result_get_error in python bindings

 Tilman Sauerbeck:
  * BUG(849): Implemented PropDict#inspect.
  * BUG(878): Properly terminated argument list for xmms_output_stream_type_add().
  * BUG(883): Xmms::Client#medialib_property_set() now wants a symbol as the key.
  * FEATURE(732): Teach Ruby about typed mlib_property_set functions.
  * OTHER: Code cleanup.
  * OTHER: Fixed a compiler warning.
  * OTHER: Make on_prepare() static.

 Tobias Rundstrom:
  * BUG(844): Unbreak volume_set
  * FEATURE(732): Made the property_set functions in python typed.
  * FEATURE(732): Made the property_set functions typed.
  * OTHER: Don't run the statfs() call everytime we access the medialib.
  * OTHER: Remove broken topsongs command from cli.
  * OTHER: Remove un-update ChangeLog.
  * OTHER: move statfs() checks from SConstruct to src/xmms/Program

 Tobias Rundström:
  * FEATURE(732): Support for typed property_set in c++ api.



Changes between 0.2 DrDolittle and 0.2 DrEvil-RC1

 Release date: 2006-05-27
 Authors contributing to this release: 14
 Number of changesets: 243
 Number of files in this release: 379

 Alexander Botero-Lowry:
  * BUG(665): Updated manpages.
  * FEATURE(774): Manpage for the xmms2-et program

 Anders Gustafsson:
  * BUG(553, 758): Move output driving thread to outputplugin.c.
  * BUG(620): Remove some more uses of XMMS_OS_*
  * BUG(631): Redo xing+crc fix that got lost in xforms conversion.
  * BUG(737): Include correct file in sdl-vis.
  * BUG(740): Fix wildcard handling in source preference in python bindings.
  * BUG(741): Put plugins/* in default source preference.
  * BUG(744): Kill xmms_audio_format_t
  * BUG(750): Do xmms_medialib_entry_cleanup in xmms_xform_metadata_collect.
  * BUG(758): Move api_mutex to outputplugin.c
  * BUG(758): Start cleaning up output.c
  * BUG(758): White space cleanups.
  * BUG(759): Reenable id3v1 in mad.
  * BUG(760): Fix seeking in id3v2 plugin.
  * BUG(771): Seeking in vorbis.
  * BUG(792): Remove bad xmmsc_result_unref in broadcast handler, causing broadcast not to be called anymore.
  * BUG(792): Send medialib_entry_changed broadcasts correctly.
  * BUG(795): Handle unsync-flag in id3v2 tags.
  * BUG(822): Filler shouldn't go to running state if killed in stopped state.
  * BUG(830): Fix race on filler buffer in output. (simplify locking too)
  * BUG(840): Minor whitespace cleanups in id3v2.
  * BUG(840): Remove the numerous amount of references to mad in id3v2 plugin.
  * FEATURE(144): Decode urls correctly when setting up xform chains.
  * FEATURE(144): First steps towards seeking in xforms.
  * FEATURE(144): Implement full seeking again.
  * FEATURE(144): Update sid plugin to xforms. (based on patch by Jonas Berlin)
  * FEATURE(733): Disable plugins not ported yet.
  * FEATURE(733): Fix shutdown of new plugin api.
  * FEATURE(733): Use new plugin api.
  * FEATURE(757): Buffer in output.c
  * FEATURE(815): Implement seeking in eq.
  * FEATURE(831): Allow metadata to be set after init in xform plugins.
  * FEATURE(833): Support arguments in url (not implemented in clientlib yet)
  * OTHER: Add missing docfile.
  * OTHER: Don't use expressions with sideeffects in macros that can cause argument to be evaluated twice in wma. (fixes metadata on !LE platforms)
  * OTHER: Fix DOS linebreak screwup.
  * OTHER: Fix plugins/ices/encode.* license screwup.
  * OTHER: Fix xmms_xform_indata_get_int argument screwup in replaygain.
  * OTHER: Fixed warning in id3v2
  * OTHER: Improve COPYING file.
  * OTHER: Indentation cleanups for plugin api commits.
  * OTHER: Move id3v2 plugin to own directory.
  * OTHER: Remove 229 lines of unused code in mad.c
  * OTHER: Remove old XMMS_MEDIALIB_ENTRY_PROPERTY_*, rename XMMS_XFORM_DATA_* to XMMS_MEDIALIB_ENTRY_PROPERTY_*
  * OTHER: Set "subtunes" property in sid.
  * OTHER: Update AUTHORS
  * OTHER: Update copyright of xmms_defs.h.in
  * OTHER: Updated AUTHORS
  * OTHER: Whitespace cleanup in faad.c
  * OTHER: Whitespace cleanups in curl and icymetaint plugins.
  * OTHER: Workaround bug in pyrex.
  * OTHER: s/XMMS/XMMS2/ in version output.
  * Revert "BUG(840): Cleanup id3v2 plugin, remove all refrences to mad"

 Daniel Chokola:
  * OTHER: Cleanup SCons stuff in src/xmms/
  * OTHER: Update copyright notices to (C) 2003-2006 XMMS2 Team

 Daniel Kamiñski:
  * FEATURE(734): Add "mlib remove" command in cli.

 Daniel Svensson:
  * BUG(735): Actually use xmms_plugin_type_t
  * FEATURE(114): Include MMS transport plugin using libmms.
  * FEATURE(144): Update gnomevfs transport to the xforms api.
  * FEATURE(144): Update jack output plugin to the xforms API.
  * FEATURE(144): Updated musepack to xforms API.
  * FEATURE(144): Updated smb plugin to xforms API
  * OTHER: Added samba and sun to what I've done in AUTHORS
  * OTHER: Changed my copyright notices to XMMS2 Team
  * OTHER: Do not call _format_set before _open for output xforms.
  * OTHER: Make APEv2 parser not fail when unwanted tags found.
  * OTHER: Update alsa output to the xforms API.
  * OTHER: jack plugin xmms2 style cleanup

 Georg Schild:
  * BUG(724): Improve java bindings.
  * BUG(752): Make javabindings build with gcc 2.95
  * BUG(766): JMain needs xmmsc_io_disconnect() when spinning down
  * BUG(776): Fix license on some files in java bindings.
  * BUG(777): Fix java coding style.
  * BUG(810): Improve javabindings (old and new). JMain works better now and Xmms2Backoffice uses wait/notify for locking
  * Bug(778): Fix parameter for pluginList*() in Xmms2.java to follow

 Jonas Berlin:
  * BUG(756): Round duration correctly in cli.
  * BUG(772): Reimplement seeking in wave plugin.
  * BUG(800): Throw away peek buffer only when seek succeeds.
  * BUG(804): Fix seeking of mp3 in wave.
  * BUG(806): Make id3v2 & nulstripper seek functions return correct value.
  * FEATURE(144): Update curl to xforms API.

 Jonne Lehtinen:
  * BUG(745): xmmsc_medialib_remove_entry should take uint32_t instead of int32_t
  * BUG(843): Fix C++ bindings compilation on 64 bit arch.
  * Fix bug where broadcasts would always get disconnected.
  * Make (C++ bindings) Lists const correct.
  * OTHER: Add Quit handler for Client class.
  * OTHER: Add typedefs for slots, clean up helpers header a bit.
  * OTHER: Added 'contains' method for dicts to check if the dict has such key.
  * OTHER: Added async functions for Medialib class.
  * OTHER: Added async versions of Client::stats and Client::pluginList
  * OTHER: Added function wrappers for asynchronous methods.
  * OTHER: Added generic callback handler for xmmsclient++ async methods.
  * OTHER: Added scons file for xmmsclient++
  * OTHER: Change async functions to use the typedefs.
  * OTHER: Change callSignal functions to be inline instead of static
  * OTHER: Change foreach function names to 'each'... grr, qt...
  * OTHER: Changed boost::any to boost::variant.
  * OTHER: Check for types in List constructors.
  * OTHER: Comment Client class and modify the implementation a little so that doxygen finds the correct definitions and references.
  * OTHER: Comment Config class.
  * OTHER: Comment GMainloop class.
  * OTHER: Comment List class (ignore the specializations from the doxygen, commenting on List<T> and SuperList should suffice).
  * OTHER: Comment Playback class and fix volumeGet to return Dict instead of unsigned int.
  * OTHER: Comment Stats class and reorder the functions a bit (for better output from doxygen).
  * OTHER: Comment helpers and fix the line widths.
  * OTHER: Comment signal.h, this won't show up on the doxygen by default though.
  * OTHER: Comment the rest of the functions in Medialib class, reorder the functions a bit (for doxygen) and fix comments in Playlist class.
  * OTHER: Comment the rest of the functions in Playlist class.
  * OTHER: Comment typedefs and fix the Xmms::bind comment not to link boost::bind on themselves.. Couldn't fix the long and incorrect reference list though.
  * OTHER: Commented exceptions, some changes.
  * OTHER: Create MainloopInterface to implement mainloops and modify files to work with it properly.
  * OTHER: Created a singleton to handle storing and deletion of Signal objects.
  * OTHER: Delete custom mainloop and unref connection on disconnection. Also
  * OTHER: Fix doxygen warnings for client.h and prevent doxygen from reordering the functions (required for @overload command).
  * OTHER: Fix empty list bug.
  * OTHER: Fix pkg-config deps mess with cpp bindings
  * OTHER: Implement Glib Mainloop integration.
  * OTHER: Implement Medialib class.
  * OTHER: Implement Xmms::Dict::get, templated function to retrieve a value from the dict.
  * OTHER: Implement async functions for Playback class.
  * OTHER: Implement async functions for Playlist class.
  * OTHER: Implement broadcast/signals for Playback class.
  * OTHER: Implement disconnect callback, fix leak if setMainloop is called multiple times (bad thing anyway usually).
  * OTHER: Implement foreach for Dict and PropDict.
  * OTHER: Implement missing Playback::CurrentID sync and async versions.
  * OTHER: Implemented sync playlist functions in xmmsclient++.
  * OTHER: In xmmsclient++, wrapped C function calling and checks in one function and made implemented functions to use it instead.
  * OTHER: Make scons install all xmmsclient++ headers.
  * OTHER: Overload signal stuff for empty argument list (Signal< void >)
  * OTHER: Remove obsolete *_foreach function completely (Function declarations were still there).
  * OTHER: Remove the stupid Xmms::Detail namespace and move SuperList to the Xmms namespace.
  * OTHER: Removed old shared_ptr header from client.h
  * OTHER: SignalHolder implementation.
  * OTHER: Simplified the signal code, removed shared_ptr, unified template specializations.
  * OTHER: Specialize extract_value for xmms_playback_status_t* (Playback::Status)
  * OTHER: Wrap boost::bind in Xmms::bind for easier use.
  * OTHER: delete mainloop in client destructor if it exists.
  * Use StatusSlot for broadcastStatus instead of UintSlot.

 Juho VÀhÀ-Herttua:
  * BUG(507): Make XMMS2 compile on Solaris.
  * BUG(678): Glibify time() call in mediainfo.c.
  * BUG(769): Fix ringbuf bug causing underrun loops on eos.
  * BUG(829): Make equalizer plugin check for enabled config value.
  * BUG(832): Fix pkgconfig value of WMA to be correct.
  * FEATURE(115): Include ASF/WMA transform plugin which uses ffmpeg library.
  * FEATURE(144): Enable seeking in faad plugin and remove compiler warnings.
  * FEATURE(144): port faad plugin to xform API and update the copyright note
  * FEATURE(784): Gapless playback of Nero encoded AAC files.
  * FEATURE(815): Replace the old equalizer with a new one from EQU project.
  * OTHER: Clean up the equalizer code to conform style requrements.
  * OTHER: Clean up the faad Plugin file to set correct flags.
  * OTHER: Fix compilation bug in new equalizer.
  * OTHER: Update COPYING and wma license to be correct.

 Pauli Virtanen:
  * FEATURE(725): Wrapper for xmmsc_medialib_playlist_list in Python bindings

 Sebastien Cevey:
  * BUG(755): Change xmmsc_result_source_preference_set to take char**
  * BUG(755): Change xmmsc_result_source_preference_set to take char**
  * BUG(783): Fixing xmmsc_result_get_dict_entry_* functions introduced in -devel.
  * BUG(783): Moved functions around into correct (possibly new) modules, removed OtherControl module.
  * BUG(783): Renamed xmmsc_result_get_dict_entry_int32/uint32/str to xmmsc_result_get_dict_entry_int/uint/string (resp.),
  * BUG(783): rename playlist_insert/add to playlist_insert/add_url
  * OTHER: Add sqlitePrepareString method to Medialib.
  * OTHER: Added a PropDict class.
  * OTHER: All functions now added, including new modules (config, stats).
  * OTHER: Cleanup indent in stats.
  * OTHER: Document mainloop.h and listener.h
  * OTHER: Fix PropDict::setSource to use the heap.
  * OTHER: Fix crash of the mainloop on disconnection.
  * OTHER: Fix headers to consider new xform plugin types.
  * OTHER: Hide private details from doc.
  * OTHER: Insert xmms2 listener on reconnection.
  * OTHER: Remove Xmms::Listener from mainloop on disconnection.
  * OTHER: Remove deprecated Detail::*_foreach functions.
  * OTHER: Renamed xmmsclient++2.h to xmmsclient++.h
  * OTHER: Some more commenting in Client.
  * OTHER: Update AUTHORS with Eclipser and theefer's infos.
  * OTHER: Update all classes to use MainloopInterface.

 Tilman Sauerbeck:
  * BUG(653): Add xmmsc_configval_register() to the Ruby bindings.
  * BUG(736): Support MP3 data in wave files.
  * BUG(754): Fixed propdict handling.
  * BUG(767): Temporary fix. atm, only the first xform in the chain doesn't have a plugin set, so we gather meta data from all the xforms but the first one.
  * BUG(768): Added nulstripper transform.
  * BUG(770): Ported effect stuff to transforms. Replaygain only atm.
  * BUG(773): Only store id3v1 tags when the metadata property hasn't been set before (ie when there's no equivalent id3v2 tag). Not configurable yet.
  * BUG(779): Use peek instead of reads in nulstripper so we can get rid of the seek call.
  * BUG(780): Cleaned up compute_gain() calls.
  * BUG(785): Spelling fixes.
  * BUG(808): Unbreak FLAC tags.
  * BUG(809): Read replaygain tags for FLACs. Note that only 'modern' style rp tags are read. I don't know whether FLAC wrote 'old' style tags at a point.
  * BUG(811): Unbreak xmms_output_volume_get().
  * BUG(812): Check arguments in xmmsc_*.
  * BUG(813): Ignore seek requests for +0/-0 seconds. Also improved argument handling.
  * BUG(814): Read "comment" tags for Vorbis and FLAC files.
  * BUG(816): Don't do the utf8-to-locale conversion for data that will be g_print()'ed, because it will handle the conversion itself.
  * FEATURE(144): Implement seeking for FLAC.
  * FEATURE(144): Ported the diskwrite plugin to the transforms API.
  * FEATURE(144): Ported the null plugin to the transforms API.
  * FEATURE(144): Ported the wave plugin to the transforms API.
  * FEATURE(144): vorbis/flac don't need to make sure that the read and seek methods aren't called at the same time manually anymore as that's handled by the transforms API now.
  * FEATURE(834): Added Xmms::VERSION.
  * OTHER: 'write'-type output plugin need both open and close methods.
  * OTHER: Cleaned up the id3v2 plugin. Removed "mad" prefix from functions, since mad isn't used at all.
  * OTHER: Code cleanup.
  * OTHER: Disable the musepack plugin until it's ported to the transforms API.
  * OTHER: Fix nulstripper includes.
  * OTHER: Fix silly extra cast in wave.c.
  * OTHER: Fixed a few compiler warnings that only occur when enabling optimizations.
  * OTHER: Fixed formatting; apparently I'm the only who cares.
  * OTHER: Glibify some parts of xform.c
  * OTHER: Implementing seeking for replaygain.
  * OTHER: Improve replaygain's format handling.
  * OTHER: Make add_metadatum static.
  * OTHER: Make functions static.
  * OTHER: Make sure a value is return from non-void functions.
  * OTHER: Make xmms_nulstripper_plugin_setup static.
  * OTHER: Provide a fallback in xmms_xform_shortname_get() for xforms without a plugin.
  * OTHER: Slight code cleanup.
  * OTHER: Some formatting fixes.
  * OTHER: Tweaked some error messages.
  * OTHER: Use proper return values in read methods.
  * OTHER: Whitespace/formatting cleanup.

 Tobias:
  * BUG(840): Cleanup id3v2 plugin, remove all refrences to mad

 Tobias Rundstrom:
  * BUG(730): Fix compilation flags for mDNS/dns_sd
  * BUG(739): C89 fixes.
  * BUG(762): Remove views from medialib.
  * BUG(781): When a client edits mlib-entries the mlib_entry_changed_broadcast is now called
  * FEATURE(144): Made CoreAudio work with transforms API.
  * FEATURE(144): Updated CoreAudio output to xforms API
  * FEATURE(144): port FLAC plugin to xform API
  * FEATURE(275): Assert if user puts medialib.db on a remote filesystem.
  * FEATURE(761): Make log function include file:row
  * OTHER: Add -install_name on macosx
  * OTHER: Added xmmsclient++ checks for libboost
  * OTHER: Cleanup SConstruct a bit.
  * OTHER: Disable some plugins
  * OTHER: Fix stupid scons typo.
  * OTHER: Make output_status take xmms_playback_status_t instead of int
  * OTHER: Make some error messages use xmms_log_error instead of DBG
  * OTHER: Provide upgrade path between v26 and v27
  * OTHER: Set WIP flag
  * OTHER: We do now not free the query before we log.
  * OTHER: expose xform_iseos
  * OTHER: fix logic in xmms_output_plugin_verify
  * OTHER: temporary ugly fix for building on darwin until we cleanup scons



Changes between 0.2 DrCox and 0.2 DrDolittle

 Release date: 2006-03-27
 Authors contributing to this release: 12
 Number of changesets: 140
 Number of files in this release: 315

 Alexander Botero-Lowry:
  * FEATURE(630): Added a medialib_entry_add signal.
  * FEATURE(641): property_remove method

 Anders Gustafsson:
  * BUG(695): Fix race when seeking in vorbis.
  * FEATURE(144): xform plugins
  * FEATURE(198): Java bindings.
  * OTHER: Updated AUTHORS.

 Chris Morgan:
  * FEATURE(696): Update jack plugin to new Volume API

 Dan Chokola:
  * FEATURE(649): Add plugin_list to ruby bindings

 Daniel Chokola:
  * BUG(650): Split plugin "name" string and add plugin versioning
  * BUG(653): Ruby:: add bindings for xmmsc_main_stats
  * BUG(655): Fix crash in volume broadcast
  * BUG(664): broadcast_configval_changed now uses the config property's key as the dict entry's key and the config property's value as the dict entry's value.

 Daniel Svensson:
  * BUG(327): Hide stderr when running configuration tools.
  * OTHER: Add startup script for medialib-updater
  * OTHER: Added prepare_string to python bindings.
  * OTHER: Adding xmmsc_result_get_class to C++ bindings via getClass()
  * OTHER: Plug mem-leak in medialib-updater
  * OTHER: medialib-updater updated to the current API.
  * OTHER: xmmsc_result_type_get -> xmmsc_result_get_class

 Georg Schild:
  * BUG(720): javabindings codecleanups
  * FEATURE(198): Java bindings.

 Jonne Lehtinen:
  * Added List class.
  * OTHER: Adding a Dict wrapper class to xmmsclient++.
  * OTHER: Proper handling of Dicts using static maps.
  * OTHER: Refactor the mainloop to be unique, change methods to use Dicts and DictLists and be sync-safe.

 Sebastien Cevey:
  * BUG: Fixed erroneous casting in generic_handler.
  * Cleaner handling of MainLoop creation in Client.
  * Commit first drafts of the new xmmsclient++, most code by Eclipser.
  * Create an Xmms::Plugins namespace for plugin types.
  * Created subclass to circumvent absence of template typedefs.
  * DOC: Fixed comments in clientlib.
  * FEATURE(616): format_pretty_list in cli should check $COLUMNS
  * FEATURE(654): Support for * wildcard in sources
  * Fix more bugs, include MainLoop in Client (badly) ; mainloop now tested and working!
  * Fixed comments in result.c.
  * Fixed more of ++_methods.h, including configvals.
  * Make everything compile, including mainloop and listener.
  * Now have signal and slots matching the result class.
  * OTHER: Simplified the usage of signals in the C++ clientlib.
  * OTHER: Use signal class instead of signal1.
  * Small coding and organization cleanup in C++ bindings.
  * Transformed template result classes into static classes, now properly typedef'd

 Tilman Sauerbeck:
  * BUG(637):Added result typification.
  * BUG(653): Wrap xmmsc_io_need_out_set_callback() in the Ruby bindings. Patch by Dan Chokola.
  * BUG(653): Wrap xmmsc_medialib_get_id() in the Ruby bindings. Based on a broken patch by Dan Chokola.
  * BUG(653): Wrap xmmsc_medialib_playlist_list() in the Ruby bindings.
  * BUG(653):Wrap xmmsc_configval_list() in the Ruby bindings.
  * BUG(653):Wrap xmmsc_medialib_playlist_remove() in the Ruby bindings.
  * BUG(660): Emit the current volume in broadcast_volume_changed.
  * BUG(669):xmmsc_configval_list() now returns a dict that contains the config property's names and values instead of a list of names. Patch by Dan Chokola.
  * BUG(672):Tweak Ruby module/class names. Patch by Dan Chokola.
  * BUG(672):Update the sample script, too.
  * BUG(682): The argument to Xmms::Client#plugin_list is optional now.
  * BUG(685): Fix bad memory usage in xmms_config_property_register().
  * BUG(685): Unbreak xmmsc_configval_list(). The bug was introduced by the patch for bug 669.
  * BUG(687): Fixed the converter.c builder.
  * BUG(688): snd_mixer_handle_events() returns the number of events that occured on success (this isn't documented), so we need to check for err < 0 to determine if an error occured or not.
  * BUG(689): Initialize the command argument in xmms_object_emit_f().
  * BUG(690): Remove output->object_mutex since it's not needed.
  * BUG(694): Replace 'cid' with 'cookie' in the various APIs. This also removes xmmsc_result_cid() from the public libxmmsclient interface.
  * BUG(699): Make sure xmms_output_open() unlocks the API mutex.
  * BUG(705): Fixed a typemap bug in the Java bindings.
  * BUG(707): Use g_usleep() instead of nanosleep() in the null plugin.
  * BUG(721): Properly evaluate the dict in handle_config().
  * BUG(722): Use xmms_ipc_msg_put_uint32() to store the unsigned int new_pos in xmmsc_playlist_move() instead _put_int32().
  * BUG(723): Don't enforce that XMMS_PATH is set.
  * FEATURE(630):Unsuckify the Ruby method.
  * OTHER: Close the device _before_ returning from the function. That bug was introduced by the fix for bug 703.
  * OTHER: Code cleanup.
  * OTHER: Code cleanup/formatting.
  * OTHER: More Ruby bindings macro voodoo crap.
  * OTHER: Moved the declarations of xmmc_result_seterror() and xmmsc_result_restartable() to the private header file.
  * OTHER: Moved type definitions above function prototypes.
  * OTHER: Remove some casts that aren't needed anymore.
  * OTHER: Removed xmms_ipc_msg_get(), as it's both buggy and unused.
  * OTHER: Removed xmms_ipc_msg_get_reset(), it's not used.
  * OTHER: Update alsa.c copyright.
  * OTHER:Indentation fix.
  * OTHER:Ruby bindings code cleanup.
  * OTHER:Use the proper type for the method argument in Client#plugin_list.

 Tobias:
  * BUG(703): Make sure that we check return value of snd_pcm_open()

 Tobias Rundstrom:
  * BUG(631): Fix XING headers in MP3 files with CRC headers.
  * BUG(635): Ruby 1.9 dectection patch by Dan Chokola
  * BUG(643): Make quit function in main set a timeout and return.
  * BUG(652): rename xmmsc_main_status() -> xmmsc_main_stats()
  * BUG(658): Fix complation for C89 compilers.
  * BUG(667): Move decoder_init_for_decoding into the while loop.
  * BUG(668): Make sure that medialib id is set before sending signal.
  * BUG(668): Set error string when asking for a ID that doesn't exsist.
  * BUG(670): change clientlib functions taking char* where const char* would be sufficient
  * BUG(673): Remove , at end of enums.
  * BUG(675): Temporary fix for JAVA_HOME for DrDolittle release.
  * BUG(676): Fix rubybindings for OSX
  * BUG(681): Don't FPE in MAD's duration calculation.
  * BUG(684): Rename Log.value to Log.percent
  * BUG(702): Fixed crashbug in Jack plugin.
  * BUG(710): Make OSS format probing work in all cases.
  * BUG(711): Return NULL instead of assert in volume_get
  * BUG(712): Don't assert on play when output plugin isn't loaded.
  * BUG(713): Don't assert if the volume thread isn't running.
  * DOC(648): Fix error message patch from Dan Chokola.
  * DOC: Update copyright year
  * DOC: Updated AUTHORS
  * DOC: We now depend on SCons 0.96.90, enforce this.
  * DOC: show which pkg-config modules we are searching for
  * Disable autogeneration of C++ methods.
  * FEATURE(114): Converted vorbis plugin to xforms.
  * FEATURE(644): Add multiple socket support for xmms2d
  * FEATURE(662): Added more indexes to SQLite.
  * FEATURE(662): Found the big resource hog.
  * FEATURE(662): Only emit unindexed signal once every 50th entry.
  * FEATURE(662): Started optimization rounds for medialib imports.
  * FEATURE(662): let path_import call insert directly to avoid running select MAX()
  * FEATURE(669): Added mDNS agent.
  * FEATURE(693): Reduce resources used by xmmsipc
  * FEATURE(716): Utilize the ANALYZE table to speed up medialib.
  * OTHER: Add whitespace
  * OTHER: Added more methods for promoe
  * OTHER: Don't leak huge amount of memory in medialib-updater.
  * OTHER: Don't try to link on osx
  * OTHER: Fix configuration output.
  * OTHER: Fix ruby for other platforms, breakage in previous patch.
  * OTHER: Make mDNS clients check XMMS_PATH_FULL instead of XMMS_PATH
  * OTHER: Remove some debugging info.
  * OTHER: Removed warning.
  * OTHER: Revert C++ wrapper.
  * OTHER: Revert patch for bug 667.
  * OTHER: Rework ruby compliation on macosx and remove dependency on unreleased SCons
  * OTHER: Set WIP flag for next release
  * OTHER: Use resonable flags in the c++ library file.
  * OTHER: add getCID() command to c++ libs.
  * OTHER: added more C++ methods
  * OTHER: fail in xmms_medialib_entry_to_list if we came back empty handed.
  * OTHER: fix merge error.
  * OTHER: fix potential memory leak in mad plugin.
  * OTHER: fixed typo.
  * OTHER: removed old script code.
  * OTHER: speling misstake.
  * OTHER: use source argument in unresolved query also.
  * OTHER: xmms2-et didn't quit if xmms2d wasn't running.



Changes between 0.2 DrBombay and 0.2 DrCox

 Release date: 2006-02-21
 Authors contributing to this release: 12
 Number of changesets: 103
 Number of files in this release: 296

 Alexander Botero-Lowry:
  * BUG(598): Remove old code blocks.
  * DOC(437): Update documentation for xmms2d.

 Anders Gustafsson:
  * BUG(121): Fix race when writing message to clients.
  * BUG(358, 567): Read bitrate from vbr-files in mad. Set vbr flag in mediainfo.
  * BUG(587): Fix rounding error in resampler.
  * BUG(595): Make xmms_medialib_entry_new* propagate errors.
  * BUG(607): Add support for DragonFlyBSD (from Robert Sebastian Gerus)
  * BUG(613): Make it work on SQLite 3.3.3
  * BUG(619): Allow platforms with "-" in name.
  * BUG(619): HP-UX portability.
  * BUG(620): Set default output with scons magic instead.
  * BUG(623): Don't start medialib sessions recursivly in xmms_medialib_select_and_add
  * BUG(624): Set create correctly in xmms_sqlite_open
  * BUG(625): Use ifnull(max(id),0) in prepare_playlist to avoid error with no playlists
  * BUG(626): Make xmms_sqlite_query_table report errors via xmms_error_t
  * BUG(629): Store url in transport to make life easier for playlistplugins.
  * FEATURE(627): Only report errors with xmms_log_error, use xmms_log_info for info
  * FEATURE(633): Add medialib_begin debugging.
  * FEATURE(634): Make et report number of playlist loads and medialib resolves.
  * OTHER: Add +WIP tag to version
  * OTHER: Cleanup source-handling a bit medialib.c
  * OTHER: Fix error-handling in query-functions in sqlite.
  * OTHER: Handle G_LOG_LEVEL_CRITICAL too.
  * OTHER: Handle symbolic refs in .git/HEAD
  * OTHER: Make resolving of git commit id use git-rev-parse.
  * OTHER: Make xmms2d -V more verbose.
  * OTHER: Make xmms_object_cmd_value_str_new take const gchar *
  * OTHER: Report used sqlite version.
  * OTHER: Update AUTHORS
  * OTHER: Updated AUTHORS
  * OTHER: Use full precision when calculating xing vbr bitrate.
  * OTHER: mad.c cleanups. Based Daniel Chokola's patch.
  * OTHER: rework mediainfo-resolver-loop.

 Bernhard Leiner:
  * BUG(136): Update sun output plugin.

 Chris Morgan:
  * BUG(576): Fixes so that xmms2d doesn't abort when jackserver isn't reachable

 Daniel Chokola:
  * FEATURE(323): Report FLAC bitrate from header.

 Daniel Svensson:
  * BUG(382): Don't mix async/sync in xmms2 cli status
  * BUG(577): Teach APEv2 tag parser to parse more tags.
  * BUG(610): make query param to xmmsc_medialib_add_to_playlist const
  * BUG(611): XMMS2 cli client split to many files
  * BUG(612): Extract year from APEv2 tags.
  * BUG(618): in xmms2 list only increase total_playtime with valid values.
  * OTHER: Glibify the xmms2 cli client.
  * OTHER: Replace ugly sprintfs with g_build_path in the xmms2 cli
  * OTHER: Replace use of printf/fprintf with print_info/print_error
  * OTHER: SConstruct portability
  * OTHER: Unused headers in xmms2_client.h removed.
  * OTHER: scons pkg-config helper portability

 Jens Taprogge:
  * DEBIAN: New snapshot, use new intro clip
  * [DEBIAN] New snapshot

 Juho VÀhÀ-Herttua:
  * BUG(608): Fix faad plugin to handle MusicBrainz tags.

 Sebastian Cevey:
  * FEATURE(606): Add relative seeking to clientlib.

 Sebastien Cevey:
  * BUG(615): xmmsc_init now takes a const char* instead of a char*.
  * Made XMMSResultList a top-class.
  * Modularized XMMSResult into typesafe subclasses.
  * Rename getDict/Prop/List and make them return objects on stack.
  * Replaced signal pointer by an object.
  * Solved the issue with mixed-type dicts.

 Tilman Sauerbeck:
  * BUG(29,484):New mixer/volume API.
  * BUG(549):Ruby documentation update from Dan Chokola with some tweaks and additions by myself.
  * BUG(599):C89 cleanup patch from Alexander Botero-Lowry.
  * BUG(601): Rename the "configlist" command to "config_list" for consistency.
  * BUG(602):Mark the 'autosaved' playlist as an internal one.
  * BUG(603): Make xmms_medialib_entry_to_list() fail if 'entry' is zero.
  * BUG(604):Add volume control to the CLI. Patch by Dan Chokola.
  * FEATURE(600):Ruby bindings for the new mediainfo reader calls.
  * OTHER:Add my GnuPG key information to AUTHORS.
  * OTHER:Fix a potential memory management problem wrt xmms_ipc_msg_get_string_alloc().
  * OTHER:Fix stupid bug in the OSS mixer API.
  * OTHER:Fixed a compiler warning.
  * OTHER:Fixed some bad whitespace.
  * OTHER:Implement XmmsClient#medialib_playlists_list.
  * OTHER:Remove debugging helper from xmmsc_result_decode_url().
  * OTHER:Remove outdated comment.

 Tobias Rundstrom:
  * BUG(590): Check medialib id before adding it to playlist.
  * FEATURE(29): Fixed volume api in coreaudio plugin.
  * FEATURE(29): Wrap the new volume API for Python.
  * FEATURE(580): Let callback based plugins propagate error from the status_method.
  * FEATURE(600): Add pythonbindings for the mediainfo reader status.
  * FEATURE(600): Added a status broadcast and a counter for the mediainfo reader.
  * FEATURE(605): Let callback based plugins propagate errors.
  * FEATURE(622): Add transaction support to medialib.
  * FEATURE(627): Report errors with xmms_log_error in wave plugin.
  * FEATURE(632): Added a C++ wrapper to the clientlib.
  * OTHER: Be able to list a empty playlist.
  * OTHER: Be more strict about the namespace in c++ wrapper.
  * OTHER: Better reporting of SQL errors from the server.
  * OTHER: C++ binding updates.
  * OTHER: Changed decoder_iseos to make subsequent call to ringbuf_iseos instead of checking decoder->threads status.
  * OTHER: Cleanup some warnings in mediainfo.c
  * OTHER: Don't double free mediareader on exit.
  * OTHER: Don't hold the medialib lock forever in check_id() function.
  * OTHER: Fixed some warnings in output.c
  * OTHER: Release medialib sessions better(?) in the medialib_playlist code.
  * OTHER: Remove cd player plugin.
  * OTHER: Remove useless directory.
  * OTHER: Removed ugly warning.
  * OTHER: Report VBR bitrate in bits not kbits
  * OTHER: Report errors better from sqlite
  * OTHER: Speling errors.
  * OTHER: Stupid bug in mediainfo.
  * OTHER: Use same type everywhere in xmmsclient.h
  * OTHER: make xmmsclient++_methods.h depend on xmmsclient.h



Changes between 0.2 DrAlban and 0.2 DrBombay

 Release date: 2006-01-13
 Authors contributing to this release: 10
 Number of changesets: 54
 Number of files in this release: 291

 Alexander Botero-Lowry:
  * BUG(540): Fix playlist move documentation.
  * BUG(571): Fix compilation FreeBSD 4.x

 Anders Gustafsson:
  * BUG(515): Remove bogus x_list_remove call in xmmsc_ipc_result_lookup
  * BUG(524): Allow checkheader to take a list
  * BUG(528): Make has_key in PropDict respect source_preference.
  * BUG(529): Fix handling of length field in frames in id3v2.4 tags.
  * BUG(545): Encode url correctly when adding songs to medialib only.
  * BUG(546): Remove useless src/xmms/xmms2.conf file.
  * BUG(562): Don't crash in transport_open if entry has disappeared from medialib.
  * BUG(573): Make xmms_transport_read_line work with files without ending \n
  * BUG(574): Report tracknumber correctly in faad.
  * BUG(578): Fix buffersize calculation in resampler, and make it not realloc every buffer.
  * FEATURE(559): Check glib version. config-, compile- and runtime.
  * OTHER: Make sqlite-threadhack logmessage use info level instead of debug.
  * OTHER: Revert "BUG(558): Flush soundcard buffer on stop."
  * OTHER: Updated AUTHORS and INSTALL files.
  * OTHER: Updated version to -WIP
  * OTHER: s/cache/index/ in gittools.py

 Daniel Svensson:
  * BUG(570): script install message should not lie

 Jens Taprogge:
  * DEBIAN: Add missing file debian/xmms2-et.install.
  * [DEBIAN] Add libsidplay2-dev to Build-Depends; remove et-launcher
  * [DEBIAN] Force the version of -et to match -core.
  * [DEBIAN] New snapshot
  * [DEBIAN] New snapshot (0.2 - DrAlban)

 Juho Vaha-Herttua:
  * FEATURE(503): Use platform independent GOption instead of getopt when parsing options to xmms2d

 Juho VÀhÀ-Herttua:
  * BUG(572): faad plugin doesn't read track id, year etc. from mp4 files

 Sebastien Cevey:
  * BUG(511): Make xmmsc_sqlite_prepare_string take const char * instead.

 Tilman Sauerbeck:
  * BUG(514):Don't open/close the ALSA mixer handle in the OPEN/CLOSE methods.
  * BUG(525):Warn about results_list misuse.
  * BUG(541): Register the "enabled" config properties after loading the plugin, not when it's used for the first time.
  * BUG(542): Made xmms_plugin_info_add() check for NULL arguments.
  * BUG(543):xmms_plugin_new() rejects invalid "type" values now.
  * BUG(544): Don't accept NULL for 'shortname' in xmms_plugin_new().
  * BUG(547):Added description for XMMS_ERROR_EOS.
  * BUG(551): Handle NULL hash table in xmms_object_cmd_value_free().
  * BUG(557):Fix documentation for xmmsc_playlist_move() (client libraries and CLI)
  * OTHER:Cleaned up ALSA mixer code a bit.
  * OTHER:Code cleanup.
  * OTHER:Code cleanup.
  * OTHER:Code cleanup.
  * OTHER:Code cleanup.
  * OTHER:Code cleanup.
  * OTHER:Code cleanup.
  * OTHER:Fixed xmmsclient error messages.
  * OTHER:Formatting.

 Tobias:
  * BUG(523): When adding a new entry, handle an empty Media table.
  * BUG(527): Fix crashbug in playlist_insert when playlist len was 0

 Tobias Rundstrom:
  * BUG(518): xmms_sqlite_query_array now handle errors and empty rows.
  * BUG(548): Added new intro clip.
  * BUG(558): Flush soundcard buffer on stop.
  * FEATURE(552): Make flush on pause a configuration value.
  * FEATURE(554): Add size property to entries.
  * FEATURE(579): Add topsongs command to CLI client.
  * OTHER: Postmerge from -tilman.



Changes between 0.1DR2.2 and 0.2 DrAlban

 Release date: 2005-12-18
 Authors contributing to this release: 15
 Number of changesets: 195
 Number of files in this release: 291

 Alexander Botero-Lowry:
  * FEATURE(387): Add proxy configuration to curl plugin.

 Anders Gustafsson:
  * BUG(257): Don't die when alsa returns -EINTR
  * BUG(276): Rip out daemonisation from xmms2d.
  * BUG(289): Encode paths so they are valid utf8 when stored in medialib.
  * BUG(359): Make sure transport stops buffering before seeking.
  * BUG(374): Use glib's function for logging
  * BUG(375): Adjust loglevels for messages (WIP)
  * BUG(386): Do proper cleanup in diskwrite plugin.
  * BUG(391): Fix crash on bad options to xmms2d.
  * BUG(401): Add -q to decrease verbosity of xmms2d
  * BUG(407): Fix playlist sort crash on missing mediainfo.
  * BUG(408): Make playlist sort stable.
  * BUG(410): Don't update gitcache if running as another user.
  * BUG(425): Do explicit fflush after printf in log.c.
  * BUG(438): Don't die when wakeup pipe couldn't be allocated. Fix potential deadlock.
  * BUG(441): Use "PRAGMA user_version" in sqlite.
  * BUG(474): Don't rebuild manpages on every build.
  * BUG(476): Fix race when creating decoder thread.
  * BUG(478): Don't crash when changing plugin while playing.
  * BUG(478): Fix changing outputplugin without breaking other things.
  * BUG(478): Fix got lost in some merge.
  * BUG(482): Fix deadlock when seeking after buffer thread reached EOF in transport
  * BUG(498): Reset playtime when stopping playback.
  * BUG(501): Fix compilation on OpenBSD (from Bernhard Leiner)
  * BUG(502): Give more useful errormessage when plugin dir not found.
  * BUG(508): Fix massive memleak in visualisation layer.
  * FEATURE(276): Add xmms2-launcher program.
  * FEATURE(282): Use one dict for all sources in python. Backwards compatible!
  * FEATURE(453): Quit broadcast, emitted when the daemon terminates.
  * FEATURE(468): Add xmmsc_result_decode_url function.
  * FEATURE(477): Put information about what decoder/transport and converter is used in medialib.
  * FEATURE(487): Finish xmms2-et.
  * FEATURE(487): Phone home agent that provides testcoverage data.
  * OTHER: Allow cmd's to have more than two arguments.
  * OTHER: Clean up transport more, delay seeking until first read after seek.
  * OTHER: Cleanup transport.c
  * OTHER: Use commithash-file from snapshot to provide nice version information.

 Chris Morgan:
  * BUG(334):Fixed noise in Jack plugin.

 Daniel Chokola:
  * BUG(397):Added missing xmms_medialib_end() call.
  * OTHER: Fix compilation of medialib-updater
  * OTHER: Removed magic.h from some plugins.
  * OTHER: Updated samba plugin to new API
  * OTHER: remove M3U warning.

 Daniel Svensson:
  * BUG(356): Silence output when playlist is empty.
  * BUG(426): Store tracknr as int
  * BUG(426): Store tracknr as int in flac too
  * BUG(428): musepack decoder plugin
  * BUG(460): Check if the stream is seekable instead of assuming it is.
  * BUG(461): Do not assert in musepack's get_mediainfo
  * BUG(462): musepack ape-tag portability
  * OTHER: Updated comments for the APE parser.

 Jens Taprogge:
  * [DEBIAN] New snapshot

 Johannes Heimansberg:
  * FEATURE(445): Sort entries in CLI that should be removed.

 Juho Vaha-Herttua:
  * BUG(350): Fix problems with possible empty ID3 tags and make the detection little cleaner.
  * BUG(360): Enabled faad plugin again with a check for NeAACDecInit2 now and
  * BUG(361): Update for modplug plugin magic checks instead of mime type checking.
  * BUG(402): Added magic checks for AAC in MPEG
  * BUG(402): Make sure that MAD plugin tries to handle MPEG Layer I, II and III but not IV
  * BUG(483): fix FAAD breaks with libfaad 2.0 and mono/non-16-bit files
  * FEATURE(371): faad plugin now supports AAC files with ADIF header

 Magnus Bjernstad:
  * FEATURE(398),PYTHONMINOR: Add missing plugin_list to python bindings

 Rémi Vanicat:
  * BUG(404): Speed up topsongs view.

 Sebastien Cevey:
  * BUG(411): Keep relative playlist position after the playlist has been sorted.
  * FEATURE(346): Added new function playlist_insert_id that works like playlist_insert but on id numbers.
  * OTHER: Correct a small position bug in playlist_add

 Sham Chukoury:
  * BUG(255): rename xmms_config_value_* to xmms_config_property_*
  * BUG(389): Make xmms_config_init return FALSE when encountering invalid config files
  * BUG(429): add config file versioning
  * BUG(430): fix xmms_config_init
  * BUG(431): rename xmms_plugin_config_value_register to xmms_plugin_config_property_register
  * BUG(434): Revert to default config on parse error
  * OTHER: Minor python bindings docstrings fix
  * OTHER: Update documentation in config.c
  * OTHER: fixup internal API breakage from previous commit
  * OTHER: missed alsa & eq plugins when trying to fix breakage
  * OTHER: rename *type_get functions to *get_type in config.c for consistency

 Tilman Sauerbeck:
  * BUG(321):Reworked output plugin switching.
  * BUG(364): In our ringbuffer implementation, the usable size of the buffer
  * BUG(367): Implement ANDing of input stream values before comparing them.
  * BUG(377): Renamed xmmsc_setup_with_{ecore,gmain} to
  * BUG(392):Spelling fix.
  * BUG(395):Use magic's mimetype to figure out what plugin to use when exporting playlists.
  * BUG(399): Use XPOINTER_TO_INT to convert from pointer type to integer.
  * BUG(409):xmms_playlist_sort() now only emits the _CHANGED signal and position change if the playlist was actually changed.
  * BUG(413,414):Ignore the icy-br header that shoutcast uses, since we cannot know whether it's present at all. Determine the bitrate in the mad plugin for streams as well instead.
  * BUG(415): Remove XMMS_PLUGIN_PROPERTY_SEEK.
  * BUG(417):Implemented plugin verification. Plugins that don't implement needed methods aren't accepted anymore.
  * BUG(418):Fixed vorbis' IO callback return values.
  * BUG(419):If we cannot switch to another output plugin, go back to the one we used before.
  * BUG(420):Fixed memory leak in equalizer plugin.
  * BUG(421):Remove unneeded FORMAT_SET methods from CoreAudio and jack plugins.
  * BUG(439):Fix magic indentation level implementation.
  * BUG(450):Save playlist position in medialib.
  * BUG(464,465): Fixed memory leaks related to DICT results.
  * BUG(466): Reset payload pointers in xmmsc_result_cleanup_data() because that function might be called more than once for broadcasts.
  * BUG(467): Fixed another potential memory leak in xmmsc_deserialize_dict().
  * BUG(469):Fixed a memleak related to lists of dictionaries.
  * BUG(479):Removed declaration of xmmsc_playlist_save().
  * BUG(480):Support optional chunks in wave files.
  * BUG(481):Made xmms_medialib_info() fail if the supplied mlib entry id doesn't exist.
  * BUG(485):When initializing the replaygain plugin, evaluate its config properties.
  * BUG(489):Use symbols instead of strings for propdict keys.
  * BUG(490):Implement Result#decode_url.
  * BUG(499):Properly initialize the xmms_magic_checker_t for playlist plugins.
  * FEATURE(422):Added the null output plugin.
  * FEATURE(453):Wrap xmmsc_broadcast_quit() in the Ruby bindings.
  * OTHER,RUBY:Fixed XmmsClient#playlist_insert.
  * OTHER:Add support for XmmsClient#medialib_entry_property_set in Ruby bindings.
  * OTHER:Add support for property dictionaries in Ruby bindings.
  * OTHER:Added license header to speex.c
  * OTHER:Code cleanup.
  * OTHER:Code cleanup/formatting.
  * OTHER:Code cleanup/formatting.
  * OTHER:Code cleanup/formatting.
  * OTHER:Comply with C89, don't declare variables in the middle of a block.
  * OTHER:Do reads in xmms_ringbuf_read_wait() chunk-by-chunk instead of
  * OTHER:Don't claim we sorted a playlist with less than 2 elements.
  * OTHER:Don't initialize the ringbuffer data to zero. This is more likely to
  * OTHER:Enabled faad plugin again.
  * OTHER:Fix some memory leaks.
  * OTHER:Fix the help text for the clear command.
  * OTHER:Fixed a potential buffer overflow in the modplug plugin.
  * OTHER:Fixed the g_return_if_fail() calls in various ringbuffer methods.
  * OTHER:Formatting
  * OTHER:Formatting fixes.
  * OTHER:Formatting.
  * OTHER:Formatting.
  * OTHER:Formatting/code cleanup
  * OTHER:In xmms_ringbuf_read() and _write() respectively, only signal the
  * OTHER:In xmms_ringbuf_read_wait(), abort if EOS is set.
  * OTHER:Lock/unlock our mutex in xmms_transport_tell()
  * OTHER:Make the wave plugin compile again.
  * OTHER:More ringbuffer code cleanup.
  * OTHER:Properly initialize the hash variable before setting it.
  * OTHER:Refactored parts of the seeking code into its own function.
  * OTHER:Remove comment about fulhack that doesn't exist anymore.
  * OTHER:Remove some of the mlib/sqlite debugging spam.
  * OTHER:Remove the remains of the CAN_HANDLE decoder api.
  * OTHER:Remove unused variable.
  * OTHER:Removed an unused variable.
  * OTHER:Removed xmms_output_plugin_method_get(), since it's pointless.
  * OTHER:Whitespace fixup.
  * OTHER:xmms_transport_seek() has to use current_position as the base offset

 Tobias Rundstrom:
  * BUG(167): Use "real" autoincrement in playlistentries.
  * BUG(205): Don't deadlock when seeking with FLAC.
  * BUG(351): Make sure that result is null when testing if it's set or not.
  * BUG(357): Make sure that bitrate is reported as integer from curl.
  * BUG(433): Check for mad and samba headers.
  * BUG(447): Fix a crash bug in client IPC layer.
  * BUG(448): Remove tags before reading new information in rehash function.
  * BUG(452): Fixed the deadlock introduced in 5b54defd9dad6ae11733419dba94dd1c31bfe19d
  * BUG(458): Make sure to remove all entries that fails resolving.
  * BUG(463): remove memoryleak from result code.
  * BUG(472): Fix Python bindings according to the changes in foreach functions
  * BUG(472): Split xmmsc_result_dict_foreach into one function for sourced dicts and one for normal dicts.
  * BUG(473): Fix mediainfo reader
  * BUG(509): Enable seeking in FLAC again.
  * DOC: Some documentation updates.
  * FEATURE(282),PYTHONMAJOR: Added sources to the mediainfo hash in Python bindings.
  * FEATURE(282),PYTHONMINOR: Added medialib_property_set() method.
  * FEATURE(282): Added support for writing data to medialib from clients.
  * FEATURE(312): Added samplerate property to medialib.
  * FEATURE(381): Add support for sending lists and dicts from clients to sever.
  * FEATURE(442): Remove x_hash_t from IPC in clientlib.
  * FEATURE(442): Removed x_hash_t from clientlib.
  * FEATURE(454): Add a global script directory
  * FEATURE(456): Added a status method.
  * FEATURE(470): Symlink startup and shutdown scripts instead of copy it.
  * OTHER,PYTHONMINOR: fixed foreach callback in Python bindings.
  * OTHER,RUBYMINOR: Fixed foreach call in ruby bindings
  * OTHER: Added set_preference to the headerfile.
  * OTHER: Cleaned up session handling.
  * OTHER: Disabled faad and modplug plugin while waiting for magic updates.
  * OTHER: Enabled modplug again.
  * OTHER: Fix set_source_preferences call to not include internal types.
  * OTHER: Fix so that xmmsc_playback_status runs the correct commando.
  * OTHER: Fixed a small warning.
  * OTHER: Made new SQLite code work on older libsqlites.
  * OTHER: Make sure that unique part of Media table is id,key,source instead of id,key
  * OTHER: Remove ugly whiteline in ALSA plugin.
  * OTHER: Removed deserialize_hashtable on serverside.
  * OTHER: Removed warning in transport.c
  * OTHER: Rename proplist / sourcedict -> propdict
  * OTHER: Speed up mlib searches by not using lower on keys.
  * OTHER: Updated AUTHORS file
  * OTHER: Updated AUTHORs file
  * OTHER: Upped SQLite versioning for great justice.
  * OTHER: WARNING! Try to use only one medialib_session in the mediainfo reader.
  * OTHER: disable faad again :-)
  * OTHER: don't remove LMOD field when cleaning up the mess.
  * OTHER: missed return NULL in id3 parser. resulted in crash on unparsable tags.
  * OTHER: propdict renames in PythonAPI also
  * OTHER: really fix FLAC seeking.
  * OTHER: use sqlite3_libversion_number() instead of SQLITE3_VERSION_NUMBER.

 Tobias Rundström:
  * OTHER: Cleanup in ipc_destroy removes annoying warnings when xmms2d quits



Changes between 0.1DR2.1 and 0.1DR2.2

 Release date: 2005-09-06
 Authors contributing to this release: 6
 Number of changesets: 43
 Number of files in this release: 265

 Alexander Rigbo:
  * FEATURE(206): Sorting now behaves well on integers.

 G. Gallino:
  * BUG(297): Added checking for negative gain value.
  * BUG(297): Added checking for negative gain value.
  * FEATURE(297): Added additional formats support to Equalizer plugin.

 Jens Taprogge:
  * [DEBIAN] Add man-pages.
  * [DEBIAN] Disable sdl-vis.
  * [DEBIAN] New snapshot

 Sebastien Cevey:
  * BUG(342): Fixed buggy xmmsc_result_list_first
  * BUG(342): Fixed buggy xmmsc_result_list_first

 Tilman Sauerbeck:
  * BUG(187),RUBYMINOR: Fix refcounting for ruby clientbindings
  * BUG(349),PYTHONMINOR: Fix refcounting problems in Python clientbindings.
  * BUG(353): :Fixed a memory leak in results that store lists.
  * OTHER: Cleanup of ruby error handling.
  * OTHER: Small fix in ruby testscript.
  * OTHER: complain about result refcount missuage in clientlib.
  * OTHER:Don't try to check magic for plugins that don't provide them.
  * OTHER:Fix compilation.
  * OTHER:Fixed a memory leak in results that store lists. When you iterate
  * OTHER:Make the magic code work with streams.
  * PLUGINMINOR:xmms_transport_seek() now checks for no-op seeks, so plugins
  * PRIVATE:Check for the two slashes in the url, too.
  * PRIVATE:Code cleanup.
  * PRIVATE:Don't allocate one byte more than requested in xmms_ringbuf_new()
  * PRIVATE:Don't signal the "free" condition in xmms_transport_seek()
  * PRIVATE:Remove additional errno declaration.
  * PRIVATE:Remove duplicated entry for AND-operator.
  * PRIVATE:Removed old file plugin.
  * PRIVATE:Switch to unsigned integers for the ringbuf buffer size and
  * PRIVTE:Slight cleanup, nicer debugging output.

 Tobias Rundstrom:
  * BUG(328),PYTHONMINOR: Fix bad documentation in xmmsclient python bindings.
  * BUG(328),PYTHONMINOR: Fix bad documentation in xmmsclient python bindings.
  * BUG(341): Plug memory leak in xmms_object_emit_f
  * BUG(341): Plug memory leak in xmms_object_emit_f
  * FEATURE(190): Remove gigantic SQLite3 lock.
  * FEATURE(289),CLIENTLIBMAJOR: Add more features to the xmmsc_plugin_list api.
  * OTHER: Add a medialib_end() in modplug.
  * OTHER: Added a check after each plugin_new() to see if we actually did create anything.
  * OTHER: Added check so that we don't try to compile with a new version of
  * OTHER: Crashbug in object.c
  * OTHER: Make XMMSSync() accept a none clientname.
  * OTHER: Post sqlite3 merging.
  * OTHER: Remove spam and disable call to setcachemode.
  * OTHER: Removed sqlite3 version check since it's not needed with new sqlite3 code.



Changes between 0.1DR2 and 0.1DR2.1

 Release date: 2005-08-18
 Authors contributing to this release: 9
 Number of changesets: 34
 Number of files in this release: 265

 Alexander Botero-Lowry:
  * BUG(326): Fixed typo in OSS plugin.
  * FEATURE(300): Install the manpages with SCons
  * FEATURE(322): Added command to output the current entry formatted.

 Alexander Rigbo:
  * BUG(284): Removed medialib_random mode since it was flawed and obscure.
  * BUG(318): Initialize GError variable before using it.

 Anders Gustafsson:
  * BUG(293): Remove bogus code in id3v2-reader that made tags not read.
  * BUG(314): Remove leftover debug assertion in resampler.

 Daniel Svensson:
  * BUG(140): sid plugin updated to sample_t changes
  * BUG(315): Added srand before rand.
  * BUG(316): Really fixed without breaking -o
  * BUG(316): cmdline -i <url> sets ipcpath
  * Coding style cleanups

 Jens Taprogge:
  * BUG(294): Fixed ruby compilation.
  * [DEBIAN] Include new headers.
  * [DEBIAN] New snapshot
  * [DEBIAN] New snapshot
  * [DEBIAN] New snapshot, disabled speex for now

 Michael Walle:
  * FEATURE(295),CLIENTLIBMAJOR: Changed the medialib_playlists_list.
  * FEATURE(295): Updated CLI to use new API.
  * FEATURE(319),CLIENTAPIMINOR: Added playlist_list command.
  * FEATURE(319): Use the new playlist_list API in the CLI client.

 Sébastien Cevey:
  * BUG(308): Declare some of the medialib functions static.
  * BUG(308): Fixed some incorrect documentation.

 Tilman Sauerbeck:
  * FEATURE(65): Add new magic code.
  * PRIVATE:Removed xmms_ringbuf_unread() because it's a) not used and b)

 Tobias Rundstrom:
  * BUG(208): Bugfixed the libtool parser a bit.
  * BUG(296): Better errorhandling when we can't initialize the outputplugin.
  * BUG(301),PYTHONMINOR: Removed global result refholder.
  * BUG(325): Handle exception on UTF-8 convertion error.
  * FEATURE(208): Added a libtool parser.
  * FEATURE(289),CLIENTLIBMINOR: Added a plugin_list command.
  * FEATURE(307): SCons configuration now logs ConfigErrors to config.log.
  * OTHER: Disabled libtool parser to make way for DR2.1
  * PRIVATE: DR2-WIP