-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
2519 lines (2251 loc) · 97.7 KB
/
NEWS
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
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