~ubuntu-branches/ubuntu/precise/rhythmbox/precise-201203091205

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
Overview of changes in Rhythmbox 2.96  "Spanish Air"
====================================================

* Revived Magnatune plugin
* Better handling of non-media files
* dbus media server plugin improved again

Bugs fixed:

...



Overview of changes in Rhythmbox 2.95  "In Mind"
================================================

* GTK+ 3, GObject introspection, GNOME 3 compatible
* New album art database
* Grilo plugin for UPNP and Jamendo
* Rewritten visualization plugin (using clutter)
* First steps in redesigning some parts of the UI that sorely need it
* New encoding profile system
* Plugins now based on libpeas
* Much improved dbus media server plugin

Bugs fixed:

160966 - Add "Comment" field as a criteria for automatically updating playlists
362876 - Problem editing APE tags in mp3s
424629 - handle multiple id3 tag sets better
427592 - ctrl+f for search bar
439893 - No warning about unsupported formats
446882 - use id3v2.3
458806 - Get rid of visualization modes
458816 - Is the visualization pop up really needed?
481321 - rhythmbox wakes up the dbus daemon every second
489097 - Wrong adjectives are used to describe visualization quality
503383 - A better place for the browser toggle
503586 - [upnp] export the share with an easier identifiable name
504415 - [upnp] display the content of some other UPnP server in the (hierarchical) exported form
520209 - transcoding should use easy codec installation when required
522254 - attempt to preserve file permission when editing tags
522256 - rhythmbox volume control lags
588586 - Activated encoding profile doesn't show up in "Preferred Format" drop down box
593186 - arch-independent files installed in $plugindir
594474 - Playlists are not exported over UPNP
594516 - Rhythmbox album art is blurred in notification bubbles
598764 - Rhythmbox should not play games with desktops
600122 - wrong shortcut for Show / Hide the Queue Sidebar
615096 - Quality of flac flike changes from "Lossless" to "Unknown" when it has a (cover) image embedded
619926 - Add support for MediaServerSpec Interface on DBUS
625892 - Port to GSettings
626236 - Migrate from PyGTK to PyGObject introspection-based bindings
628559 - MTP plugin claims my camera, blocking me from using it as a camera
633556 - libgnome-media-profiles has split from gnome-media
634858 - Rhythmbox does not show covers which are embedded into ID3 Tag
634957 - Lyrics plugin works, but context pane does not show lyrics.
639983 - Unable to install 13.3 on Ubuntu Maverick
640000 - Undefined 'ulong' type
640021 - Segfault during dacp pairing process.
640915 - Album art is displayed, but can't be opened
641352 - build failure due missing brasero-media.h
641417 - DAAP browse crashes rhythmbox with SIGABRT
641970 - crash in g_assertion_message_expr, split_query_by_disjunctions
642051 - Update for the Zeitgeist plugin
642614 - Default stations list contains some that are offline
642836 - shell: Add a way to start-up with plugins disabled
643165 - Podcast avoidance code doesn't work
644585 - Play queue is cleared on exit
645015 - Crash in g_object_unref, image_download_cb
645145 - crash on track switch after disabling status icon
645577 - Theme tweaks
645703 - error dialog at startup due to failing cover art plugin
645812 - Port to libpeas
645905 - Add missing #include "config.h" to make sure translations work
646239 - rhythmbox.pc references gtk 2
646405 - sometimes playback is not advanced to the next song
647032 - When clicking on "MIssing files" I get crash
647050 - Date translations will fail for a number of languages
647549 - Typo in rhythbox daap plugin causes build to fail
647775 - Zeitgeist plugins throws error
648225 - Artwork displayed when playing back mp3 picks first APIC found, not type "Cover (front)"
648956 - Deleted internet radio stations reappear when restarting Rhythmbox
649017 - Make PeasGtkPluginManager expand with plugins dialog
649019 - Add missing key 'sourcelist-hidden' to org.gnome.rhythmbox schema
649020 - RB fails to start with multiple library locations set
649224 - crash in Rhythmbox: Quit from menu after pre...
649231 - Crash in rb_station_properties_dialog_get_current_entry
649288 - DAAP Client cannot connect on non-standard ports
650043 - Device property dialog doesn't display volume usage
650191 - don't start after changing the display order of tracks
650848 - Remove libmusicbrainz option
650919 - sync reports incorrect number of files to add
650920 - syncing won't remove file from device
651198 - last/libre.fm data lists (i.e. Recent Tracks) do not resize correctly
651201 - Rhythmbox transcodes AAC (.m4a) to MP3 even when target device supports AAC
651852 - Play/Pause/Previous Missing from gnome shell notification
652488 - fixes for some UI glitches
652964 - Segfault when RBAudioscrobbler finalizes and queue needs saved
653187 - [im-status] 'ascii' codec can't decode byte outside range(128)
653900 - Rhythmbox does not copy m4a files to iPod
654357 - IM Status plugin fails to load
655760 - Toolbar reappears after programme restart
656759 - configure doesn't indicate whether or not the visualiser plugin is being built
657119 - Rhythmbox Lyrics Plugin Problem
657126 - Current git crashes just refreshing library
657185 - Rhythmbox crashes when attempting to extract a CD
658363 - MP3 player properties window makes rhythmbox crash
658801 - ngettext (Plural forms) needed for "Only showing %d results"
658917 - fix gsettings.m4 to properly install schema files on BSD systems
659261 - Grilo plugin try to clear the search_entry even if it did not create one
659467 - Missing plural handling for "%d tracks"
659508 - Visualizer plugin does not install its data file in the right directory
660351 - add pygobject 3.0 support
660775 - Rhythmbox has serious disk usage when changing volume.
661330 - Album Art plugin makes Rhythmbox crash on some files
661700 - rhythmbox fails to inhibit/uninhibit the gnome-session while playing a file.
661806 - Can't extract to FLAC format on Fedora 16
662146 - rhythmbox play button points backwards
662448 - artist/album browser not shown after returning from compact mode
662641 - Playlist for last.fm radios doesn't show artist, album and duration
663354 - No keyboard shortcut to give search box focus
663469 - Python plugins are not internationalized
663810 - rhythmbox crashed with SIGSEGV in rb_playlist_manager_get_playlists()
664680 - Can't change Library name for DAAP Music sharing
664831 - Failed to link new stream into GStreamer pipeline
666087 - lyrics plugin fails to load cached files
666338 - Clicking on DAAP share causes UI to fail
666668 - unbreak installation after CoverArtDatabase.py got removed
666773 - Untranslated strings in the audioscrobbler plugin
666894 - Rhythmbox dies with signal SIGINT interrupt
667014 - magnatune: icon missing from the tarball generated from master
667132 - [im-status] IM-status plugin fails to update status
667139 - broken DBus method PlaylistManager.GetPlaylists
667778 - Crash when playing an audio file

Translation updates:

- be, courtesy of Olya Matsuk 
- bg, courtesy of Alexander Shopov 
- ca, courtesy of Gil Forcada 
- cs, courtesy of Marek Černocký 
- da, courtesy of Byrial Ole Jensen 
- de, courtesy of Christian Kirbach 
- en_GB, courtesy of Bruce Cowan 
- eo, courtesy of Kristjan SCHMIDT 
- es, courtesy of Daniel Mustieles 
- et, courtesy of Mattias Põldaru 
- eu, courtesy of Iñaki Larrañaga Murgoitio 
- fi, courtesy of Timo Jyrinki 
- fr, courtesy of Claude Paroz 
- gl, courtesy of Fran Dieguez 
- hu, courtesy of Gabor Kelemen 
- it, courtesy of Luca Ferretti 
- ja, courtesy of Jiro Matsuzawa 
- kn, courtesy of Shankar Prasad 
- lt, courtesy of Aurimas Černius 
- lv, courtesy of Rūdolfs Mazurs 
- nb, courtesy of Kjartan Maraas 
- nl, courtesy of Wouter Bolsterlee 
- pl, courtesy of Piotr Drąg 
- pt_BR, courtesy of Gabriel F. Vilar 
- pt, courtesy of Filipe Gomes 
- ro, courtesy of Lucian Adrian Grijincu 
- ru, courtesy of Yuri Myasoedov 
- sl, courtesy of Matej Urbančič 
- sr, courtesy of Мирослав Николић 
- sr@latin, courtesy of Miroslav Nikolić 
- sv, courtesy of Daniel Nylander 
- te, courtesy of Praveen Illa 
- tr, courtesy of Muhammet Kara 
- uk, courtesy of Korostil Daniel 
- uk, courtesy of Сергій Гаврилов 
- vi, courtesy of Nguyễn Thái Ngọc Duy 
- zh_CN, courtesy of YunQiang Su 
- zh_HK, courtesy of Cheng-Chia Tseng 
- zh_TW, courtesy of Cheng-Chia Tseng 


Overview of changes in Rhythmbox 0.13.3  "Country Rain"
=======================================================

* Reimplemented source list, allowing for things that aren't sources
* Updated notifications, mostly for GNOME Shell
* Expose playlists in MPRIS and MediaServer2 DBus interfaces
* New context pane tab showing links to various websites (Kenny Meyer)

Bugs fixed:

510679 - Remember source list expander states
599294 - upnp_coherence: louie imports fail
609009 - Update media types in coherence plugin
622980 - Rhythmbox Documentation Typos
633531 - Rhythmbox can't load Cover-Art from musicbrainz
633542 - [PATCH] Automatic inserts an uri for a new radio station
634065 - Crash when ejecting iPod
634114 - Crash in rb_shell_get_player at rb-shell.c line 3442
635323 - Incorrect documentation of project code repository
635963 - Support new "Mix Radio" station type
635964 - Handle "deprecated station" error code
636482 - rhythmbox plugins do not compile if some relevant libraries are not in /usr prefix
636550 - [Context] Add tab with links to websites to context pane
637174 - [PATCH] Add support for radio station Start FM 94.2 (Vilnius University)
637819 - crash in impl_finalize at rb-mtp-thread.c line 773
639266 - NRK ogg vorbis streams have been shut down

Translation updates:
cs, courtesy of Marek Černocký
de, courtesy of Wolfgang Stoeggl
en_GB, courtesy of Philip Withnall
es, courtesy of Jorge González
et, courtesy of Mattias Põldaru
fr, courtesy of Bruno Brouard
fr, courtesy of Claude Paroz
gl, courtesy of Fran Diéguez
hu, courtesy of Gabor Kelemen
it, courtesy of Luca Ferretti
pt_BR, courtesy of Mateus Zenaide
ro, courtesy of Daniel Șerbănescu
ru, courtesy of Yuri Myasoedov
sl, courtesy of Andrej Žnidaršič
sv, courtesy of Daniel Nylander
vi, courtesy of Phạm Thành Long
zh_CN, courtesy of Yinghua Wang


Overview of changes in Rhythmbox 0.13.2  "Dagger"
=================================================

