~snaggen/rhythmbox/bpm

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
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]