* Much improved Last.fm (and Libre.fm) plugin (Jamie Nicol's GSoC project)
* Support for DACP (iTunes remote) (Alexandre Rosenfeld's GSoC project)
* Zeitgeist plugin (developed by Markus Korn, Laszlo Pandy and Michal Hruby)
* New podcast sub-sources showing newly posted and recently downloaded episodes
* Slightly improved tntegration with the GNOME Shell message tray
* Various fixes for iPod support (Christophe Fergeau, Ben Walsh)

Bugs fixed:

341462 - Make current podcast downloads more visible
345957 - View last.fm profile
381679 - Add "record to profile" toggle to the last.fm plugin
589886 - Crash when selecting multiple podcast feeds
591841 - Crash processing playlist files from command line
592428 - Allow the user to select Libre.fm as their audioscrobbler service
601152 - can't really create playlists on iPod
604170 - Unable to change the order of files in an iPOD playlist
612156 - crash when stopping radio stream before playlist parsing has finished
618619 - Crash while getting properties from ipod shuffle
623200 - Add previous and play actions to notifications, and use id's that correspond to named icons
625030 - Use XSPF format for the default iRadio playlist
625054 - Rhythmbox transfers music to my generic MP3 player without file extensions
625214 - DACP Support in Rhythmbox
628254 - metadata helper crashes when tagging MP3 files that don't already have tags
628330 - rhythmbox still uses pkg-config to find vala
628791 - crash showing ipod properties if the ipod database can't be read
628794 - Rhythmbox can not share to iTunes 10 using DAAP
629038 - coherence plugin breakage
630689 - drop GtkObject use
631008 - Zeitgeist plugin
631191 - GStreamer MTP source element stopped working
631218 - don't open (some) iframes in podcast descriptions in new browser windows
631355 - Typo in string: "Listended"
631698 - Rhythmbox stars (ratings) not updated properly when scrolling up in the playlist
631817 - rhythmbox hangs when starting playing next audio cd track
632119 - Add WSUM 91.7FM (University of Wisconsin) to iRadio-Initial.pls
632475 - ipod "Remove from playlist" was completely removing from iPod
632655 - URL updates for Internet Radio stations
633531 - Rhythmbox can't load Cover-Art from musicbrainz

Translation updates:
- bg, courtesy of Krasimir Chonov
- ca@valencia, courtesy of Joan Duran
- cs, courtesy of Marek Černocký
- da, courtesy of Ask Hjorth Larsen
- de, courtesy of Christian Kirbach
- el, courtesy of Michael Kotsarinis
- es, courtesy of Jorge González
- et, courtesy of Mattias Põldaru
- gl, courtesy of Fran Diéguez
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- ja, courtesy of Hiroyuki Sekihara
- ja, courtesy of Takayuki KUSANO
- lt, courtesy of Žygimantas Beručka
- nb, courtesy of Kjartan Maraas
- nl, courtesy of Redmar
- pa, courtesy of A S Alam
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Djavan Fagundes
- ru, courtesy of Yuri Myasoedov
- sl, courtesy of Andrej Žnidaršič
- sv, courtesy of Daniel Nylander


Overview of changes in Rhythmbox 0.13.1  "So Tired"
===================================================

* Support for MPRIS version 2
* RhythmDBEntryType converted to a GObject to improve binding sanity
* Improved handling of files on unmounted devices and network shares
  - Only attempts to check files on core filesystems and mounted local
    devices
  - Doesn't check files on network shares, relying on playback error
    reporting to identify missing files
* New less annoying method of handling invocation for media player devices
* rhythmbox-client now waits long enough to control a newly started instance
* More reliably imports and plays files specified on the command line
  (opening a file with nautilus will now do something useful most of the time)
* Use the current sorting column for typeahead searching
* Extended (static) vala bindings
* Initial implementation of the Rygel MediaServer2 D-Bus specification

Bugs fixed:

329984 - Type-ahead should work for any visible column
482813 - rhythmbox-client --enqueue doesn't work if uri not in library
488308 - blocks for 25s after volume key press sometimes
498582 - rhythmbox-client --enqueue won't cope with equals sign
544154 - RB to realize unmounted remote libraries
581076 - expansion of Vala bindings coverage
609542 - Signal for announcing end of "startup" phase i.e. scanning sources
623024 - Sync mp3 songs with MTP device failed
623153 - Different pop-up menu layout in playlists creation
623667 - Album Art not working - MTP
623992 - Compile errors in rhythmbox 0.13
624646 - New Default Rhythmbox Radio Stations
624895 - Rhythmbox fails to compile with libdmapsharing 2.0, DAAP plugin fails to enable.
625103 - gst encoder must strdup media_type
625105 - Sync state UI cannot show media disk usage >4GB on 32-bit OS
625124 - Improve RBEncoder and RBTrackTransferBatch error handling
625130 - Change encoding filter order
625375 - Crash in process_tag at rb-player-gst.c line 204
626608 - Add support for seek in rhythmbox-client
626986 - Please fix escaping of UTF-chars in ui file
627050 - metadata crawler aborts when files are modified
627396 - Switch to full-screen or leave full-screen visualization by double clicking the visualization canvas
627949 - IM Status plugin crashing with AttributeError: 'rhythmdb.EntryType' object has no attribute 'category'
627951 - crash on closing with g_hash_table_iter_init
628076 - Rhythmbox crashes on startup
628254 - segfault: trying to change properties of a song

Code contributors:

Andrea Del Signore
Bastien Nocera
Brian Cameron
Daniel Hams
Gabor Kelemen
Jonathan Matthew
Karl Ljungkvist
Philipp Kerling
Scott J. Goldman
Wladimir Leuschner
Zeeshan Ali (Khattak)


New and updated translations:

- cs, courtesy of Marek Černocký
- de, courtesy of Mario Blättermann
- en_GB, courtesy of Bruce Cowan
- eo, courtesy of Kristjan SCHMIDT
- es, courtesy of Jorge González
- et, courtesy of Mattias Põldaru
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Dieguez
- hu, courtesy of Gabor Kelemen
- ja, courtesy of Kiyotaka NISHIBORI
- nb, courtesy of Kjartan Maraas
- nn, courtesy of Åsmund Skjæveland
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Djavan Fagundes
- pt, courtesy of Filipe Gomes
- ru, courtesy of Yuri Myasoedov
- sl, courtesy of Andrej Žnidaršič
- sr, courtesy of Милош Поповић
- sr@latin, courtesy of Miloš Popović
- sv, courtesy of Daniel Nylander
- zh_CN, courtesy of YunQiang Su


Overview of changes in Rhythmbox 0.13.0  "Albatross"
====================================================

* Improved GStreamer codec installation (Jonathan Matthew)
* New metadata fields: comment (Josh Green), BPM (Mattias Eriksson),
  Album artist (JM)
* MMS and RTSP streams should work properly now (Robert Ancell)
* Always visible on startup when started manually (JM)
* New implementation of the MPRIS D-Bus interface spec (JM)
* Creates nested folders on MTP devices (JM)
* Installs header, VAPI and pkg-config files for external plugins (JM)
* DAAP plugin now uses libdmapsharing (W. Michael Petullo)
* Library, playlist and podcast syncing for media players (based on Paul
   Bellamy's Summer of Code project)
* Fixed interaction with Brasero for CD burning (Philippe Rouquier)
* New application icon (Lapo Calamandrei)
* Displays HTML podcast episode descriptions using WebKit (JM)
* Updates for Magnatune's new purchase process (Adam Zimmerman)

Bugs fixed:

310774 - Music player sync
320507 - Deal with HTML in Podcast Descriptions
324845 - Podcast syncing
341702 - Clobbers empty/nonexistent tags
404698 - Track transfer fails with "failed to find acceptable mime type"
454889 - Support for the BPM tag
457088 - track transfer on out of space messages stack up
501554 - generic audio player synchronization support
520046 - copying files to full iPod leaves 0-byte files scattered on the device
525094 - Grab lyrics from darklyrics.com
527898 - Assertion in rhythmdb_property_model_delete_prop()
530775 - Crossfade backend can't play Real Audio streams
537868 - Restore window when rhythmbox is closed from tray icon
538240 - Progress bar while copying to storage media is non-sensical
559849 - Human friendly names instead of language codes
560940 - support "Comment" id3 tag in rhythmbox
566852 - Move DAAP code to use common libdmapsharing
581885 - rhythmbox can't play mms radio
592470 - "Do you want to overwrite..." dialogue box lacks yes/no to all and cancel buttons
593641 - Folder support for MTP-Devices
593968 - problematic way of asking to skip files on copy
595425 - Use accessor functions instead direct access (use GSEAL GnomeGoal)
596615 - Use a single HTTP connection for podcast downloads where possible
612714 - IM Status plugin does not reset status message on end playback
612867 - Automatic playlists editor is missing "does not equal" in Rating criterions
612942 - After one error in radio streaming, rhythmbox fails with all radios channels.
613526 - Crash due to MTP device disappearing immediately after access
613941 - genre tab displays numbers in magnatune catalogue instead of genre names
614084 - Translatable string fixes
614139 - New icon
614184 - No python binding for rhythmdb_query_model_copy_contents
614351 - Crash due to playing stream signal emitted on non-main thread
616411 - crash when transferring files with no extension
616636 - use g_ascii_strtod to read the db version
617157 - use g_strcmp0 when checking properties in song info widget
617587 - fix python initialization code for python 2.6.6
618025 - Add KWUR to initial internet radio station playlist
618520 - implement MPRIS dbus spec
619247 - TerraParser does not catch all HTML entities
619576 - Brasero does not remove temporary projects because of G_SPAWN_FILE_AND_ARGV_ZERO in the plugin
619677 - Expose file grabbing functions to python plugins
619907 - Add more bindings for Vala
619925 - Add translator comment for "Volume usage"
620069 - add python bindings for the rating widget
620199 - fails to build: "pause" already used by eglibc <unistd.h>
620256 - RBSource has no default implementation for rb_source_can_pause
620857 - Support detection of files in the library being renamed/moved while rhythmbox is running
621434 - Source code typo in sources/rb-library-source.c
622215 - [Patch] Allow building rhythmbox with gtk+ 2.21.1 or newer
622613 - segfault in rb_player_gst_xfade_bus_cb
622723 - Sync string is used in two different contexts
622753 - segfault in rhythmdb_add_import_error_entry

New and updated translations:

- bg, courtesy of Krasimir Chonov
- cs, courtesy of Marek Černocký
- da, courtesy of Ask Hjorth Larsen
- de, courtesy of Mario Blättermann
- el, courtesy of Simos Xenitellis
- es, courtesy of Jorge González
- et, courtesy of Mattias Põldaru
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Diéguez
- hi, courtesy of karthik
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- ko, courtesy of Kang Bundo
- lt, courtesy of Aurimas Černius
- pa, courtesy of A S Alam
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Daniel S. Koda
- sl, courtesy of Andrej Žnidaršič
- sr, courtesy of Милош Поповић
- sr@latin, courtesy of Miloš Popović
- th, courtesy of Theppitak Karoonboonyanan
- uk, courtesy of Sergiy Gavrylov
- zh_CN, courtesy of Funda Wang


Overview of changes in Rhythmbox 0.12.8  "Extradition"
======================================================

* Last.fm cover art search (Jonathan Matthew)
* Automatically unmount MTP devices mounted by gvfs (François Jaouen)
* More improvements to mixed-direction text display (Uri Sivan)

Bugs fixed:

482955 - rhythmbox crashed with SIGSEGV in rb_source_try_playlist()
520121 - MTP plugin fights with gvfs' gphoto2 backend
527898 - Assertion in rhythmdb_property_model_delete_prop()
528513 - have to run rhythmbox twice to see the main window
551402 - Cannot update list of episodes in podcasts
600494 - crash in Rhythmbox Music Player: (something to do with CD playback)
603261 - rhythmbox crashes during drag n drop of mp3 to iPod
607073 - rhythmbox crashed with SIGSEGV in rb_entry_view_scroll_to_entry()
609651 - Album Artwork Does Not Display Immediately For Embedded Artwork
610753 - Fix mixed-direction text in header widget
611541 - OGG files with skeleton stream are not imported
611714 - missing stock icons
611772 - Menubar: "show statusbar" menu entry doesn't get sync properly
612570 - rhythmbox crashed with SIGSEGV in g_closure_invoke()
613163 - Add a11y name to the status icon
613540 - [cppcheck] found a memory leak in /rhythmbox/plugins/mtpdevice/rb-mtp-source.c
613542 - [cppcheck] found a resource leak in rhythmbox/plugins/cd-recorder/rb-recorder-gst.
613606 - Don't load AFC devices using the MTP plugin
613658 - null string checking in RBSource_do_impl_search python binding
613715 - Rhythmbox crashes when iPhone is plugged in and MTP plugin is enabled
613784 - Reloads deleted podcasts

New and updated translations:

- af, courtesy of F Wolff
- bg, courtesy of Krasimir Chonov
- br, courtesy of Jérémy AR FLOC'H
- cs, courtesy of Lucas Lommer
- cs, courtesy of Marek Černocký
- de, courtesy of Christian Kirbach
- el, courtesy of Simos Xenitellis
- es, courtesy of Jorge González
- et, courtesy of Mattias Põldaru
- eu, courtesy of Iñaki Larrañaga Murgoitio
- fi, courtesy of Jiri Grönroos
- fr, courtesy of Pierre-Luc Beaudoin
- gl, courtesy of Fran Diéguez
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- ja, courtesy of Hajime Taira
- lt, courtesy of Žygimantas Beručka
- nb, courtesy of Kjartan Maraas
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Rodrigo Flores
- pt, courtesy of Filipe Gomes
- ro, courtesy of Adi Roiban
- ru, courtesy of Yuri Kozlov
- sl, courtesy of Andrej Žnidaršič
- sv, courtesy of Daniel Nylander
- uk, courtesy of Sergiy Gavrylov


Overview of changes in Rhythmbox 0.12.7  "It's a Hectic World"
==============================================================

* New ReplayGain plugin, replacing the old broken ReplayGain code (Jonathan Matthew)
* Nautilus-sendto plugin (Filipp Ivanov)
* Support for Magnatune streaming and download accounts (Adam Zimmerman)
* Support for pidgin in the IM status plugin (Mohamad Elrashidin Sajeli)
* Context pane plugin now uses the GTK+ font settings (JM)
* Support for artist and album sort names (Jamie Nicol)
* Now depends on GTK+ 2.16, GLib 2.18, and pygobject 2.16
  (no more libgnome, libgnomeui, gnome-vfs, or libsexy code anywhere)
* As GSEAL-ready as we can make it for now (Javier Jardón)
* Compatible with the new totem-plparser save API (Carlos Garnacho)
* Disentangled 'delete', 'remove', and 'remove from playlist' actions (JM)
* Improvements to display of mixed-direction text (Uri Sivan)
* Simplified selection of audio CD tracks to extract (JM)
* Playlist creation should work on more generic player devices now (JM)

Bugs fixed:

133444 - Use album and artist sort names ("Sort band list without 'The'")
316257 - forward / back mouse buttons should trigger next / previous songs
338221 - Rhythmbox ignores replaygain tags in DAAP streamed media
378355 - Magnatune plugin should not print CC# in debug output
384483 - Open cover in Image Viewer
424878 - The play button's tool tip "Stop playback" is misleading
485730 - Better labels for remove/move to trash
518540 - RTL Song title displayed on wrong side of other track info.
533727 - Support new Magnatune accounts
537483 - should be possible to import only selected audio cd songs
542055 - Sort order is not localized
547174 - Separate the filesystem scanning from the metadata content reading
559582 - Cleanups for -DG_DISABLE_DEPRECATED
564800 - GnomeGoals: Remove deprecated GTK+ symbols (again)
584593 - sample-vala plugin does not build
584704 - External MP3 players should delete files rether than move to trash
593188 - Manpages for rhythmbox and rhythmbox-client
594132 - python binding lacks enum RBMetaDataField
595795 - Portugu?s Lyrics - Patch to grab lyrics from letras.terra.com.br
601524 - Slider jumps around at the end of songs
602015 - Default 'label1' naming of the first Multiple Song info window
602140 - thread-related segfault in context panel plugin
602615 - fails to build if ld's --no-add-needed is used
602616 - strings being URI-unescaped twice in song info window
602679 - context: encode album names received from last.fm in utf8
603258 - mpid: don't destroy HAL context twice
603263 - compilation errors because of wrong g_print format
603444 - ignore hidden files while enumerating directories
603876 - LyricWiki should be deleted from the "Song lyrics" plugin
603929 - Rhythmbox unnecessarily modifying sound files
604186 - Remove gnome-vfs use in plugins
604188 - [upnp] Use GIO to get the face icon's mime-type
604189 - [artdisplay] Simplify save_pixbuf code
604292 - Use g_atomic_int_* when possible to handle refcounts
604771 - Adding context to some strings
605023 - IM Status Plugin patch for Pidgin support
605038 - Seg Fault When Going to Play List; Visualisation; Browse
605031 - add "Send to..." button to right click on the song
605313 - Use totem_pl_parser_save()
605583 - segfault if MTP device open fails
605584 - Race condition in MTP causes devices to fail to open
605725 - [context] doesn't use gtk font settings
606470 - Wrong title for MTP properties dialog
606472 - Bad alignment for labes in media player properties dialog
607263 - Playlist creation ignores playlist_format from .is_audio_player
607265 - M3U playlist is missing #EXTINF info
607538 - incorrect description for toolbar_style gconf key
607672 - Podcasts default to rating 3*
607897 - fix build with warnings=all
607935 - Crashes with SIGSEGV when trying to enable visualization
608397 - Rhythmbox does not create working playlists for Sansa Clip+
609306 - Changing between two sources without query models causes warnings
609767 - RTL tags in status icon bubble
609908 - compare track number when checking if tracks already exist on devices
609916 - CBC Radio 1 & 2 Live Feeds don't work
610440 - The user agent string must be used when connecting to DAAP shares
610643 - Fix linkage against librhythmdb.la
610655 - [patch] enum type mismatch
610657 - [patch] Linking fails due to multiple definition of _PyGObject_API, etc.

New and updated translations:
bg, courtesy of Krasimir Chonov
cs, courtesy of Marek Černocký
de, courtesy of Mario Blättermann
el, courtesy of Thanos Lefteris
en_GB, courtesy of Bruce Cowan
es, courtesy of Jorge González
et, courtesy of Mattias Põldaru
fr, courtesy of Claude Paroz
gl, courtesy of Fran Diéguez
hu, courtesy of Gabor Kelemen
it, courtesy of Luca Ferretti
lt, courtesy of Žygimantas Beručka
lv, courtesy of Peteris Krisjanis
pl, courtesy of Tomasz Dominikowski
pt_BR, courtesy of Rodrigo Flores
ro, courtesy of Adi Roiban
sl, courtesy of Andrej Žnidaršič
sr, courtesy of Милош Поповић
sr@latin, courtesy of Miloš Popović
sv, courtesy of Daniel Nylander
uk, courtesy of Sergiy Gavrylov
uk, courtesy of Сергій Гаврилов


Overview of changes in Rhythmbox 0.12.6  "Range Life"
=====================================================

* Context pane plugin (John Iacona's Google Summer of Code project)
* Power management plugin reworked to use new D-Bus API (Richard Hughes)
* MTP plugin reworked to do everything asynchronously (Jonathan Matthew)
* Volume slider levels match what PulseAudio displays (Bastien Nocera)
* Playback pipeline filter interfaces actually work properly now (JM)
* Much improved visualization performance when crossfading is enabled (JM)

Bugs fixed:

499048 - Filter insertion and removal on non-xfade backend is not robust.
499051 - xfade backend doesn't play nice with LADSPA filters (or is it the reverse ?)
499052 - Filter removal on xfade backend is not robust.
534981 - Add multi threading to MTP Support
564772 - MTP plugin crash when I plug-in my Creative Zen 32Gb
564800 - GnomeGoals: Remove deprecated GTK+ symbols
589845 - im-status: use mission control dbus interface
590474 - Podcast entry disappears from display during download
594901 - Rhythmbox fails to display cover image from id3 tag
595966 - leaked string in rb_stock_icons_init
596573 - [PATCH] Do not use gnome-power-manager for inhibits, instead use gnome-session
597706 - rhythmbox crashed with SIGSEGV in g_object_get()
597708 - rhythmbox crashed with SIGSEGV in rb_source_get_config_widget()
597708 - DAAP plugin doesn't link to libsoup
598135 - Should init error before call libhal_device_get_property_string
598302 - Use GDK spawn functions to handle multi-screen
598613 - Rhythmbox shows cover art of previous track in Notification Bubble if current track has no cover art
598955 - Use Cubic volume when StreaVolume interface is available
600058 - Feed is not parsed when title tag is empty
600513 - Generates invalid Brasero project
600549 - Crash when transferring a track over MTP with a slash in the track title
600624 - track information is not displayed correctly sometimes when playing internet radios
600995 - Elapsed time indicator is wrong when seeking
601352 - Crash while editing automatic playlist
601460 - Rhythmbox gets laggy when copying music to iPod
601528 - Play button doesn't work after finishing a playlist
602615 - rhythmbox fails to build if python bindings are built and ld's --no-add-needed is used

New and updated translations:

af, courtesy of F Wolff
bn_IN, courtesy of Runa Bhattacharjee
br, courtesy of denis
de, courtesy of Mario Blättermann
es, courtesy of Jorge González
et, courtesy of Mattias Põldaru
fr, courtesy of Claude Paroz
gl, courtesy of Antón Méixome
gu, courtesy of Sweta Kothari
hi, courtesy of Rajesh Ranjan
it, courtesy of Luca Ferretti
ja, courtesy of Takayuki KUSANO
kn, courtesy of Shankar Prasad
lt, courtesy of Žygimantas Beručka
lv, courtesy of Raivis Dejus
nb, courtesy of Kjartan Maraas
nds, courtesy of Nils-Christoph Fiedler
or, courtesy of Manoj Kumar Giri
pa, courtesy of A S Alam
pt_BR, courtesy of Djavan Fagundes
ro, courtesy of Adi Roiban
sl, courtesy of Andrej Žnidaršič
sv, courtesy of Daniel Nylander
ta, courtesy of I. Felix
te, courtesy of Krishna Babu K
zh_CN, courtesy of fujianwzh



Overview of changes in Rhythmbox 0.12.5  "Stop Breathin'"
=========================================================

* New cover art search code using discogs.com and MusicBrainz, replacing
  the Amazon cover art search that no longer works (Jonathan Matthew)
* Updated Coherence UPnP plugin (Frank Scholz)
* Clicking on the status icon summons the main window to the current
  workspace (Steve Frécinaux)

Bugs fixed:

410684 - MusicBrainz cover art search
590184 - Update .desktop file for new GenericName conventions
592404 - use correct icon name for the throbber
592763 - fix some button definitions so the button-images setting works
593494 - display location column in playlists if enabled
594008 - fix reading of symlinks with non-ASCII targets
594124 - fix incorrect variable name in gio chunk loader
594419 - disable non-functional lyricwiki search
594728 - deadlock setting replaygain-adjusted volume

New and updated translations:
br, courtesy of Denis ARNAUD
de, courtesy of Christian Kirbach
et, courtesy of Mattias Põldaru
eu, courtesy of Iñaki Larrañaga Murgoitio
ja, courtesy of Takayuki KUSANO
lt, courtesy of Žygimantas Beručka
pa, courtesy of A S Alam
pl, courtesy of Piotr Drąg
pt, courtesy of Filipe Gomes
sr, courtesy of Милош Поповић
sr@latin, courtesy of Miloš Popović
zh_HK, courtesy of Chao-Hsiung Liao
zh_TW, courtesy of Chao-Hsiung Liao


Overview of changes in Rhythmbox 0.12.4  "Raft"
===============================================

* New HAL-free media player detection code (using GUdev and
  the media-player-id collection of device info files); improved MTP
  device detection allowing multiple devices and devices not explicitly
  supported by libmtp (Jonathan Matthew)
* Audio CD improvements: allow metadata retrieval to be retried,
  link to the musicbrainz submission page when data is missing
  (Bastien Nocera, Matt N)
* Configurable action for mouse-wheel events on the status icon
  (volume control or next/previous track) (Gustavo Mora)
* Rearranged to link properly (should help building on Windows or
  with -Wl,-as-needed, probably) (Jonathan Matthew)
* Variety of crashes fixed (Jonathan Matthew)
* Occasional transfer problems with MTP devices fixed (Jonathan Matthew)

Bugs fixed:

322265 - Can't reload CD metadata
376863 - option to configure default action of mouse roll event on tray icon
437110 - librhythmbox-core.so missing some library links
535065 - If a cd is not listed in musicbrainz it can not be added
561953 - Scan Removable Devices don't works with MTP music players
563544 - rework MTP device detection for libmtp 0.3.0
580440 - lists with only one song don't repeat with both "repeat" and "shuffle" selected
585595 - crash at end of playlist with crossfading disabled
586598 - use streaming song titles for lyrics searches
587662 - improved warning message in python plugin support code
588248 - link last.fm plugin with libsoup-gnome
588257 - occasional crash on shutdown
590108 - crashes if there are no saveable metadata types
591874 - pack right sidebar with shrinking disabled
592325 - crashes initialising an iPod Touch

New and updated translations:

- ca, courtesy of Joan Duran
- da, courtesy of Mads Lundby
- de, courtesy of Christian Kirbach
- en_GB, courtesy of Bruce Cowan
- es, courtesy of Jorge González
- et, courtesy of Mattias Põldaru
- fi, courtesy of Tommi Vainikainen
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Dieguez
- gu, courtesy of Sweta Kothari
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- ja, courtesy of Takayuki KUSANO
- kn, courtesy of Shankar Prasad
- nb, courtesy of Kjartan Maraas
- pa, courtesy of A S Alam
- pt_BR, courtesy of Og Maciel
- sv, courtesy of Daniel Nylander
- te, courtesy of Krishna Babu K
- th, courtesy of Theppitak Karoonboonyanan
- zh_CN, courtesy of fujianwzh


Overview of changes in Rhythmbox 0.12.3  "Perfect Depth"
========================================================

* Only attempts to install GStreamer audio decoder plugins
* More accurate lyrics and cover art searches
* Problems with M4A files in podcasts fixed
* CD playback and ripping improvements:
  * Fixed playback when crossfading is enabled
  * New entry fields for album artist, genre, year, disc number
  * Album artist is used when constructing filenames
  * Song title, genre, and artist can be edited in the track list
  * Increased extraction buffer size, meaning faster ripping
* Playback position slider updates more frequently
* Better behaviour with PulseAudio's flat volume
* Support for automatic proxy configuration (via libsoup-gnome)
* Clean up empty directories on media player devices
* Improved playback from MTP devices
* Some improvements manually added and IPv6 addressed DAAP servers

Bugs fixed:

331272 - track change notification should have Next button
345712 - automatic proxy configuration
349066 - cover art search inaccuracy
358313 - lyrics search inaccuracy
382906 - make the position-slider make run more smoothly
425239 - Last.fm paid member usability
437324 - Freeze when right-click -> Properties after start
479897 - Podcast containing m4a always returns failed upon download
501217 - Rhythmbox ignores http_proxy
502670 - Some typos in Rhythmbox's manual
516192 - crash when ejecting audio CD after metadata read failure
531310 - Update of documentation
537113 - attempts to install missing plugins for video and non-audio files
539007 - Gives up instantly on files if mime type isn't recognized
550491 - Use album artist information when importing from audio CD
556296 - crash due to missing podcast information in database
576005 - files played from MTP devices remain in /tmp afterwards
583108 - Song rating throught rhythmbox-client
583700 - Rhythmbox fails to import or play songs with forward slash from MTP devices
583934 - don't search for playlists on devices with no playlist format information
584182 - Additional areas for plugins to add UI elements
584248 - "Always show notifications" doesn't work accross restarts
584378 - undefined symbol in status-icon plugin
584394 - Tooltip for play button does not change to "Stop Playback" once track starts playing
584588 - Update libnotify required version to 0.4.1
584726 - Wrong icon sizes
584770 - minor translatable string fixes
584804 - audioscrobbler only sends one track with RBPlayerGst backend
584927 - daap: Fix “Host” HTTP header on manual daap
584930 - support for daap servers with ipv6 addresses
584958 - fix interaction with pulseaudio 0.9.15 flat volume feature
585043 - Last.fm playlist support
585114 - status-icon plugin build is broken (missing rb-marshall.h)
585524 - add_widget does not allow you to specify packing options
586363 - update for totem-pl-parser API additions
586365 - update for totem-pl-parser API additions
586803 - translator comment addition
586922 - proxy authentication not working for last.fm
586985 - crash when playback pipeline shutdown fails
587329 - allocating GValues in metadata helper incorrectly
587479 - crash when processing some metadata load errors
587595 - crash at end of playlist (playbin2)
587691 - always release gdk lock after calling loader callbacks

Contributors:

- Szilveszter Ördög
- Nguyễn Thái Ngọc Duy
- Sergey Rudchenko
- Edgar Luna
- John Iacona
- Jean-Philippe Garcia Ballester
- Markus Järvinen
- Stefano Frangioni
- Jonathan Matthew

New and updated translations:

- as, courtesy of Amitakhya Phukan
- de, courtesy of Mario Blättermann
- es, courtesy of Jorge González
- et, courtesy of Mattias Põldaru
- fr, courtesy of Claude Paroz
- gu, courtesy of Sweta Kothari
- he, courtesy of Mark Krapivner
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- lt, courtesy of Žygimantas Beručka
- mr, courtesy of Sandeep Shedmake
- or, courtesy of Manoj Kumar Giri
- pa, courtesy of A S Alam
- pl, courtesy of Tomasz Dominikowski
- pt_BR, courtesy of Leonardo Ferreira Fontenelle
- sv, courtesy of Daniel Nylander
- ta, courtesy of I. Felix
- vi, courtesy of Phạm Thành Long


Overview of changes in Rhythmbox 0.12.2  "We Are Underused"
===========================================================

* Support for cover art images embedded in song metadata
* New plugin that sets your IM status to describe the current playing song
* Last.fm submission protocol v1.2 (including the 'now playing' feature)
* New status icon plugin
* Replaced libglade with GtkBuilder
* Switched from playbin to playbin2 when crossfading is disabled, providing
    gapless playback and better support for visualization

Bugs fixed:

* 158168 - Rhythmbox should minimize to tray on Exit
* 317982 - Notification icon redundant when applet is used
* 324114 - Minimize to nothing (no tray)
* 331019 - Show notification when unfocused but not minimized
* 345975 - Show album covers embedded in files e.g. mp3 ID3 tags
* 349280 - Move to GtkStatusIcon (Help kill libegg)
* 396409 - Radio stations using chained oggs break rhythmbox
* 397196 - rhythmbox error report "Unknown playback error" needs improvement
* 406807 - visualisation plugin blocks video output when not active
* 501998 - Mouse pointer should disappear in fullscreen visualization
* 509845 - Keyboard shortcuts should work with fullscreen visuals
* 526493 - New plugin: change IM status according played song
* 542922 - Use playbin2 instead of playbin
* 551002 - "Don't Really Close" should have an animation
* 562016 - Migrate from libglade to GtkBuilder
* 567335 - Crash in while playing file and visualizing
* 579137 - Cannot rearange playlists longer than one screen size
* 580269 - Rhythmbox won't compile with latest totem-pl-parser
* 580663 - WKNC Radio streams have changed URL
* 580721 - Crashes when not selecting the limiting kind
* 580743 - Rhythmbox doesn't support the newest audioscrobbler api
* 581468 - Missing im-status plugin file in POTFILES.in
* 581574 - Rhythmbox tries to import desktop files
* 582130 - [PATCH] New Jamendo Logo
* 583171 - crash due to plugins.ui not being installed
* 583926 - NetBSD doesn't have sys/vfs.h
* 583938 - Unportable test(1) construct in configure script

Contributors to this release:

- Bastien Nocera
- Christian Becke
- Jonathan Matthew
- Matt Novenstern
- Ryan Hughes
- Sebastian Morr
- Sergey Rudchenko
- Thomas Klausner
- Vincent Untz
- Víctor Manuel Jáquez Leal
- Will Woods

Updated translations
--------------------

- af, courtesy of F Wolff
- da, courtesy of Charlie Tyrrestrup
- de, courtesy of Christian Kirbach
- es, courtesy of Jorge González
- fr, courtesy of Claude Paroz
- gu, courtesy of Sweta Kothari
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- ja, courtesy of Takeshi AIHANA
- ne, courtesy of Shyam Krishna Bal
- pa, courtesy of A S Alam


Overview of changes in Rhythmbox 0.12.1  "Easily Fooled"
========================================================

* Removal of libgnome dependency when building with gtk+ 2.14+
* Greatly reduced memory usage when accessing Jamendo catalog
* Cover art improvements:
  - Provide cover art for all songs transferred to iPods
  - Support for transferring cover art to MTP devices
  - Cover art image widget is better behaved when resized
* Switched to decodebin2, notably allowing playback of chained ogg streams
* Better support for lossless encoded files in the UI
* Compatibility with the DeviceKit-disks gvfs volume monitor
* Some support for 'album sortname' tags
* Allow configuration of the audioscrobbler handshake URL (libre.fm)
* Improved network buffering in the crossfading player backend

Bugs fixed:

* 576031 - crasher at end of playlist
* 513828 - tooltip for clean icon in the entry search
* 529873 - The artdisplay plugin should be able to supply metadata for
           arbitrary db entries
* 576238 - crash due to extra mutex unlock call
* 510236 - crash when an import error occurs on a PSP or n770 device
* 576846 - crash when creating an auto playlist with the browser visible
* 576987 - minor string issues
* 576925 - shortcut key for the 'download location' entry doesn't work
* 576673 - shortcut key for the 'rating' label in the song properties window
           doesn't work
* 365154 - crash when changing the selected device for audio CD burning
* 576038 - stop using libgnome
* 577840 - race condition in audio sink setup code when playing network
           streams or audio CD
* 577465 - Magnatune plugin is not robust
* 578060 - musicbrainz3 CD metadata getter crash if the release has no date
* 337438 - display and sort on bitrate properly for lossless encodings
* 576574 - musicbrainz3 CD metadata getter crash if there is no release
* 426164 - resizing sidebar results in bad cover art image quality
* 443720 - art image shown only partially after side bar resize
* 578514 - Player detection broken with DeviceKit-disks gvfs monitor
* 578398 - crash when updating podcast feeds containing entries with empty URIs
* 570600 - rhythmbox picks bad filenames for ipod
* 577753 - rhythmbox does not support album sort tag
* 473757 - crash when lyrics window is destroyed while still fetching lyrics
* 579262 - stop playback properly after missing plugin install fails
* 579465 - bizarre crash in volume monitoring code
 

Contributors to this release:

- Jonathan Matthew
- Christophe Fergeau
- Kim Sullivan
- Bastien Nocera
- Niels Vorgaard Christensen
- Bruce Cowan
- Paul Bellamy
- Robert Ancell
- Sebastian Dransfeld

Updated translations
--------------------

en_GB: Bruce Cowan
es: Jorge González
eu: Iñaki Larrañaga Murgoitio
fi: Ilkka Tuohela
fr: Claude Paroz
hu: Gabor Kelemen
it: Luca Ferretti
kn: Shankar Prasad
mr: Sandeep Shedmake
pa: Amanpreet Singh Alam
pt_BR: Og Maciel
ru: Yuri Myasoedov
sv: Daniel Nylander
th: Theppitak Karoonboonyanan
zh_CN: Funda Wang
zh_HK: Chao-Hsiung Liao
zh_TW: Chao-Hsiung Liao


Overview of changes in Rhythmbox 0.12.0  "Flood Victim"
=======================================================

* Replaced gnome-vfs with GIO
* New CD burning plugin using Brasero
* Improvements to the cross-fading player backend
* Various improvements to MTP device support
* Updated audio CD metadata code, supporting CD-Text and musicbrainz3
* User data and cached files moved to XDG base directory spec locations
* Much clearer indication of problems with last.fm login and streaming
* Where possible, provide a simple means to duplicate audio CDs
* Greatly improved performance when accessibility is enabled
* Updated Coherence UPnP plugin
* iPod improvements: avoid creating duplicates, add a device properties
   dialog, initialize brand new ipods
* Support for more last.fm stream types
* GTK+ and GLib usage cleanups: use single header includes,
   stop using deprecated functions and widgets
* Reworked tray icon tooltip using GtkTooltip instead of SexyTooltip
* Random play order should repeat itself far less often
* If using pulseaudio, control the output volume using the PA stream volume
* Reworked search infrastructure that might make interesting things possible

Contributors to this release:
- Pascal Terjan
- "OrbWeaver"
- Brian Cameron
- Philippe Rouquier
- Bastien Nocera
- Jonathan Matthew
- Tim Retout
- Mike Gratton
- Víctor Manuel Jáquez Leal
- Neil Loknath
- Oscar Morante
- Alban Crequy
- John Daiker
- Andy Owen
- Uri Sivan
- Michael Terry
- Pedro Fragoso
- Christophe Fergeau
- James "Doc" Livingston
- Patrick Wade
- Luca Ferretti
- Flavio Martins
- Takao Fujiwara
- Jason Crain
- Susana Pereira
- Pelle Kristiansson
- John Wimer
- Lasse Bigum
- Martin Franco
- Steven Brown
- Kjartan Maraas
- Maxim Ermilov
- Ed Catmur
- Paul Drain
- William Jon McCann
- Johan Frank
- Mika Wahlroos
- Bruno Prin
- Eric Shattow
- Colin Leroy
- Ernst Persson
- John Millikin
- Linus Walleij
- Johannes H. Jensen
- Raul Soriano
- Wendy Hu
- Sebastien Bacher
- Matthias Clasen
- Dereck Wonnacott

Updated translations
--------------------

ar: Ahmad Farghal
be@latin: Ihar Hrachyshka
ca: Joan Duran, Francesc Vilches
cs: Kamil Paral, Petr Kovar
da: Kasper Nielsen
de: Christian Kirbach, Jochen Skulj
en_GB: Philip Withnall
es: Jorge González, Vincent van Adrighem
eu: Iñaki Larrañaga Murgoitio, Inaki Larranaga Murgoitio
fi: Ilkka Tuohela
fr: Claude Paroz
ga: David O'Callaghan <david
gl: Ignacio Casal Quinteiro
he: Mark Krapivner
hr: Robert Sedak
hu: Gabor Kelemen
it: Luca Ferretti
ja: Mitsuya Shibata
lt: Žygimantas Beručka, Gintautas Miliauskas
lv: Raivis Dejus
mk: Arangel Angov
nb: Kjartan Maraas
nl: Tino Meinen
pl: Tomasz Dominikowski
pt: Filipe Gomes
pt_BR: Vladimir Melo, Raul Pereira
ru: Yuri Myasoedov
sk: Peter Tuhársky
sr.po, sr@latin: Goran Rakić
sv: Daniel Nylander
th: Theppitak Karoonboonyanan
vi: Nguyễn Thái Ngọc Duy, Phạm Thành Long
zh_CN: 甘露(Gan Lu), Funda Wang
zh_HK: Chao-Hsiung Liao
zh_TW: Jackden, Funda Wang




Overview of changes in Rhythmbox 0.11.6  "Haunt You Down"
=========================================================

* Relicensed with GPL exception for GStreamer plugins
* Improvements to the cross-fading playback backend
* Use Amazon ECS 4.0 web service for cover art searches
* Remember browser state for (some) removable devices
* Automatically remove podcast episodes that are no longer available
* Only display error dialogs for manually triggered podcast updates
* Allow playlists from DAAP shares to be sorted
* Fix transcoding when transferring to MTP devices
* Start moving cached data to XDG_CACHE_HOME
* More inclusive local cover art search
* Lots of improvements to the iPod plugin
* Switch to the new last.fm streaming system
* Much improved API documentation coverage


Contributores to the release:
- Thomas Andersen
- Sebastien Bacher
- Niels Vorgaard Christensen
- Jay Cornwall
- Paul Drain
- Christophe Fergeau
- Luca Ferretti
- Marcin Galazka
- Alexander Gitter
- Maximilian Grothusmann
- Andreas Henriksson
- Jeremy Katz
- Colin Leroy
- James Livingston
- Edgar Luna
- Nikolai Luthman
- Jonathan Matthew
- John Millikin
- Mirco Müller
- Bastien Nocera
- Alfredo Pironti
- Frank Scholz
- Shogun
- Sjoerd Simons
- F. Steinel
- Mats Taraldsvik
- Philippe Troin
- David Turner
- Mika Wahlroos
- Colin Walters
- Thomas Zander
- Adam Zimmerman

Updated translations
--------------------

Petr Kovar, Kamil Páral (cs)
Jochen Skulj (de)
Simos Xenitellis (el)
Jorge Gonzalez (es)
Claude Paroz (fr)
Ignacio Casal Quinteiro (gl)
Mark Krapivner (he)
Luca Ferretti (it)
Žygimantas Beručka (lt)
Arangel Angov (mk)
Kjartan Maraas (nb)
Tino Meinen (nl)
Yannig Marchegay (Kokoyaya) (oc)
Tomasz Dominikowski (pl)
Vladimir Melo, Fábio Nogueira (pt_BR)
Peter Tuhársky (sk)
Daniel Nylander (sv)
甘露(Lu Gan) (zh_CN)



Overview of changes in Rhythmbox 0.11.5
=======================================

* Improvements to the cross-fading playback backend
* Assorted bug fixed for MTP device support
* Add "shuffle playlist" command for playlists
* Improvements to iPod art and podcast support
* Fix some issues causing problems for accessability tools
* Several major improvements to UPnP support (including acting as a renderer)
* List Rhythmbox as supporting lastfm:// URIs

Contributors to the release:
- Djihed Afifi
- Sebastien Bacher
- Damien Carbery
- Ed Catmur
- Jay Cornwall
- Christophe Fergeau
- Ralph Giles
- Kern Handa
- Ryan Hughes
- Alex Kloss
- Karol Krizka
- Jonathan Matthew
- Mirco Müller
- Claude Paroz
- Frank Scholz
- Sam Solon
- Kouhei Sutou
- Götz Waschk
- Dan Winship
- Li Yuan
- David Zeuthen

New translations
----------------

* ps		Zabeeh Khan

Updated translations
--------------------

* ar		Ahmad Farghal
* be@latin	Ihar Hrachyshka
* ca		Gil Forcada, David Planella
* cs		Kamil Paral
* da		Kenneth Nielsen
* de		Hendrik Richter
* en_GB		Philip Withnall
* es		Jorge Gonzalez
* eu		Inaki Larranaga Murgoitio
* fi		Ilkka Tuohela
* fr		Claude Paroz, Stéphane Raimbault
* ga		Seán de Búrca
* gl		Ignacio Casal Quinteiro
* he		Mark Krapnov
* hu		Gabor Kelemen
* it		Luca Ferretti
* ja		Takeshi AIHANA
* lt		Žygimantas Beručka, Gintautas Miliauskas
* mk		Jovan Naumovski
* nb		Kjartan Maraas
* ne		Pawan Chitrakar
* nl		Tino Meinen
* oc		Yannig Marchegay
* pl		Artur Flinta
* pt		Filipe Gomes
* pt_BR		Og Maciel
* ru		Yuri Myasoedov, Anton Shestakov
* sk		Peter Tuhársky
* sv		Daniel Nylander
* tr		Gil Forcada
* zh_HK		Chao-Hsiung Liao
* zh_TW		Chao-Hsiung Liao


Overview of changes in Rhythmbox 0.11.4 ""
==========================================

* Support automatic GStreamer plugin installation
* Improved cross-fading backend
* Improved Podcast feed support, including Atom and APML
* Add optional mozilla plugin to handle itms:// links
* Fade volume when pausing and unpausing
* Improve performance and stability of MTP device support
* Stop putting deleted tracks on iPods in the Garbage Bin
* Support PSPs with newer firmware
* Improvements to the Coherence-based UPnP support
* Minor improvements to Python bindings for plugins

Contributors to the release:
- John Daiker
- Louis Francis
- Irene Huang
- James Livingston
- Jonathan Matthew
- Andreas Nilsson
- Bastien Nocera

Updated translations
--------------------

* be@latin	Ihar Hrachyshka
* de		Andre Klapper
* es		Jorge Gonzalez
* fr		Robert-André Mauchin
* ga		Seán de Búrca
* gl		Ignacio Casal Quinteiro
* it		Luca Ferretti
* ja		Takeshi AIHANA
* ka		Namhyung Kim
* lt		Žygimantas Beručka
* nb		Espen Stefansen
* pt		Filipe Gomes
* sv		Daniel Nylander

Overview of changes in Rhythmbox 0.11.3 "Splinter"
==================================================

* Allow drag-and-drop of images to the cover art display
* Allow DAAP shares to be connected to manually
* Support DAAP smart playlists and radio streams
* Handle file name being passed on the command line again
* Add "donate to artist" action to Jamendo plugin
* Support some more lyric sites
* Improvements and fixes to the cross-fading player
* Improve UPnP support
* Improve track importing, especially on generic audio players
* Allow python plugins to use threads
* Enable music store plugins by default
* Support playback from fm radio tuner cards

As well as a heap of bug fixes.

Contributors to the release:
- Paolo Borelli
- John Bryant
- Brian Cameron
- Ed Catmur
- Cosimo Cecchi
- Tim Chevalier
- Jay Cornwall
- Jeff Craig
- Paul Drain
- Nguyen Thai Ngoc Duy
- James Henstridge
- David Keijser
- Alex Lancaster
- James Livingston
- Stephane Loeuillet
- Jonathan Matthew
- Bastien Nocera
- Tom Parker
- Tim Retout
- Claudio Saavedra
- Torsten Schoenfeld
- Kouhei Sutou
- Mika Wahlroos
- Philip Withnall
- Austin

Updated translations
--------------------

* ar		Djihed Afifi
* be@latin	Ihar Hrachyshka
* ca		Francesc Vilches
* cs		Martin Picek
* en_CA		Adam Weinberger
* es		Jorge Gonzalez
* eu		Inaki Larranaga Murgoitio
* fi		Ilkka Tuohela
* fr		Stéphane Raimbault
* gl		Ignacio Casal Quinteiro, Iván Méndez López
* hu		Gabor Kelemen
* it		Luca Ferretti
* ja		Takeshi Aihana
* lt		Žygimantas Beručka, Gintautas Miliauskas
* lv		Raivis Dejus
* mk		Jovan Naumovski
* nb		Kjartan Maraas, Espen Stefansen
* nl		Tino Meinen
* pl		Artur Flinta
* pt_BR		Og Maciel, Pedro de Medeiros
* ro		Alex Eftimie
* sk		Peter Tuharsky
* sv		Daniel Nylander


Overview of changes in Rhythmbox 0.11.2 "Inverted Ouroboros"
============================================================

* add partial support for UPnP A/V using Coherence
* large memory usage reductions for the Jamendo plugin
* read some keys from .is_audio_player files, like Banshee
* handle playlist-paths given to us by HAL better
* allow plugins to add new play orders
* notify last.fm about songs played on iPods

As well as a heap of bug fixes.

Contributors to the release:
- Jürg Billeter
- Dennis Cranston
- Christophe Fergeau
- Luca Ferretti
- Alex Lancaster
- Eduardo Lima
- James Livingston
- Jonathan Matthew
- Bastien Nocera
- Tim Retout
- Adam Zimmerman

Updated translations
--------------------

* dz	Pema Geyleg
* eu	Inaki Larranaga Murgoitio
* fi	Ilkka Tuohela
* fr	Claude Paroz
* gl	Ignacio Casal Quinteiro
* it	Luca Ferretti, Giuseppe M
* lt	Žygimantas Beručka
* lv	Raivis Dejus
* pl    Artur Flinta
* pt_BR	Vladimir Melo, Evandro F. Giovani, Og Maciel
* sv	Daniel Nylander
* vi	Nguyễn Thái Ngọc Duy


Overview of changes in Rhythmbox 0.11.1 "<codename:insert/>"
==============================================================

* more new icons
* make gapless/xfade playback and visualisations work together better
* handle lastfm:// URIs
* make Magnatune/Jamendo loading intro saner on small screens
* fix last.fm streaming
* allow the user of Magnatune gift cards
* do iPod DB saving in the background, not blocking the UI
* vastly reduce the Jamendo plugin's memory usage
* add support for MTP audio players
* clean up the playback preferences UI
* update play count, rating and last played on iPods
* add support for multiple lyrics sites, and allow editing of lyrics

Plus the usual other bug fixes and minor improvements.

Contributors to the release:
- Christophe Fergeau
- Luca Ferretti
- Peter Grundström
- Jaap A. Haitsma
- Alex "weej" Jones
- James Livingston
- Jonathan Matthew
- Michael Monreal
- Bastien Nocera
- Tom Parker
- Riley Patterson
- Sirio Bolaños Puchet
- Tim Retout
- Adam Zimmerman


Updated translations
--------------------

* es    Maria Majadas
* gl    Ignacio Casal Quinteiro
* nl    Reinout van Schouwen
* pl    Artur Flinta
* sv    Daniel Nylander
* vi    Phạm Thành Long
* zh_CN Funda Wang


Overview of changes in Rhythmbox 0.11.0 "Rough in the diamond"
==============================================================

* Add gapless/cross-fading playback backend (130426)
* Add awesome Tango-style icons (388648, 380896, 388650, 314608)
* Don't wake up the CPU all the time while doing nothing (399012)
* Allow plugins to add filer and tee elements/sub-piplines
  to the gstreamer pipeline (345181)
* Group sources together (359740)
* Add DB support for keywords (324540)
* Save modified iPod playlists (436744), and
  marks podcasts as such (424086)
* Fix Unicode normalisation, which also makes searching
  ignore diacritical marks (421253, 338824)
* Use xdg-user-dirs, and kill the druid (yay!) (411247)
* Write art out to the DB on iPods (357400)
* Parse last.fm group radio URLs too (407320)
* Add support for MusicBrainz id tags (410681)
* Minor improvements to the cover-art plugin
* Retrieve cover art from last.fm (414065) and Magnatune (411622)
* Add some more useful options to rhythmbox-client (414648)
* Add preliminary support for Vala plugins
* Use GSequence instead of EggSequence (419599)
* plus a heap of bug fixes and minor improvements

This release also drops support for:
- GStreamer 0.8
- GTK+ 2.6
- DBus 0.3x before 0.35
- HAL 0.2

Contributors to the release:
- Hylke Bons
- Kjell Braden
- Ed Catumur
- Christophe Dehais
- Paul Drain
- Edward Duffy
- Christophe Fergeau
- Andreas Hanke
- Denis Jacquerye
- Alex "weej" Jones
- Gabor Kelemen
- Alex Lancaster
- James Livingston
- Jonathan Matthew
- William Jon McCann
- Matt N
- Andreas Nilsson
- Jonty Pearson
- Brian Pepple
- Tim Retout
- Edward Rudd
- Robin Sonefors
- Adam Zimmerman
- 'William'


Updated translations
--------------------

* ar    Djihed Afifi, Ahmad Farghal
* ca    Josep Puigdemont i Casamajó
* de    Hendrik Brandt, Sven Herzberg
* fi    Tommi Vainikainen
* fr    Stéphane Raimbault
* gl    Ignacio Casal Quinteiro
* hu    Gabor Kelemen
* lt    Žygimantas Beručka
* nl    Reinout van Schouwen
* pt    Filipe Gomes
* pt_BR Washington Lins
* sv    Daniel Nylander
* zh_CN Funda Wang


Overview of changes in Rhythmbox 0.10.1 "Diamond in the rough"
==============================================================

* fix saving of db on iPod shuffles (386662)
* fix some crashes on Solaris (418886)
* fix crasher due to python logging (429687)
* fix crash when MusicBrainz returns nothing (414864)
* prefer id3v2 over v1, even when they arrive later (428276)
* fix crash when doing entry.get() from python (432949)
* cancel async gnomevfs transfers correctly (434003)
* fix query model reorder issues (436329)
* remove timeout correctly (436355)
* don't remove items from list being iterated (404169)
* build against totem-plparser 2.19's new API

Contributors to the release:
- Christophe Fergeau
- Irene Huang
- James Livingston
- Jonathan Matthew
- Bastien Nocera


Updated translations
--------------------

writeme


Overview of changes in Rhythmbox 0.10.0 "The City Above"
========================================================

* Fix assorted crashers (410601, 411783, 411558, 411189, 413206, 393642, 416024)
* fix build issues (411141, 380411, 411145, 413301, 419874)
* Fix typos (411584, 413640)
* stop some critical warnings (411703)
* Improve Jamendo error handling (411038)
* Make compatible with libsoup other than 2.2.99 (410940)
* Italisise Magnatune text correctly (412931)
* Fix some memory leaks
* Use AudioScobbler logo properly (409164)
* Don't cause gnome-power-manager to start (416213)
* Fix some threading issues (420444)
* Don't add files starting with a period (395124)
* Improve Magnatune error handling (414980)
* Fix sizing of playlist format combo box (419153)
* Copy MP3s to audio players without lame installed

Contributors to the release:
- Kjell Bradan
- Gilles Dartiguelongue
- Nguyen Thai Ngoc Duy
- Christophe Fergeau
- Andreas Hanke
- Irene Huang
- Alex Jones
- James Livingston
- Og Maciel
- Jonathan Matthew
- Julien Puydt
- Edward Rudd
- Adam Zimmerman


Updated translations
--------------------

ar	Ahmad Farghal
da	Peter Bach
dz	Pema Geyleg
en_GB	David Lodge
fr	Claude Paroz and Stéphane Raimbault
hu	Gabor Kelemen
it	Luca Ferretti
pt_BR	Lucas Mazzardo Veloso, Og Maciel and Raul Pereira
sv	Daniel Nylander
zh_CN	Funda Wang


Overview of changes in Rhythmbox 0.9.8 "Type slowly"
=====================================================

* move to SVN and move round lots of files. yay!
* use "friendly" date-time in track list (William Jon McCann)
* add visualisation plugin (JOnathan Matthew)
* support more lastfm:// URIs (Jonathan Matthew)
* split code out into a library common to plugins and the binary (Jonathan Matthew)
* display cover art in the tray icon tooltop and song-change notification (Ed Catmur)
* Magnatune improvements (Adam Zimmerman)
* core art improvements, support art for podcasts et al (Ed Catmur, Martin Szulecki)
* Python plugin improvements (James Livingston, Jonathan Matthew)
* add support for the Jamendo online catalogue (Guillaume Desmottes)
* support new Gnome "media key" mechanism (James Livingston, Jonathan Matthew)
* support track transfer for "generic" audio players, and improve iPod
  track transfer support, including transcoding (James Livingston)
* many build/run issues on Solaris (Irene Huang)
* Nokia N800 support (William Jon McCann)
* Many core improvements, for future work
* the usual pile of minor features and bug fixes

Updated Translations
--------------------

* ca	Jordi Mallach
* da	Peter Bach
* de	Hendrik Brandt
* en_CA	Adam Weinberger
* en_GB	David Lodge
* fr	Jonathan Ernst and Stéphane Raimbault
* gl	Ignacio Casal Quinteiro
* hi	Gaurav Mishra (NEW)
* it	Luca Ferretti
* lt	Žygimantas Beručka
* nl	Tino Meinen
* pl	Artur Flinta and the Gnome Polish Team
* pt_BR	Guilherme de S. Pastore
* sv	Daniel Nylander
* vi	Nguyễn Thái Ngọc Duy


Overview of changes in Rhythmbox 0.9.7 "I love Perth"
=====================================================

* Use gnome-power-manager to inhibit suspend while playing (Jonathan Matthew)
* Add support for transient metadata (Ed Catmur)
* Plugin-ise Internet radio support (Jonathan Matthew)
* Add support for the MagnaTune online store (Adam Zimmerman)
* Add support for playin Last.fm radio streams (Matt N)
* Even more support for broken podcast feeds (Alex Lancaster)
* Display placeholder when no cover art can be found (Ed Catmur)
* Build fixes (Brian Cameron, Gilles Dartiguelongue, Alex Lancaster)
* Improve the python console (Brian McKenna)
* Ask the user if MusicBrainz returns multiple albums (Edgar Luna)
* Refactor support for "streaming" sources (Jonathan Matthew)
* Let dbus clients request playing song notification (Oskari Saarenmaa)
* Add more unit tests (Jonathan Matthew)
* Fix some a11y stuff (Jerry Tan)
* Plugin-ise DAAP, and DAAP improvements (Jonathan Matthew)
* Startup improvements, including async directory walking (James Livingston)
* Improve intra-application Drag and Drop (Jonathan Matthew)
* Support gnonfaudiosink's "profile" property (Alex Jones)
* Remove insane threading from podcasts (James Livingston, Jonathan Matthew)
* Disable ReplayGain by default, since it has issues (James M)

Plus the usual assortment of bug fixes, performance and memory improvements, and minor features.


Updated Translations
--------------------

* ar	Djihed Afifi
* ca	Jordi Mallach, Josep Puigdemont i Casamajó
* dz	Pema Geyleg (New)
* el	Nikos Charonitakis
* en_CA	Adam Weinberger
* es	Francisco Javier F. Serrador 
* fi	Ilkka Tuohela
* gl	Ignacio Casal Quinteiro
* hu	Gabor Kelemen
* it	Luca Ferretti
* ja	Takeshi AIHANA
* lt	Žygimantas Beručka
* nb	Kjartan Maraas
* nl	Vincent van Adrighem
* sv	Fredrik Tuomas
* vi	Nguyễn Thái Ngọc Duy



Overview of changes in Rhythmbox 0.9.6 "Live from the shores of lake Burley-Griffin"
====================================================================================

* fix DAAP seeking (Jonathan Matthew: #330410)
* display track numbers in playlists too (Alex Lancaster: #329986)
* retrieve playlsit and audio folder information from HAL (Jonathan Matthew: #333845)
* make search box coloured when active (Nguyễn Thái Ngọc Duy: #344416)
* improve ID3 tag writing (Jonathan Matthew, James Livingston)
* load local cover art, and large improvements to plugin (Ed Catmur, Peter: #345688)
* build fixes: Solaris (Brian Cameron: #345673)
* Store MusicBrainz track IDs in the DB (Ståle Lyngaas: 343491)
* fix some i18n issues (Nguyễn Thái Ngọc Duy: #345286)
* add gnome-keyring support to DAAP (James Livingston, Jonathan Matthew: #330346)
* allow hiding of plugins and disabler per-user plugins (James Livingston: #349395)
* plugin improvements (James Livingston, Jonathan Matthew)
* HTTP proxy-related fixes/improvements (Jonathan Matthew: #345712, #345895)
* drag-and-drop improvements (James Livingston: #337657)
* importing fixes (Ed Catmur, Jonathan Matthew)
* add "property changed" signal for dbus clients (Jonathan Matthew: #332461)
* turn CD burning into a plugin (William Jon McCann: #344300)
* turn audio CD support into a plugin (James Livingston: #349415)
* LIRC plugin fixes (Jonathan Matthew)
* improve database thread usage
* make DB handle unknown entry-types (Jonathan Matthew: #330226
* improve plugin debug output, and bindings (James Livingston)
* improve "import errors" and "missing files" source (William Jon McCann: #346800)
* fix many memory leaks (William Jon McCann: #347446, #347446, #347446, #347446)
* use GMapperFiles for DAAP transfers, fixing some iTunes clients (Jonathan Matthew: #330410)
* add support for alternate playlists files (Alex Lancaster: #343659)
* handle transparent panels correctly (DanWinship: #348208)
* fix playlists subset searching (Jonathan Matthew: #348617)
* make iradio playlists handling better (Jonathan Matthew: #347097)
* use GOption instead og popt (William Jon McCann: #346930)
* remember visibility for remote files, as well as local ones (James Livingston)
* be smarter about creating podcast file names (Jonathan Matthew: #330766, #321991)
* allow multiple selections in the Import Folder dialog (Christian Becke: #351414)

Plus the usual assortment of bug fixes, performance and memory improvements, and minor features.

Updated Translations
--------------------

* bg	Rostislav Raykov
* ca	Jordi Mallach
* de	Daniel Schindler, Hendrik Brandt
* el	Kostas Papadimas, Dimitris Glezos
* en_GB	David Lodge
* es	Francisco Javier F. Serrador, María Majadas
* eu	Inaki Larranaga
* fi	Ilkka Tuohela, Tommi Vainikainen
* fr	Haïkel Guémar, Damien Durand
* gl	Ignacio Casal Quinteiro
* hu	Gabor Kelemen
* it	Guilherme de S. Pastore
* lt	Žygimantas Beručka
* lv	Raivis Dejus
* mk	Jovan Naumovski
* ne	Pawan Chitrakar
* nl	Tino Meinen
* sv	Fredrik Tuomas
* th	Theppitak Karoonboonyanan
* vi	Clytie Siddall
* zh_CN	Funda Wang
* zn_HK	Abel Cheung
* zn_TW	Abel Cheung


Overview of Changes in Rhythmbox 0.9.5
======================================

* fix icon themability (Steve Frécinaux)
* handle iPods that have been repartitioned (Christophe Fergeau: 325034)
* allow ipod renaming, ejection, deletion and transfer (Christophe Fergeau)
* make iradio handling work much better (Jonathan Matthew: 320336, 324402)
* improve out-of-process metadata loader (Jonathan Matthew: 338062)
* update documentation (Baptiste Mille-Mathias, )
* pluginise iPod and Generic players (Christophe Fergeau, Jonathan Matthew)
* support saving playlists as M3U (Gavin Stewart: 316295)
* remember browser visibility when changing sources (Alex Lancaster: 118862)
* handle media unmounts better (Jonathan Matthew: 339023)
* make entry types be a structure, and add support for extended data, and
  various method implementations (Christophe Fergeau, James Livingston)
* album art view&download plugin (Alex Lancaster, James Livingston,
  Gareth Murphy, William Jon McCann, Martin Szulecki)
* update the FSF's address (Gunnar Steinn Magnusson)
* much improved Python bindings (James Livingston, Jonathan Matthew)
* fix some translation issues (Nguyễn Thái Ngọc Duy, James Livingston: 339380, 343081)
* improve startup time (James Livingston, Jonathan Matthew)
* fix audioscrobbler submission, and allow viewing of info (Jonathan Matthew: 325848)
* improve DBus interface (Jonathan Matthew, Tim Moloney)
* allow transcoding during track transfer (Alessandro Decina: 322268)
* cd burning fixes and improvements (William Jon McCann)
* podcast feed parsing and download fixes (James Livingston: 339728)
* turn the playback backend into a full GObject interface (James Livingston: 338667)
* add more API documentation (Jonathan Mattjew)
* add vorbis tag editing (James Livingston: 339878)
* fix various threading insanities (Jonathan Matthew)
* display "child libraries" with multiple library locations (James Livingston: 100552)
* improve drag-and-drop from browsers (Jonathan Matthew: 327540)
* support Motorola ROKR phones (Joe Barnett)
* make query model limits saner (Janes Livingston)
* source cleanup and API improvement (James Livingston, Jonathan Matthew)
* improve status feedback for DAAP (Jonathan Matthew: 322020 and 338978)
* memory improvement and leak fixed (James Livingston, Jonathan Matthew)
* kill Bonobo support, require DBus, support DBus 0.3.0 (Jonathan Matthew: 339720)
* add lyric download and view plugin (Jonathan Matthew: 319320)
* add "add to playlist" menu (James Livingston: 323364)
* allow changing of audio cd metadata (James Livingston)
* improve DAAP handling (William Jon McCann: 342643)
* update and write new unit tests (James Livingston)
* group sources (Jonathan Matthew)
* add new "rhythmbox-client" program (Jonathan Matthew: 340863, 155763)
* assorted build fixes (Brian Cameron, Paul Drain, Elijah Newren,
  Hendrik Richter, Ryan P Skadberg, Götz Waschk, Pawel Worach,
  FreeBSD GNOME project, others)
* HIG and UI improvements (Dennis Cranston, Baptiste Mille-Mathias)
* many other bug fixed (Christophe Fergeau, Jaap A. Haitsma, James Livingston,
  Jonathan Matthew, Mikael Olenfalk, Roozbeh Pournader)


Overview of Changes in Rhythmbox 0.9.4
======================================

* add support for source-specific toolbar items (James Livingston: 329041)
* make the status column blank for undownloaded podcasts (Jonathan Matthew)
* make iradio station connect asynchronous (James Livingston:128106)
* break mDNS class into backend-specific classes (William Jon McCann)
* add support for password-protected DAAP shares (William Jon McCann: 322966)
* have per-client DAAP session (William Jon McCann: 329814)
* make DAAP source icon show authentication status (William Jon McCann: 330291)
* turn of paranoia when playing audio cds (James Livingston: 322270)
* use network byte-order for DAAP, fixes some issues with Banshee (Jonathan Matthew)
* fold RBSimpleView back into RBPropertyView (James Livingston: 327500)
* store hidden state of entries in on-disk db (James Livingston: 325215)
* add dbus methods for static playlist control (Jonathan Matthew: 329958)
* force URI canonicalisation when first upgrading (James Livingston: 329988)
* add browsers to playlists (James Livingston: 118862)
* don't put drag-n-drop URIs in reverse order (Jonathan Matthew: 330283)
* notification bubble fixed (Jonathan Matthew: 330876)
* RhythmDB API cleanup (James Livingston, Jonathan Matthew: 330226)
* add auto-completion to tag-editing (Sven Herzberg: )
* add action to clear entire queue (Jonathan Matthew: 330014, 331392)
* don't display entry notify bubble when containing "&" (Jonathan Matthew: 330784)
* don't block UI when reading audio cd TOC (James Livingston: 329942)
* stop polling cd drive when playing from it (James Livingston: 330716)
* add Party Mode (William Jon McCann: 323933)
* don't stop when playing track is deleted (James Livingston: 131150, 331712)
* add quality column (James Livingston: 167659)
* add "queue playlist" action (James Livingston: 330490, 330490)
* update documentation to not be completely out-of-date (Baptiste Mille-Mathias: 314001)
* add support for out-of-process metadata service (Jonathan Matthew: 329597)
* port to using gnome-doc-utils (Luca Ferretti)
* indicate pre-empted source when playing from queue (Jonathan Matthew: 330819)
* add "starts with" and "ends with" string criteria (James Livingston)
* don't choke on podcast feeds which use timezone names (Alex Lancaster: 331691)
* make auto playlist editor non-modal (James Livingston: 320030)
* add "missing files" and "import errors" sources (Jonathan Matthew: 167763, 142322)
* use entry and button for Library Location preference (James Livingston: 328414)
* remember window visibility between sessions (James Livingston: 127320)
* don't import known non-audio files (James Livingston: 323179)
* read more metadata from iPod dbs (Gunnar Steinn Magnusson: 324648)
* support sources with no entry view (James Livingston: 331673, 331673)
* add read-only PSP support (James Livingston, Bastien Nocera: 332337)
* add read-only Nokia 770 support (James Livingston)
* restore browser selections after browser change (James Livingston)
* add "download location" to podcast info window (Jonathan Matthew: 330696)
* fix issues with new totem-plparser recursion (James Livingston: 331508)
* use drive rather than volume name for removable media (James Henstridge: 333080)
* add gst 0.10 id3 tag editing (James Livingston: 309609)
* add filtering support to debug output (Jonathan Matthew)
* add plugin support (James Livingston: 330523)
* add search bar (William Jon McCann: 328618, 334407)
* filter browsers with search terms (Jonathan Matthew: 322787)
* remove non-libnotify notifications (James Livingston: 331721)
* update documentation (Baptiste Mille-Mathias)
* add Increase and Decrease volume menu items (James Livingston: 123383)
* add Python Console plugin (Steve Frécinaux)
* add HTTP proxy support (Jonathan Matthew: 335091)
* do all gnomevfs stats in one batch (Jonathan Matthew: 334106)
* build properly on Solaris (Brian Cameron: 335318)
* borrow Banshee's Eject icon, because g-i-t doesn't have one
* have better "no GStreamer plugin found" messages (James Livingston: 128109)
* add LIRC plugin (Jonathan Matthew)
* use libsexy to add a clear button to the search box (James Livingston: 128109)
* allow overriding of the toolbar button style (James Livingston: 336797)
* add profiling hooks (William Jon McCann: 337387, 338114)


and a whole heap of other bugs fixes and minor improvements (too many to list...)


Updated Translations
--------------------

* cs	Miloslav Trmac
* el	Nikos Charonitakis, vyruss
* es	Francisco Javier F. Serrador
* eu	Inaki Larranaga
* fi	Ilkka Tuohela
* gl	Ignacio Casal Quinteiro
* hu	Gabor Kelemen
* it	Luca Ferretti
* ja	Takeshi AIHANA
* lt	Žygimantas Beručka
* nb	Øivind Hoel, Kjartan Maraas
* nl	Tino Meinen, Reinout en Tino
* no	Kjartan Maraas
* pt_BR	Raphael Higino
* ru	Nickolay V. Shmyrev
* sv	Daniel Nylander
* th	Isriya Paireepairit
* vi	Nguyễn Thái Ngọc Duy, Clytie Siddall
* zh_HK	Abel Cheung
* zh_TW	Abel Cheung, Lin-Chieh Shangkuan


Overview of Changes in Rhythmbox 0.9.3.1
========================================

* allow watches library to be in non-local places [James Livingston]
* give better error messages for missing gstreamer [James Livingston]
* emit normal warnings instead of critical ones [Jonathan Matthew: 329398]
* fix crasher if gstreamer gives us NULL strings [Jan Schmidt]
* use network dyte order for DAAP content codes [Jonathan Matthew]
* fix the first-run druid and generic player support [James Livingston: 329723]

Updated Translations
--------------------
* ca	Jordi Mallach

Overview of Changes in Rhythmbox 0.9.3
======================================

* disable column auto-sizing, improves speed [Jonathan Matthew: 312122]
* resort in a faster way [James Livingston: 315389]
* don't try to burn long playlists [William Jon McCann: 321753]
* other cd-burning fixes and HIG improvements [William Jon McCann: 321754]
* fix "Post" and "Episode" wording [James Livingston: 321653]
* display tag-writing errors to the user [James Livingston]
* make the podcast dialog look like the song one [William Jon McCann]
* use glib class private data everywhere [William Jon McCann: 313688]
* add "Move to trash" command [Bastien Nocera: 315389]
* support DBus 0.6 [William Jon McCann]
* add support for "Watched Libraries] [James Livigston: 160159]
* add support for remote gnome-vfs [James Livingston: 140355]
* select source when hovering with drag [Thomas de Grenier de Latour: 323044]
* fix parsing of some RSS feeds [Ryan P Skadberg: 323153]
* use toolbar [William Jon McCann, James Livingston: 316238]
* always hide rather than remove db entries until old [James Livingston]
* ellipsise source names, instead of adding scroll bar [James Livingston]
* allow year to be changed on multiple songs [Alex Lancaster]
* refactor playlist classes [Jonathan Matthew]
* add gstreamer 0.10 support [Jan Schmidt, James Livingston]
* fix drag-and-drop of URLs [Jonathan Matthew:323610]
* save metadata when forward/next are pressed [James Livingston: 320952]
* fix complaints about deprecated libnautilusburn API in 2.13 [James Livingston]
* make entry-views just a display, and fix play orders [Jonathan Matthew:323612]
* remove distro-packaging stuff [James Livingston]
* fix 5 sec pause when finding non-audio files with gst 0.10 [James Livingston]
* fix playlist saving and shutdown [William Jon McCann: 322940]
* submit songs longer than 30 mins to AudioScrobbler [Ståle Lyngaas: 323639]
* make iradio dialog look like song one [William Jon McCann: 323306]
* make genre tag-writing not use artist [Alex Lancaster: 323642]
* more entry-view cleanup and refactoring [Jonathan Matthew: 323640]
* fix problem with dropping artist/album into an entry view [James Livingston]
* add play queue [Jonathan Matthew: 107787]
* about dialog fixes and update AUTHORS and MAINTAINERS [William Jon McCann]
* remove use of GMemChunks [James Livingston]
* remove unused podcast feed column [William Jon McCann: 322961]
* add support for the search box to playlists. [James Livingston]
* add support for more date formats in podcast feeds [William Jon McCann]
* use "friendly time" for properties display [William Jon McCann]
* add fulscreen mode [William Jon McCann: 324075]
* allow iradio stations to be stream URLs [Jonathan Matthew]
* fix parsing of itunes:image element in podcasts [William Jon McCann]
* allow podcasts with no pubication date [Jonathan Matthew]
* add disc number to multiple-track properties window [Jonathan Matthew, 324777]
* read playcount and year from ipod db [Gunnar Steinn Magnusson]
* add 'last episode' field to the podcast feed dialog [Jonathan Matthew]
* assorted DAAP fixes [James Livingston, Jonathan Matthew, William Jon McCann]
* add libnotify support [Jonathan Matthew]
* use G_DEFINE_TYPE [James Livingston, Lubomir Marinovm, William Jon McCann]
* many play-order fixes [Jonathan Matthew]
* add default playlists [William Jon McCann: 323004]
* add support for Year criteria in auto playlists [Alex Lancaster: 321341]
* give names to playlists created via drag-n-drop [William Jon McCann: 326116]
* allow dbus to chaneg volume [Jonathan Matthew]
* stop playback after a podcast finished [James Livingston: 322077]
* fill in multi-track property window fields [James Livingston: 326054]
* don't lose hidden entries from playlists [James Livingston: 319278]
* add support for generic mass-storage audio players [James Livingston: 325602]
* don't get stuck on recursive symlinks [James Livingston: 125452]
* don't crash on hybrid audio+data cds [Jonathan Matthew]
* make startup faster [James Livingston, Jonathan Matthew: 323348 and others]
* display number of tracks in browsers [William Jon McCann: 327372]
* add support for Year metadata from DAAP shares [Alex Lancaster: 327700]
* support chunked-encoding for DAAP [Jonathan Matthew: 326738, 318852]
* change default rating back to 0 [James Livingston]
* sort URIs when artist/album is dragged [Jonathan Matthew: 327494]
* remove items from browsers when tracks are hidden [James Livingston: 327061]
* don't spin when all tracks are unplayable [Jnonathan Matthew: 329329]
* minor UI and HIG fixes [Dennis Cranston, Jaap A. Haitsma, James Livingston,
  Jonathan Matthew, William Jon McCann, Bastien Nocera]
* assorted other bug fixes and minor improvements

Updated Translations
--------------------

* de	Hendrik Brandt
* en_CA	Adam Weinberger
* es	Francisco Javier F. Serrador
* fi	Ilkka Tuohela
* fr	Christophe Bliard
* gl	Ignacio Casal Quinteiro
* hu	Gabor Kelemen
* ja	Takeshi AIHANA
* lt	Žygimantas Beručka
* nb	Kjartan Maraas
* nl	Vincent van Adrighem, Tino Meinen
* no	Kjartan Maraas
* pt_BR	Evandro Fernandes Giovanini, Raphael Higino
* vi	pclouds, Clytie Siddall
* zh_CH	Funda Wang
* zh_TW	Abel Cheung



Overview of Changes in Rhythmbox 0.9.2
======================================

* Add podcast support [Renato Araujo:309372]
* Podcast fixes and improvements [Renato Araujo, Dennis Cransto,
  James Livingston, Jonathan Matthew, William Jon McCann]
* Add support for audioscrobbler/last.fm submission [Ruben Vermeersch:106669]
* Add audio CD support [James Livingston:110928]
* Use libgpod, add support for ipod playlists [Christophe Fergeau]
* Make more strings translatable [Funda Wang]
* Stop when reaching end of playlist in linear mode [Caio Marcelo]
* Fix lots of window-state weirdness [James Livingston:122806]
* Remember window position [Caio Marcelo:315289]
* Fix memory leaks [Christopher Aillon]
* Make hidden/shown window policy better [Caio Marcelo:308053]
* DBus interface improvements [Paul Kuliniewicz]
* Use natural sorting order [James Livingston:158599]
* Fix "show window" in tray icon menu to toggle correctly [Caio Marcelo:318053]
* Don't share hidden tracks with DAAP [James Livingston]
* Make connecting to DAAP shares asynchronous [Jonathan Matthew:316225]
* Make DAAP work on 64 bit systems [Jonathan Matthew:319304]
* Make tag-writing safer [Artem Baguinski, James Livingston]
* Fix memory leaks [Christopher Aillon]
* Make default stations actually show up [James Livingston]
* Make dragging playlists copy not move files [James Livingston:319817]
* Fix re-ordering problems [Jonathan Matthew:319718]
* Save the database regularly [James Livingston:155306]
* Show disc number in info window [Jonathan Matthew:311199]
* UI and HIG fixes [Dennis Cranston:313158, 320184, 320579]
* Allow search box to match multiple properties [139196]
* Report iradio errors better [James Livingston]
* Make date formats correct in all locales [James Livingston]
* Fix drag-and-drop of URLs [Jonathan Matthew]
* Mork better with autofs mounts [Shun-ichi Tahara:320571]
* Don't wedge gnome-vfs-daemon [Shun-ichi Tahara:320570]
* Use chunked loading/sending of daap files [Jonathan Matthew]
* Allow Anjuta to import the source tree [Artem Baguinski]
* Add support for year/date metadata [Christophe Fergeau:166093]
* Display errors in the radio properties [Jonathan Matthew:320749]
* Add file-overwrite dialogs for GTK 2.8 [Jaap A. Haitsma]
* Add "Edit Playlist" item to main menu [James Livingston:311470]
* Make new radio station use the properties dialog [Jonathan Matthew]
* Display the count in the "All" line of browsers [James Livingston]
* Fix query-model refcount and polling problems [Jonathan Matthew:321410]
* Fix emission of entry-changed signals on startip [Jonathan Matthew]
* Support gzip encoded DAAP [Jonathan Matthew:321157]
* Allow pause by middle-clicking on the tray icon [James Livingston]
* Start some RhythmDB API docs [James Livingston]
* Don't display error if Avahi daemon isn't running [James Livingston]
* Emit single "icon missing" warning [Jonathan Matthew:321698]
* Store the bitrate for radio streams [Jonathan Matthew:321702]
* Bring back per-source search box text [James Livingston:321593]
* GObject-ify rb-daap-connection.c [James Livingston:321930 and 322007]
* Make disabling and re-enabling daap work [James Livingston:321748]
* Give playlists and entry-type [Jonathan Matthew]
* Use g_list_prepend to make things not O(n^2) [James Livingston:321696]
* Don't hang with broken DAAP servers [Jonathan Matthew:321919]
* Update quick-reference to have right keys [Baptiste Mille-Mathias]
* Fix libsoup tests for DAAP [Tom Parker]
* Don't have date-added column for cds and ipods [James Livingston:322269]
* Support Avahi 0.6 [Daniel S. Haischt]
* Disable saving, renaming, and deletion of DAAP playlists [Jonathan Matthew]
* Assorted other bug fixes
* Disable the close button's minimise-to-tray action

Updated Translations:
* bg:    Rostislav Raykov
* cs:    Miloslav Trmac
* de:    Hendrik Brandt
* en_CA: Adam Weinberger
* es:    Francisco Javier F. Serrador
* fi:    Ilkka Tuohela
* fr:    Baptiste Mille-Mathias
* gl:    Ignacio Casal Quinteiro
* hu:    Gabor Kelemen
* ja:    Takeshi Aihama
* lt:    Žygimantas Beručka
* mk:    Arangel Angov
* nb:    Kjartan Maraas
* nl:    Vincent van Adrighem
* no:    Kjartan Maraas
* sk:    Marcel Telka
* vi:    pclouds
* zh_CN: Funda Wang



Overview of Changes in Rhythmbox 0.9.1
======================================

* Add DAAP (iTunes' music sharing) support [Charles Schmidt]
* Notification bubble from tray icon [Colin Walters]
* Minimise to tray rather than exiting when close is used [Colin Walters]
* Allow sources to form a tree, for child playlists [Charles Schmidt]
* Add removable media framework and port ipod code [James Livingston]
* Support HAL >= 0.5 as well as > 0.2 [Ronald Bultje]
* Much improved automatic playlists, including more criteria options and
  sorting [James Livingston:132566]
* Use a proper GTK status bar [William Jon McCann]
* Better drag-n-drop support: drag from browsers to source list, from browsers
  or track list to other apps and re-order playlists [Jonathan Matthew: 147337]
* Update DBus support to version 0.35, general DBUS improvements and drop
  command-line arguments for DBus [Colin Walters]
* Add "limit by time" option to playlists [James Livingston: 159227]
* Display hours if a song is longer than 60 minutes [Jonathan Matthew: 313311]
* Use new volume widget, same as in Totem [Ronald S. Bultje: 300867]
* Focus entry view when enter is pressed in search box [Paolo Borelli: 128110]
* Show source list when playlist os created [James Livingston: 161935]
* Disable rather then hide seek bar [James Livingston: 139102]
* Improved error handling in RBPlayer [Colin Walters]
* Remove dashboard support [Colin Walters]
* Many HIG and UI improvements [Dennis Cranston and Paolo Borelli]
* Use last.fm instead of allofmusic.com for links [Colin Walters]
* Remove autorating of tracks [Colin Walters]
* Fix header synchronisation [Raphael Slinckx]
* Fix some window state issues [James Livingston: 313893 and 137068]
* Add "Date Added" column [Ernst Persson]
* Better playlist loading [James Livingston, Bastien Nocera, Colin Walters]
* Make playing source bold, rather than using an icon [Colin Walters]
* Allow library-derived sources to override behaviour [James Livingston]
* Correctly update status bar and don't use useless info [James Livingston]
* Add support for building API docs with gnome-doc-utils [Raphael Slinckx]
* Update the default radio stations [Ali Akcaagac:129285]
* Remove a heap of old code, and use stock art instead of custom art
* Many rhythmdb improvements
* Fix more memory leaks
* Many bug fixes and minor improvements

Updated Translations:
* ca (Josep Puigdemont i Casamajó)
* cs (Miloslav Trmac)
* da (Morten Brix Pedersen, Ole Laursen)
* de (Hendrik Brandt)
* el (Kostas Papadimas)
* en_CA (Adam Weinberger)
* es (Francisco Javier F. Serrador)
* fi (Ilkka Tuohela)
* fr (Stephane Raimbault)
* gl (Ignacio Casal Quinteiro)
* hu (Gabor Kelemen)
* lt (Žygimantas Beručka)
* ne (Pawan Chitrakar)
* nl (Tino Meinen)
* pt_BR (Raphael Higino, Afonso Celso Medina)
* vi (Clytie Siddall)
* zh_CN (Funda Wang)

Overview of Changes in Rhythmbox 0.9.0
======================================

* Too many to mention, focus was on stability, and memory usage
* Support for buring audio CDs (pass --with-cdburner to configure)
* Experimental tag editing support (pass --enable-tag-writing to configure)
* Remove deprecated Xine backend
* Play any audio file that GStreamer can decode
* Don't remove tracks that are unavailable, just hide them
* Internet Radio improvements
* Heaps of UI Improvements
* Updated Bonobo interface
* Heaps of bug fixes, some memory usage reduction and code cleanup
* Promises to keep the NEWS file up to date


Overview of Changes in Rhythmbox 0.7.2
======================================

* Many crasher bugfixes [Ben Liblit, Colin Walters]
* Initial work on saving database and playlists while running [David Dollar] 
* Fix mime type detection [Colin Walters]
* Fix import of non-UTF8 filenames [Colin Walters]
* Actually respect Cancel in import dialog [Colin Walters]
* Several fixes for GTK+ 2.4 file dialogs [Colin Walters]
* Display buffering progress for Xine backend [David Dollar]
* iPod fixes [Christophe Fergeau]
* Remove deprecated casting usage [Christophe Fergeau]
* New --shuffle argument [James Willcox]
* Use automake 1.8 if available [Christian Schaller, Colin Walters]
* Fix for GTK+ 2.4 detection [Christophe Fergeau]
* Nicer iPod icon [Jakub Steiner]
* Actually distribute README.iPod [Colin Walters]
* Xine player fixes [David Dollar] 
* Add MonkeysAudio to known music MIME types [Jérémy SIMON]
* Canonicalize filenames into URLS when loading playlists [Colin Walters]
* Fix race condition in database load [Colin Walters]
* Remove some unused functions [Bastien Nocera]

Updated translations:

el (Kostas Papadimas)
hu (Andras Timar)
hr (Robert Sedak)
tr (Enver Altin)
ga (Alastair McKinstry)
ja (Takeshi AIHANA)
nl (Vincent van Adrighem)
da (Morten Brix Pedersen)
lt (Žygimantas Beručka)

Overview of Changes in Rhythmbox 0.7.1
======================================

* Initial iPod support (see README.iPod) [Christophe Fergeau]
* Ignore files with unknown MIME types [Colin Walters]
* Support for Rating criteria in automatic playlists [Colin Walters]
* Disc number tags [Christophe Fergeau]
* Per-song automatic rating is now configurable [Michael Terry]
* Improved multiselection dialog [Colin Walters]
* Fix GStreamer configure checks [Christophe Fergeau, Colin Walters]
* Use weighted random algorithm when using Shuffle+Repeat [Jeffrey Yasskin]
* Remove Bonobo statusbar for now [Colin Walters]
* Disable "Browse by..." context menu if browser isn't enabled [Colin Walters]
* Some state saving: search text, selected source [Colin Walters]
* Use GtkFileChooser in startup druid too [Christophe Fergeau, Colin Walters]
* Add audioconvert in pipeline [Colin Walters]
* Don't do prelighting on ratings (avoids theme color issues) [Colin Walters]
* Actually save library if it didn't exist before [Christophe Fergeau]
* Use GAtomic if available [Christophe Fergeau]
* Improved Xing header parsing [Christophe Fergeau]
* Improved duration reading using GStreamer [Christophe Fergeau]
* Fix flac configury [foser@gentoo.org]
* Don't set sink to NULL to avoid pausing issue [Colin Walters]
* Fix occasional deadlock on startup [Colin Walters]
* Other various bugfixes

New translations:

bg (Peter Slavov)
uk (Yuriy Syrota)

Updated translations:

hu (Andras Timar)
hr (Robert Sedak)
ja (Takeshi AIHANA)
lt (Žygimantas Beručka)
cs (Miloslav Trmac)
no (Kjartan Maraas)
es (Francisco Javier F. Serrador)
zh_TW (Abel Cheung)
be (Ales Nyakhaychyk)
sr, sr@Latn (Danilo Šegan)
fi (Ilkka Tuohela)
ca (Jordi Mallach)
kr (Changwoo Ryu)
nl (Kees van den Broek)
et (Priit Laes)
sv (Christian Rose)
el (Kostas Papadimas)
it (Luca Ferretti)
pl (Artur Flinta)

Overview of Changes in Rhythmbox 0.7.0: "My, your music looks tasty..."
======================================

* Support for GStreamer-based metadata [Colin Walters]
* Initial tag editing work [Colin Walters]
* Adaptive ratings [Michael Terry]
* ReplayGain support [Jeremy SIMON]
* Create automatic playlists via drag and drop from browsers [Jonatan Magnusson]
* Editing of automatic playlists [Colin Walters]
* Song info dialog cleanups [Colin Walters]
* Implement "Browse this genre/artist/album" context menu [Colin Walters]
* Allow reordering playlists via DND [Colin Walters]
* Automatically scroll view while dragging [Yann Rouillard]
* Fix sorting by genre [Colin Walters]
* Pause support for multimedia keys [Crispin Flowerday]
* Lots of playback order fixes and speedups [Jeffrey Yasskin]
* .m3u parsing fixes [Colin Walters]
* Some MacOS X work [Jeffrey Yasskin]
* Fix time display with partial days [James Kahn]
* Use new GtkFileChooser if available [Sriram Ramkrishna]
* Internet radio buffering progress now uses bottom progress bar [Colin Walters]
* Correctly remember state for Import Folder dialog [Colin Walters]
* Lots more error checking for playback [Colin Walters]
* Update INTERNALS documentation [Colin Walters]
* New "equals" criteria for automatic playlists [Colin Walters]
* New default iradio station list [Colin Walters, Jeffrey Yasskin, Joseph Wilhelm]
* Default CFLAGS warning bits stolen from gnome-keyring [Colin Walters]
* Configuration/build fixes [Juilo M. Merino Vidal]
* More C89 fixes [Scott Wheeler]
* General code cleanup [Colin Walters, Christophe Fergeau, Jeffrey Yasskin]
* Misc bugfixes [Colin Walters, Christophe Fergeau, Jefferey Yasskin]

New translations in Rhythmbox 0.7.0:

lt (Žygimantas Beručka)
mn (Sanlig Badral)
ga (Paul Duffy)
ar (Arafat Medini)

Updated translations in Rhythmbox 0.7.0:

fi (Ilkka Tuohela)
cs (Miloslav Trmac)
de (Christian Neumair)
az (Mətin Əmirov)
no (Kjartan Maraas)
ko (Young-Ho Cha, Changwoo Ryu)
es (Francisco Javier F. Serrador)
pl (GNOME PL Team)
sr, sr@Latn (Danilo Šegan)
nl (Kees van den Broek)
el (Kostas Papadimas)
pt (Duarte Loreto)
ja (Takeshi AIHANA)
cy (Telsa Gwynne)

Overview of Changes in Rhythmbox 0.6.5
======================================

* Work with session management [Matt Hughes]
* Improved dashboard support [Lee Willis]
* Fix length calculation for some VBR MP3s [Christophe Fergeau]
* Jump to songs added via commandline [Colin Walters]
* Avoid segfaults with some commandline bits [Colin Walters]
* Fix volume popup near bottom of screen [Johnathan Taylor]
* Update Bonobo interface for play order work [Colin Walters]
* Avoid some unlikely but possible use of freed strings [Colin Walters]
* Fix compilation with G_DISABLE_ASSERT [Colin Walters]
* Correctly encode URIs when upgrading from 0.5.x [Colin Walters]
* Fix changing sorting with active genre/artist filtering [Colin Walters]

Overview of Changes in Rhythmbox 0.6.4
======================================

* Add audio/x-flac as a known MIME type for FLAC [Colin Walters]
* Dashboard is disabled by default due to compilation problems on some machines [Colin Walters]
* Remove applicable filtering when genre/artist/album filter is hidden in the prefs [Colin Walters]
* Don't crash when using --print-playing with internet radio [Colin Walters]
* Update GStreamer player to handle changes in GStreamer 0.7 [Colin Walters]
* Don't send ourselves SIGINT on a g_warning if not in debug mode [Colin Walters]
* Make file chooser dialog resizable [Colin Walters]
* Don't try to use multimedia keys if we only have XSun [Colin Walters]

Overview of Changes in Rhythmbox 0.6.3
======================================

* Dashboard integration [Lee Willis]
* Fix crash with Xine backend [Bastien Nocera]
* Don't require pkgconfig file for id3tag [Colin Walters]
* Don't crash on trying to play directories [Colin Walters]
* GCC-2.95 compile fixes [Kaj-Michael Lang]

Overview of Changes in Rhythmbox 0.6.2
======================================

* Use better algorithms for Shuffle and Repeat [Jeffrey Yasskin]
* Playlist fixes; make .m3u work [Colin Walters, Bastien Nocera]
* Make Xine backend use less memory [Bastien Nocera]
* Fix length parsing from variable-bitrate MP3s [Bastien Nocera]
* Don't crash adding a station with a duplicate location [Colin Walters]
* Fix race condition in library searching [Colin Walters]
* Actually implement Quality column [Colin Walters]
* Fix usage of G_PARAM_CONSTRUCT_ONLY [Jan Arne Petersen]
* Change default Korean legacy charset to UHC [Cha Young-Ho]
* Check libid3tag version [Bastien Nocera]
* Work around scrollkeeper XML parsing bug [Jordi Mallach]
* Distcheck fixes [Colin Walters]

Overview of Changes in Rhythmbox 0.6.1
======================================

* Drag and drop onto source list can create playlists [Yann Rouillard]
* Avoid crashes when metadata changes on disk [Colin Walters]
* Xine backend fixes [Bastien Nocera]
* Load playlists directly for internet radio [Bastien Nocera, Colin Walters]
* Major rework of mp3 metadata reading [Bastien Nocera]
* Handle mp3-in-wav files [Bastien Nocera]
* Support for MP4 metadata [Bastien Nocera]
* Don't crash on multiply added songs [Colin Walters]
* Try legacy charsets for ID3V1 tags [Colin Walters]
* Make editing playlist names nicer [Bastien Nocera]
* Fix tray icon window restoration [Bastien Nocera]
* Play from stopped state plays selected song [Jeffrey Yasskin]
* Don't unnecessarily reset filters/search on jump to playing song [Colin Walters]
* Don't crash when an iradio search is active and switching sources [Colin Walters]
* Don't crash on jump to playing song [Colin Walters]
* Translator comments [Jordi Mallach]
* Fix bonobo reference counting [Gustavo J. A. M. Carneiro, Colin Walters]
* Scroll wheel over tray icon controls volume [Jon Kinred]
* Ensure Properties is disabled if there's no selected song [Colin Walters]
* GCC 2.95 build fixes [Scott Wheeler, Danilo Segan]

Overview of Changes in Rhythmbox 0.6.0
======================================

* Speed and incremental display of queries [Colin Walters]
* Major source code refactoring and cleanup [Colin Walters]
* Improved menu layout [Luca Ferretti, Colin Walters]
* Shiny new icons [Jakub Steiner]
* Use Name=Rhythmbox,GenericName=Music Player in .desktop [Colin Walters]
* Numerous HIG spacing and usability fixes [Christian Neumair]
* Playlists are now user-orderable [Colin Walters]
* Automatic playlists [Colin Walters]
* Allow selecting multiple genres/artists/albums [Colin Walters]
* Direct editing of playlist names [Colin Walters]
* Major Bonobo interface improvements [Christophe Fergeau, Rached Ben Mustapha]
* Keep a playback history [Jeffrey Yasskin]
* Major DND work [Yann Rouillard]
* Use GnomeHRef for links [Mark Humphreys]
* Tooltips, tooltips, tooltips everywhere! [Colin Walters]
* Display time remaining in tray icon tooltip [Colin Walters]
* Pass "make distcheck" [Colin Walters]
* Squash various circular dependencies in the build system [Colin Walters]
* Various other misc. bugfixes [Colin Walters, Yann Rouillard, Christophe Fergeau,
                                Sean Harshbarger, Jeffrey Yasskin]

Overview of Changes in Rhythmbox 0.5.4
======================================

* Updated documentation [Mark Humphreys]
* Allow quitting even when Rhythmbox is busy [Colin Walters]
* Handle long artist/album names in song display box [desrt]
* Use Ogg Vorbis for internet radio if compiled without MP3 support [Colin Walters]
* More default internet radio stations [Nadav Rotem]
* Many more Bonobo methods [Rached Ben Mustapha]
* Display time remaining in tray icon tooltip [Colin Walters]
* Hardcode use of mad/vorbisfile/flacdec, until spider works [Colin Walters]
* Don't distribute built CORBA files [Colin Walters]
* Better explanations in druid [Colin Walters, Luca Ferretti]

Overview of Changes in Rhythmbox 0.5.3
======================================

* Don't save the library periodically [Colin Walters]
* Don't scroll the song view after double-clicking [James Willcox]
* New small display option [desrt]
* Restore tray icon to previous behavior [desrt]
* Correctly sync statusbar visibility on startup [desrt]
* UI improvments to playlist dialog and bugfixes [Yann Rouillard]
* Context menu for the Library source [Paolo Borelli]
* Make double-clicking on a source play it [Paolo Borelli]
* Don't require xine-lib CVS [Bastien Nocera]

Overview of Changes in Rhythmbox 0.5.2
======================================

* Help documentation is back [Mark Humphreys]
* Tooltips on buttons [Colin Walters]
* Don't lose completely on invalid UTF-8 in mp3 files [Colin Walters]
* Better status feedback when loading the library [Colin Walters]
* Volume slider behaves more nicely [Yann Rouillard]
* More fixes to multimedia keys [Jan Arne Petersen]
* Fix spelling of "Digitially Imported" [Paul M Edwards]
* Ability to rename playlists [Sriram Ramkrishna,Colin Walters]
* Tray icon usability fixes [Colin Walters, Christian Neumair]
* Don't crash when deleting a playing song from another source [Colin Walters]
* Release audio device on pause [Benjamin Otte (GStreamer) Bastien Nocera (xine)]
* Only error out if GNOME sounds are enabled, and esdsink is used [Colin Walters]
* Various cleanups [Colin Walters]

Overview of Changes in Rhythmbox 0.5.1
======================================

* Fix multimedia keybinding so we don't grab other keys [Jan Arne Petersen]

Overview of Changes in Rhythmbox 0.5.0
======================================

* Merge with netRhythmbox [Colin Walters]
* Revamped UI [Jorn Baayen, Colin Walters]
* Monkey Media is merged into the Rhythmbox tree [Colin Walters]
* Internet Radio support [Colin Walters]
* Xine backend support [Jorn Baayen, Bastien Nocera]
* Make MP3/Vorbis/FLAC support individually optional [Colin Walters, Bastien Nocera]
* Initial Sound Juicer integration [Bob Smith]
* Refactored node system (improved stability) [Colin Walters, Jorn Baayen]
* Refactored source system [Colin Walters]
* Ability to save playlists in .pls format [Colin Walters]
* Startup druid [Colin Walters]
* Dialog HIGification [Christian Neumair]
* Context menu for Nautilus [Mark Humphreys, Yann Rouillard]
* Song load failure dialog [Colin Walters]
* Slightly improved RTL locale support [Colin Walters]
* Save the library/playlists periodically [Colin Walters]
* Work around broken id3v2 tags [Christophe Fergeau, Colin Walters]
* Read FLAC metadata [Joshua Haberman]
* INTERNALS documentation [Colin Walters]
* Work around GtkTreeModelSort bug [Yann Rouillard]
* Work around GtkTreeView bug [Kristian Rietveld, Colin Walters]
* Initial multimedia keys support [Jan Arne Petersen]
* New --print-playing and --print-playing-path cmdline args [Colin Walters]
* Some playlist support [Colin Walters]
* Display watch cursor during long operations [Colin Walters]
* Updated .spec file [William Jon McCann]
* Many many bugs fixed [Colin Walters, Jorn Baayen, Yann Rouillard, Kristian Rietveld,
                        Bastien Nocera, James Kahn, Benjamin Otte, Sean Harshbarger,
			Christian Neumair, Carlos Perelló Marín, Christophe Fergeau,
			Mason Kidd, Jan Arne Petersen, Douglas McMorris, and many
			other people helped out, thank you all!]

Overview of Changes in Rhythmbox 0.4.1
======================================

* New cool graphics [Jakub 'jimmac' Steiner]
* Genre browsing [Marco Pesenti Gritti]
* Context menu on songs view [Marco Pesenti Gritti]
* Prelight stars in the rating columns [Xan Lopez]
* Bugfixes  [Jorn Baayen, Olivier Martin, Marco Pesenti Gritti, Colin Walters, Christian Schaller]

Overview of Changes in Rhythmbox 0.4
====================================

* Speeeed! [Jorn Baayen, Kristian Rietveld]
* Lots of bugfixes [Jorn Baayen, Olivier Martin, Jan Arne Petersen, Xan Lopez, Marco Pesenti Gritti]
* UI improvements [Jorn Baayen, Olivier Martin]
* Improved song information dialog [Olivier Martin, Jorn Baayen]
* Editable toolbar [Marco Pesenti Gritti]
* Preferences window and visibility options [Jorn Baayen]
* Library rewrite [Jorn Baayen, Olivier Martin, Kristian Rietveld]
* Full DND Support (directories, files, songs in groups) [Olivier Martin, Jorn Baayen]
* Support for searching is back [Olivier Martin, Jorn Baayen]
* LIRC support [James Willcox]
* Tray icon [Jorn Baayen]
* Manual [Mark Finlay, Mark Humphreys, Luca Ferretti]
* Translation updates
* Rating songs support [Olivier Martin]
* Columns visibility editing [Olivier Martin]
* Play statistics [Mark Humphreys]

Many translation, including:
* Swedish [Christian Rose]
* Italian [Luca Ferretti]
* Korean [Changwoo Ryu]
* Spanish [Xan Lopez]
* Japanese [Norihiro UMEDA]
* German [Christian Neumair, Christian Meyer]
* Czech [Michal Bukovjan]
* Norwegian (bokmål) [Kjartan Maraas]
* Vietnamese [Pablo Saratxaga]
* French [Christophe Merlet]
* Russian [Nail Abdrahmanov]
* Turkish [Fatih Demir]

Overview of Changes in Rhythmbox 0.3
====================================

* Total rewrite [Jorn Baayen]
* Danish translation [Kenneth Christiansen]
* Swedish translation [Christian Rose]
* Norwegian translation [Kjartan Maraas]
* Italian translation [Luca Ferretti]
* German translation [Christian Meyer]
* French translation [Christophe Marlet]
* Internationalization fixes [Kenneth Christiansen]
* Volume slider controlling the system volume [Jeroen Zwartepoorte]
* Ability to run uninstalled [Thomas Vander Stichele]
* Song information dialog [Olivier Martin, Jorn Baayen]
* Bugfixes [Jorn Baayen, Olivier Martin, Dennis Smit]

Other contributors: Marco Pesenti Gritti

Note that searching with the new library has not been implemented yet,
and that the library is still rather buggy. Please don't file bugs on these.
This is just an intermediate release to work with the new gstreamer.

Also note that monitoring of the library directories has been disabled
for this release due to instability problems.

Overview of Changes in Rhythmbox 0.2.1
======================================

* Build fixes [Bastien Nocera]

Overview of Changes in Rhythmbox 0.2
====================================

* Bugfixes [Seth Nickell, Jorn Baayen]
* LCD widget [Jorn Baayen]
* UI improvements [Seth Nickell]
* Playlist columns configurable [Jorn Baayen]
* Speed improvements [Seth Nickell, Jorn Baayen]
* Searching [Seth Nickell, Jorn Baayen]
* Smart Sorting of playlists [Jorn Baayen]
* Shuffle/repeat [Jorn Baayen]
* Splashscreen [Jakub Steiner, Olivier Martin]
* Icons registered with the Gtk stock system [Jorn Baayen]
* Statusbar [Jorn Baayen]
* Proper support for "Various Artist" albums [Jorn Baayen]
* Threaded song addition [Seth Nickell]
* CORBA interface [Jorn Baayen]

..and much more!

Overview of Changes in Rhythmbox 0.1
====================================

* First release! [Jorn Baayen, Marco Pesenti Gritti, Bastien Nocera]