-
Notifications
You must be signed in to change notification settings - Fork 1
/
NEWS
2216 lines (1977 loc) · 84.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.12.8 "Extradition"
======================================================
* Last.fm cover art search (Jonathan Matthew)
* Automatically unmount MTP devices mounted by gvfs (François Jaouen)
* More improvements to mixed-direction text display (Uri Sivan)
Bugs fixed:
482955 - rhythmbox crashed with SIGSEGV in rb_source_try_playlist()
520121 - MTP plugin fights with gvfs' gphoto2 backend
527898 - Assertion in rhythmdb_property_model_delete_prop()
528513 - have to run rhythmbox twice to see the main window
551402 - Cannot update list of episodes in podcasts
600494 - crash in Rhythmbox Music Player: (something to do with CD playback)
603261 - rhythmbox crashes during drag n drop of mp3 to iPod
607073 - rhythmbox crashed with SIGSEGV in rb_entry_view_scroll_to_entry()
609651 - Album Artwork Does Not Display Immediately For Embedded Artwork
610753 - Fix mixed-direction text in header widget
611541 - OGG files with skeleton stream are not imported
611714 - missing stock icons
611772 - Menubar: "show statusbar" menu entry doesn't get sync properly
612570 - rhythmbox crashed with SIGSEGV in g_closure_invoke()
613163 - Add a11y name to the status icon
613540 - [cppcheck] found a memory leak in /rhythmbox/plugins/mtpdevice/rb-mtp-source.c
613542 - [cppcheck] found a resource leak in rhythmbox/plugins/cd-recorder/rb-recorder-gst.
613606 - Don't load AFC devices using the MTP plugin
613658 - null string checking in RBSource_do_impl_search python binding
613715 - Rhythmbox crashes when iPhone is plugged in and MTP plugin is enabled
613784 - Reloads deleted podcasts
New and updated translations:
- af, courtesy of F Wolff
- bg, courtesy of Krasimir Chonov
- br, courtesy of Jérémy AR FLOC'H
- cs, courtesy of Lucas Lommer
- cs, courtesy of Marek Černocký
- de, courtesy of Christian Kirbach
- el, courtesy of Simos Xenitellis
- es, courtesy of Jorge González
- et, courtesy of Mattias Põldaru
- eu, courtesy of Iñaki Larrañaga Murgoitio
- fi, courtesy of Jiri Grönroos
- fr, courtesy of Pierre-Luc Beaudoin
- gl, courtesy of Fran Diéguez
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- ja, courtesy of Hajime Taira
- lt, courtesy of Žygimantas Beručka
- nb, courtesy of Kjartan Maraas
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Rodrigo Flores
- pt, courtesy of Filipe Gomes
- ro, courtesy of Adi Roiban
- ru, courtesy of Yuri Kozlov
- sl, courtesy of Andrej Žnidaršič
- sv, courtesy of Daniel Nylander
- uk, courtesy of Sergiy Gavrylov
Overview of changes in Rhythmbox 0.12.7 "It's a Hectic World"
==============================================================
* New ReplayGain plugin, replacing the old broken ReplayGain code (Jonathan Matthew)
* Nautilus-sendto plugin (Filipp Ivanov)
* Support for Magnatune streaming and download accounts (Adam Zimmerman)
* Support for pidgin in the IM status plugin (Mohamad Elrashidin Sajeli)
* Context pane plugin now uses the GTK+ font settings (JM)
* Support for artist and album sort names (Jamie Nicol)
* Now depends on GTK+ 2.16, GLib 2.18, and pygobject 2.16
(no more libgnome, libgnomeui, gnome-vfs, or libsexy code anywhere)
* As GSEAL-ready as we can make it for now (Javier Jardón)
* Compatible with the new totem-plparser save API (Carlos Garnacho)
* Disentangled 'delete', 'remove', and 'remove from playlist' actions (JM)
* Improvements to display of mixed-direction text (Uri Sivan)
* Simplified selection of audio CD tracks to extract (JM)
* Playlist creation should work on more generic player devices now (JM)
Bugs fixed:
133444 - Use album and artist sort names ("Sort band list without 'The'")
316257 - forward / back mouse buttons should trigger next / previous songs
338221 - Rhythmbox ignores replaygain tags in DAAP streamed media
378355 - Magnatune plugin should not print CC# in debug output
384483 - Open cover in Image Viewer
424878 - The play button's tool tip "Stop playback" is misleading
485730 - Better labels for remove/move to trash
518540 - RTL Song title displayed on wrong side of other track info.
533727 - Support new Magnatune accounts
537483 - should be possible to import only selected audio cd songs
542055 - Sort order is not localized
547174 - Separate the filesystem scanning from the metadata content reading
559582 - Cleanups for -DG_DISABLE_DEPRECATED
564800 - GnomeGoals: Remove deprecated GTK+ symbols (again)
584593 - sample-vala plugin does not build
584704 - External MP3 players should delete files rether than move to trash
593188 - Manpages for rhythmbox and rhythmbox-client
594132 - python binding lacks enum RBMetaDataField
595795 - Portugu?s Lyrics - Patch to grab lyrics from letras.terra.com.br
601524 - Slider jumps around at the end of songs
602015 - Default 'label1' naming of the first Multiple Song info window
602140 - thread-related segfault in context panel plugin
602615 - fails to build if ld's --no-add-needed is used
602616 - strings being URI-unescaped twice in song info window
602679 - context: encode album names received from last.fm in utf8
603258 - mpid: don't destroy HAL context twice
603263 - compilation errors because of wrong g_print format
603444 - ignore hidden files while enumerating directories
603876 - LyricWiki should be deleted from the "Song lyrics" plugin
603929 - Rhythmbox unnecessarily modifying sound files
604186 - Remove gnome-vfs use in plugins
604188 - [upnp] Use GIO to get the face icon's mime-type
604189 - [artdisplay] Simplify save_pixbuf code
604292 - Use g_atomic_int_* when possible to handle refcounts
604771 - Adding context to some strings
605023 - IM Status Plugin patch for Pidgin support
605038 - Seg Fault When Going to Play List; Visualisation; Browse
605031 - add "Send to..." button to right click on the song
605313 - Use totem_pl_parser_save()
605583 - segfault if MTP device open fails
605584 - Race condition in MTP causes devices to fail to open
605725 - [context] doesn't use gtk font settings
606470 - Wrong title for MTP properties dialog
606472 - Bad alignment for labes in media player properties dialog
607263 - Playlist creation ignores playlist_format from .is_audio_player
607265 - M3U playlist is missing #EXTINF info
607538 - incorrect description for toolbar_style gconf key
607672 - Podcasts default to rating 3*
607897 - fix build with warnings=all
607935 - Crashes with SIGSEGV when trying to enable visualization
608397 - Rhythmbox does not create working playlists for Sansa Clip+
609306 - Changing between two sources without query models causes warnings
609767 - RTL tags in status icon bubble
609908 - compare track number when checking if tracks already exist on devices
609916 - CBC Radio 1 & 2 Live Feeds don't work
610440 - The user agent string must be used when connecting to DAAP shares
610643 - Fix linkage against librhythmdb.la
610655 - [patch] enum type mismatch
610657 - [patch] Linking fails due to multiple definition of _PyGObject_API, etc.
New and updated translations:
bg, courtesy of Krasimir Chonov
cs, courtesy of Marek Černocký
de, courtesy of Mario Blättermann
el, courtesy of Thanos Lefteris
en_GB, courtesy of Bruce Cowan
es, courtesy of Jorge González
et, courtesy of Mattias Põldaru
fr, courtesy of Claude Paroz
gl, courtesy of Fran Diéguez
hu, courtesy of Gabor Kelemen
it, courtesy of Luca Ferretti
lt, courtesy of Žygimantas Beručka
lv, courtesy of Peteris Krisjanis
pl, courtesy of Tomasz Dominikowski
pt_BR, courtesy of Rodrigo Flores
ro, courtesy of Adi Roiban
sl, courtesy of Andrej Žnidaršič
sr, courtesy of Милош Поповић
sr@latin, courtesy of Miloš Popović
sv, courtesy of Daniel Nylander
uk, courtesy of Sergiy Gavrylov
uk, courtesy of Сергій Гаврилов
Overview of changes in Rhythmbox 0.12.6 "Range Life"
=====================================================
* Context pane plugin (John Iacona's Google Summer of Code project)
* Power management plugin reworked to use new D-Bus API (Richard Hughes)
* MTP plugin reworked to do everything asynchronously (Jonathan Matthew)
* Volume slider levels match what PulseAudio displays (Bastien Nocera)
* Playback pipeline filter interfaces actually work properly now (JM)
* Much improved visualization performance when crossfading is enabled (JM)
Bugs fixed:
499048 - Filter insertion and removal on non-xfade backend is not robust.
499051 - xfade backend doesn't play nice with LADSPA filters (or is it the reverse ?)
499052 - Filter removal on xfade backend is not robust.
534981 - Add multi threading to MTP Support
564772 - MTP plugin crash when I plug-in my Creative Zen 32Gb
564800 - GnomeGoals: Remove deprecated GTK+ symbols
589845 - im-status: use mission control dbus interface
590474 - Podcast entry disappears from display during download
594901 - Rhythmbox fails to display cover image from id3 tag
595966 - leaked string in rb_stock_icons_init
596573 - [PATCH] Do not use gnome-power-manager for inhibits, instead use gnome-session
597706 - rhythmbox crashed with SIGSEGV in g_object_get()
597708 - rhythmbox crashed with SIGSEGV in rb_source_get_config_widget()
597708 - DAAP plugin doesn't link to libsoup
598135 - Should init error before call libhal_device_get_property_string
598302 - Use GDK spawn functions to handle multi-screen
598613 - Rhythmbox shows cover art of previous track in Notification Bubble if current track has no cover art
598955 - Use Cubic volume when StreaVolume interface is available
600058 - Feed is not parsed when title tag is empty
600513 - Generates invalid Brasero project
600549 - Crash when transferring a track over MTP with a slash in the track title
600624 - track information is not displayed correctly sometimes when playing internet radios
600995 - Elapsed time indicator is wrong when seeking
601352 - Crash while editing automatic playlist
601460 - Rhythmbox gets laggy when copying music to iPod
601528 - Play button doesn't work after finishing a playlist
602615 - rhythmbox fails to build if python bindings are built and ld's --no-add-needed is used
New and updated translations:
af, courtesy of F Wolff
bn_IN, courtesy of Runa Bhattacharjee
br, courtesy of denis
de, courtesy of Mario Blättermann
es, courtesy of Jorge González
et, courtesy of Mattias Põldaru
fr, courtesy of Claude Paroz
gl, courtesy of Antón Méixome
gu, courtesy of Sweta Kothari
hi, courtesy of Rajesh Ranjan
it, courtesy of Luca Ferretti
ja, courtesy of Takayuki KUSANO
kn, courtesy of Shankar Prasad
lt, courtesy of Žygimantas Beručka
lv, courtesy of Raivis Dejus
nb, courtesy of Kjartan Maraas
nds, courtesy of Nils-Christoph Fiedler
or, courtesy of Manoj Kumar Giri
pa, courtesy of A S Alam
pt_BR, courtesy of Djavan Fagundes
ro, courtesy of Adi Roiban
sl, courtesy of Andrej Žnidaršič
sv, courtesy of Daniel Nylander
ta, courtesy of I. Felix
te, courtesy of Krishna Babu K
zh_CN, courtesy of fujianwzh
Overview of changes in Rhythmbox 0.12.5 "Stop Breathin'"
=========================================================
* New cover art search code using discogs.com and MusicBrainz, replacing
the Amazon cover art search that no longer works (Jonathan Matthew)
* Updated Coherence UPnP plugin (Frank Scholz)
* Clicking on the status icon summons the main window to the current
workspace (Steve Frécinaux)
Bugs fixed:
410684 - MusicBrainz cover art search
590184 - Update .desktop file for new GenericName conventions
592404 - use correct icon name for the throbber
592763 - fix some button definitions so the button-images setting works
593494 - display location column in playlists if enabled
594008 - fix reading of symlinks with non-ASCII targets
594124 - fix incorrect variable name in gio chunk loader
594419 - disable non-functional lyricwiki search
594728 - deadlock setting replaygain-adjusted volume
New and updated translations:
br, courtesy of Denis ARNAUD
de, courtesy of Christian Kirbach
et, courtesy of Mattias Põldaru
eu, courtesy of Iñaki Larrañaga Murgoitio
ja, courtesy of Takayuki KUSANO
lt, courtesy of Žygimantas Beručka
pa, courtesy of A S Alam
pl, courtesy of Piotr Drąg
pt, courtesy of Filipe Gomes
sr, courtesy of Милош Поповић
sr@latin, courtesy of Miloš Popović
zh_HK, courtesy of Chao-Hsiung Liao
zh_TW, courtesy of Chao-Hsiung Liao
Overview of changes in Rhythmbox 0.12.4 "Raft"
===============================================
* New HAL-free media player detection code (using GUdev and
the media-player-id collection of device info files); improved MTP
device detection allowing multiple devices and devices not explicitly
supported by libmtp (Jonathan Matthew)
* Audio CD improvements: allow metadata retrieval to be retried,
link to the musicbrainz submission page when data is missing
(Bastien Nocera, Matt N)
* Configurable action for mouse-wheel events on the status icon
(volume control or next/previous track) (Gustavo Mora)
* Rearranged to link properly (should help building on Windows or
with -Wl,-as-needed, probably) (Jonathan Matthew)
* Variety of crashes fixed (Jonathan Matthew)
* Occasional transfer problems with MTP devices fixed (Jonathan Matthew)
Bugs fixed:
322265 - Can't reload CD metadata
376863 - option to configure default action of mouse roll event on tray icon
437110 - librhythmbox-core.so missing some library links
535065 - If a cd is not listed in musicbrainz it can not be added
561953 - Scan Removable Devices don't works with MTP music players
563544 - rework MTP device detection for libmtp 0.3.0
580440 - lists with only one song don't repeat with both "repeat" and "shuffle" selected
585595 - crash at end of playlist with crossfading disabled
586598 - use streaming song titles for lyrics searches
587662 - improved warning message in python plugin support code
588248 - link last.fm plugin with libsoup-gnome
588257 - occasional crash on shutdown
590108 - crashes if there are no saveable metadata types
591874 - pack right sidebar with shrinking disabled
592325 - crashes initialising an iPod Touch
New and updated translations:
- ca, courtesy of Joan Duran
- da, courtesy of Mads Lundby
- de, courtesy of Christian Kirbach
- en_GB, courtesy of Bruce Cowan
- es, courtesy of Jorge González
- et, courtesy of Mattias Põldaru
- fi, courtesy of Tommi Vainikainen
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Dieguez
- gu, courtesy of Sweta Kothari
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- ja, courtesy of Takayuki KUSANO
- kn, courtesy of Shankar Prasad
- nb, courtesy of Kjartan Maraas
- pa, courtesy of A S Alam
- pt_BR, courtesy of Og Maciel
- sv, courtesy of Daniel Nylander
- te, courtesy of Krishna Babu K
- th, courtesy of Theppitak Karoonboonyanan
- zh_CN, courtesy of fujianwzh
Overview of changes in Rhythmbox 0.12.3 "Perfect Depth"
========================================================
* Only attempts to install GStreamer audio decoder plugins
* More accurate lyrics and cover art searches
* Problems with M4A files in podcasts fixed
* CD playback and ripping improvements:
* Fixed playback when crossfading is enabled
* New entry fields for album artist, genre, year, disc number
* Album artist is used when constructing filenames
* Song title, genre, and artist can be edited in the track list
* Increased extraction buffer size, meaning faster ripping
* Playback position slider updates more frequently
* Better behaviour with PulseAudio's flat volume
* Support for automatic proxy configuration (via libsoup-gnome)
* Clean up empty directories on media player devices
* Improved playback from MTP devices
* Some improvements manually added and IPv6 addressed DAAP servers
Bugs fixed:
331272 - track change notification should have Next button
345712 - automatic proxy configuration
349066 - cover art search inaccuracy
358313 - lyrics search inaccuracy
382906 - make the position-slider make run more smoothly
425239 - Last.fm paid member usability
437324 - Freeze when right-click -> Properties after start
479897 - Podcast containing m4a always returns failed upon download
501217 - Rhythmbox ignores http_proxy
502670 - Some typos in Rhythmbox's manual
516192 - crash when ejecting audio CD after metadata read failure
531310 - Update of documentation
537113 - attempts to install missing plugins for video and non-audio files
539007 - Gives up instantly on files if mime type isn't recognized
550491 - Use album artist information when importing from audio CD
556296 - crash due to missing podcast information in database
576005 - files played from MTP devices remain in /tmp afterwards
583108 - Song rating throught rhythmbox-client
583700 - Rhythmbox fails to import or play songs with forward slash from MTP devices
583934 - don't search for playlists on devices with no playlist format information
584182 - Additional areas for plugins to add UI elements
584248 - "Always show notifications" doesn't work accross restarts
584378 - undefined symbol in status-icon plugin
584394 - Tooltip for play button does not change to "Stop Playback" once track starts playing
584588 - Update libnotify required version to 0.4.1
584726 - Wrong icon sizes
584770 - minor translatable string fixes
584804 - audioscrobbler only sends one track with RBPlayerGst backend
584927 - daap: Fix “Host” HTTP header on manual daap
584930 - support for daap servers with ipv6 addresses
584958 - fix interaction with pulseaudio 0.9.15 flat volume feature
585043 - Last.fm playlist support
585114 - status-icon plugin build is broken (missing rb-marshall.h)
585524 - add_widget does not allow you to specify packing options
586363 - update for totem-pl-parser API additions
586365 - update for totem-pl-parser API additions
586803 - translator comment addition
586922 - proxy authentication not working for last.fm
586985 - crash when playback pipeline shutdown fails
587329 - allocating GValues in metadata helper incorrectly
587479 - crash when processing some metadata load errors
587595 - crash at end of playlist (playbin2)
587691 - always release gdk lock after calling loader callbacks
Contributors:
- Szilveszter Ördög
- Nguyễn Thái Ngọc Duy
- Sergey Rudchenko
- Edgar Luna
- John Iacona
- Jean-Philippe Garcia Ballester
- Markus Järvinen
- Stefano Frangioni
- Jonathan Matthew
New and updated translations:
- as, courtesy of Amitakhya Phukan
- de, courtesy of Mario Blättermann
- es, courtesy of Jorge González
- et, courtesy of Mattias Põldaru
- fr, courtesy of Claude Paroz
- gu, courtesy of Sweta Kothari
- he, courtesy of Mark Krapivner
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- lt, courtesy of Žygimantas Beručka
- mr, courtesy of Sandeep Shedmake
- or, courtesy of Manoj Kumar Giri
- pa, courtesy of A S Alam
- pl, courtesy of Tomasz Dominikowski
- pt_BR, courtesy of Leonardo Ferreira Fontenelle
- sv, courtesy of Daniel Nylander
- ta, courtesy of I. Felix
- vi, courtesy of Phạm Thành Long
Overview of changes in Rhythmbox 0.12.2 "We Are Underused"
===========================================================
* Support for cover art images embedded in song metadata
* New plugin that sets your IM status to describe the current playing song
* Last.fm submission protocol v1.2 (including the 'now playing' feature)
* New status icon plugin
* Replaced libglade with GtkBuilder
* Switched from playbin to playbin2 when crossfading is disabled, providing
gapless playback and better support for visualization
Bugs fixed:
* 158168 - Rhythmbox should minimize to tray on Exit
* 317982 - Notification icon redundant when applet is used
* 324114 - Minimize to nothing (no tray)
* 331019 - Show notification when unfocused but not minimized
* 345975 - Show album covers embedded in files e.g. mp3 ID3 tags
* 349280 - Move to GtkStatusIcon (Help kill libegg)
* 396409 - Radio stations using chained oggs break rhythmbox
* 397196 - rhythmbox error report "Unknown playback error" needs improvement
* 406807 - visualisation plugin blocks video output when not active
* 501998 - Mouse pointer should disappear in fullscreen visualization
* 509845 - Keyboard shortcuts should work with fullscreen visuals
* 526493 - New plugin: change IM status according played song
* 542922 - Use playbin2 instead of playbin
* 551002 - "Don't Really Close" should have an animation
* 562016 - Migrate from libglade to GtkBuilder
* 567335 - Crash in while playing file and visualizing
* 579137 - Cannot rearange playlists longer than one screen size
* 580269 - Rhythmbox won't compile with latest totem-pl-parser
* 580663 - WKNC Radio streams have changed URL
* 580721 - Crashes when not selecting the limiting kind
* 580743 - Rhythmbox doesn't support the newest audioscrobbler api
* 581468 - Missing im-status plugin file in POTFILES.in
* 581574 - Rhythmbox tries to import desktop files
* 582130 - [PATCH] New Jamendo Logo
* 583171 - crash due to plugins.ui not being installed
* 583926 - NetBSD doesn't have sys/vfs.h
* 583938 - Unportable test(1) construct in configure script
Contributors to this release:
- Bastien Nocera
- Christian Becke
- Jonathan Matthew
- Matt Novenstern
- Ryan Hughes
- Sebastian Morr
- Sergey Rudchenko
- Thomas Klausner
- Vincent Untz
- Víctor Manuel Jáquez Leal
- Will Woods
Updated translations
--------------------
- af, courtesy of F Wolff
- da, courtesy of Charlie Tyrrestrup
- de, courtesy of Christian Kirbach
- es, courtesy of Jorge González
- fr, courtesy of Claude Paroz
- gu, courtesy of Sweta Kothari
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- ja, courtesy of Takeshi AIHANA
- ne, courtesy of Shyam Krishna Bal
- pa, courtesy of A S Alam
Overview of changes in Rhythmbox 0.12.1 "Easily Fooled"
========================================================
* Removal of libgnome dependency when building with gtk+ 2.14+
* Greatly reduced memory usage when accessing Jamendo catalog
* Cover art improvements:
- Provide cover art for all songs transferred to iPods
- Support for transferring cover art to MTP devices
- Cover art image widget is better behaved when resized
* Switched to decodebin2, notably allowing playback of chained ogg streams
* Better support for lossless encoded files in the UI
* Compatibility with the DeviceKit-disks gvfs volume monitor
* Some support for 'album sortname' tags
* Allow configuration of the audioscrobbler handshake URL (libre.fm)
* Improved network buffering in the crossfading player backend
Bugs fixed:
* 576031 - crasher at end of playlist
* 513828 - tooltip for clean icon in the entry search
* 529873 - The artdisplay plugin should be able to supply metadata for
arbitrary db entries
* 576238 - crash due to extra mutex unlock call
* 510236 - crash when an import error occurs on a PSP or n770 device
* 576846 - crash when creating an auto playlist with the browser visible
* 576987 - minor string issues
* 576925 - shortcut key for the 'download location' entry doesn't work
* 576673 - shortcut key for the 'rating' label in the song properties window
doesn't work
* 365154 - crash when changing the selected device for audio CD burning
* 576038 - stop using libgnome
* 577840 - race condition in audio sink setup code when playing network
streams or audio CD
* 577465 - Magnatune plugin is not robust
* 578060 - musicbrainz3 CD metadata getter crash if the release has no date
* 337438 - display and sort on bitrate properly for lossless encodings
* 576574 - musicbrainz3 CD metadata getter crash if there is no release
* 426164 - resizing sidebar results in bad cover art image quality
* 443720 - art image shown only partially after side bar resize
* 578514 - Player detection broken with DeviceKit-disks gvfs monitor
* 578398 - crash when updating podcast feeds containing entries with empty URIs
* 570600 - rhythmbox picks bad filenames for ipod
* 577753 - rhythmbox does not support album sort tag
* 473757 - crash when lyrics window is destroyed while still fetching lyrics
* 579262 - stop playback properly after missing plugin install fails
* 579465 - bizarre crash in volume monitoring code
Contributors to this release:
- Jonathan Matthew
- Christophe Fergeau
- Kim Sullivan
- Bastien Nocera
- Niels Vorgaard Christensen
- Bruce Cowan
- Paul Bellamy
- Robert Ancell
- Sebastian Dransfeld
Updated translations
--------------------
en_GB: Bruce Cowan
es: Jorge González
eu: Iñaki Larrañaga Murgoitio
fi: Ilkka Tuohela
fr: Claude Paroz
hu: Gabor Kelemen
it: Luca Ferretti
kn: Shankar Prasad
mr: Sandeep Shedmake
pa: Amanpreet Singh Alam
pt_BR: Og Maciel
ru: Yuri Myasoedov
sv: Daniel Nylander
th: Theppitak Karoonboonyanan
zh_CN: Funda Wang
zh_HK: Chao-Hsiung Liao
zh_TW: Chao-Hsiung Liao
Overview of changes in Rhythmbox 0.12.0 "Flood Victim"
=======================================================
* Replaced gnome-vfs with GIO
* New CD burning plugin using Brasero
* Improvements to the cross-fading player backend
* Various improvements to MTP device support
* Updated audio CD metadata code, supporting CD-Text and musicbrainz3
* User data and cached files moved to XDG base directory spec locations
* Much clearer indication of problems with last.fm login and streaming
* Where possible, provide a simple means to duplicate audio CDs
* Greatly improved performance when accessibility is enabled
* Updated Coherence UPnP plugin
* iPod improvements: avoid creating duplicates, add a device properties
dialog, initialize brand new ipods
* Support for more last.fm stream types
* GTK+ and GLib usage cleanups: use single header includes,
stop using deprecated functions and widgets
* Reworked tray icon tooltip using GtkTooltip instead of SexyTooltip
* Random play order should repeat itself far less often
* If using pulseaudio, control the output volume using the PA stream volume
* Reworked search infrastructure that might make interesting things possible
Contributors to this release:
- Pascal Terjan
- "OrbWeaver"
- Brian Cameron
- Philippe Rouquier
- Bastien Nocera
- Jonathan Matthew
- Tim Retout
- Mike Gratton
- Víctor Manuel Jáquez Leal
- Neil Loknath
- Oscar Morante
- Alban Crequy
- John Daiker
- Andy Owen
- Uri Sivan
- Michael Terry
- Pedro Fragoso
- Christophe Fergeau
- James "Doc" Livingston
- Patrick Wade
- Luca Ferretti
- Flavio Martins
- Takao Fujiwara
- Jason Crain
- Susana Pereira
- Pelle Kristiansson
- John Wimer
- Lasse Bigum
- Martin Franco
- Steven Brown
- Kjartan Maraas
- Maxim Ermilov
- Ed Catmur
- Paul Drain
- William Jon McCann
- Johan Frank
- Mika Wahlroos
- Bruno Prin
- Eric Shattow
- Colin Leroy
- Ernst Persson
- John Millikin
- Linus Walleij
- Johannes H. Jensen
- Raul Soriano
- Wendy Hu
- Sebastien Bacher
- Matthias Clasen
- Dereck Wonnacott
Updated translations
--------------------
ar: Ahmad Farghal
be@latin: Ihar Hrachyshka
ca: Joan Duran, Francesc Vilches
cs: Kamil Paral, Petr Kovar
da: Kasper Nielsen
de: Christian Kirbach, Jochen Skulj
en_GB: Philip Withnall
es: Jorge González, Vincent van Adrighem
eu: Iñaki Larrañaga Murgoitio, Inaki Larranaga Murgoitio
fi: Ilkka Tuohela
fr: Claude Paroz
ga: David O'Callaghan <david
gl: Ignacio Casal Quinteiro
he: Mark Krapivner
hr: Robert Sedak
hu: Gabor Kelemen
it: Luca Ferretti
ja: Mitsuya Shibata
lt: Žygimantas Beručka, Gintautas Miliauskas
lv: Raivis Dejus
mk: Arangel Angov
nb: Kjartan Maraas
nl: Tino Meinen
pl: Tomasz Dominikowski
pt: Filipe Gomes
pt_BR: Vladimir Melo, Raul Pereira
ru: Yuri Myasoedov
sk: Peter Tuhársky
sr.po, sr@latin: Goran Rakić
sv: Daniel Nylander
th: Theppitak Karoonboonyanan
vi: Nguyễn Thái Ngọc Duy, Phạm Thành Long
zh_CN: 甘露(Gan Lu), Funda Wang
zh_HK: Chao-Hsiung Liao
zh_TW: Jackden, Funda Wang
Overview of changes in Rhythmbox 0.11.6 "Haunt You Down"
=========================================================
* Relicensed with GPL exception for GStreamer plugins
* Improvements to the cross-fading playback backend
* Use Amazon ECS 4.0 web service for cover art searches
* Remember browser state for (some) removable devices
* Automatically remove podcast episodes that are no longer available
* Only display error dialogs for manually triggered podcast updates
* Allow playlists from DAAP shares to be sorted
* Fix transcoding when transferring to MTP devices
* Start moving cached data to XDG_CACHE_HOME
* More inclusive local cover art search
* Lots of improvements to the iPod plugin
* Switch to the new last.fm streaming system
* Much improved API documentation coverage
Contributores to the release:
- Thomas Andersen
- Sebastien Bacher
- Niels Vorgaard Christensen
- Jay Cornwall
- Paul Drain
- Christophe Fergeau
- Luca Ferretti
- Marcin Galazka
- Alexander Gitter
- Maximilian Grothusmann
- Andreas Henriksson
- Jeremy Katz
- Colin Leroy
- James Livingston
- Edgar Luna
- Nikolai Luthman
- Jonathan Matthew
- John Millikin
- Mirco Müller
- Bastien Nocera
- Alfredo Pironti
- Frank Scholz
- Shogun
- Sjoerd Simons
- F. Steinel
- Mats Taraldsvik
- Philippe Troin
- David Turner
- Mika Wahlroos
- Colin Walters
- Thomas Zander
- Adam Zimmerman
Updated translations
--------------------
Petr Kovar, Kamil Páral (cs)
Jochen Skulj (de)
Simos Xenitellis (el)
Jorge Gonzalez (es)
Claude Paroz (fr)
Ignacio Casal Quinteiro (gl)
Mark Krapivner (he)
Luca Ferretti (it)
Žygimantas Beručka (lt)
Arangel Angov (mk)
Kjartan Maraas (nb)
Tino Meinen (nl)
Yannig Marchegay (Kokoyaya) (oc)
Tomasz Dominikowski (pl)
Vladimir Melo, Fábio Nogueira (pt_BR)
Peter Tuhársky (sk)
Daniel Nylander (sv)
甘露(Lu Gan) (zh_CN)
Overview of changes in Rhythmbox 0.11.5
=======================================
* Improvements to the cross-fading playback backend
* Assorted bug fixed for MTP device support
* Add "shuffle playlist" command for playlists
* Improvements to iPod art and podcast support
* Fix some issues causing problems for accessability tools
* Several major improvements to UPnP support (including acting as a renderer)
* List Rhythmbox as supporting lastfm:// URIs
Contributors to the release:
- Djihed Afifi
- Sebastien Bacher
- Damien Carbery
- Ed Catmur
- Jay Cornwall
- Christophe Fergeau
- Ralph Giles
- Kern Handa
- Ryan Hughes
- Alex Kloss
- Karol Krizka
- Jonathan Matthew
- Mirco Müller
- Claude Paroz
- Frank Scholz
- Sam Solon
- Kouhei Sutou
- Götz Waschk
- Dan Winship
- Li Yuan
- David Zeuthen
New translations
----------------
* ps Zabeeh Khan
Updated translations
--------------------
* ar Ahmad Farghal
* be@latin Ihar Hrachyshka
* ca Gil Forcada, David Planella
* cs Kamil Paral
* da Kenneth Nielsen
* de Hendrik Richter
* en_GB Philip Withnall
* es Jorge Gonzalez
* eu Inaki Larranaga Murgoitio
* fi Ilkka Tuohela
* fr Claude Paroz, Stéphane Raimbault
* ga Seán de Búrca
* gl Ignacio Casal Quinteiro
* he Mark Krapnov
* hu Gabor Kelemen
* it Luca Ferretti
* ja Takeshi AIHANA
* lt Žygimantas Beručka, Gintautas Miliauskas
* mk Jovan Naumovski
* nb Kjartan Maraas
* ne Pawan Chitrakar
* nl Tino Meinen
* oc Yannig Marchegay
* pl Artur Flinta
* pt Filipe Gomes
* pt_BR Og Maciel
* ru Yuri Myasoedov, Anton Shestakov
* sk Peter Tuhársky
* sv Daniel Nylander
* tr Gil Forcada
* zh_HK Chao-Hsiung Liao
* zh_TW Chao-Hsiung Liao
Overview of changes in Rhythmbox 0.11.4 ""
==========================================
* Support automatic GStreamer plugin installation
* Improved cross-fading backend
* Improved Podcast feed support, including Atom and APML
* Add optional mozilla plugin to handle itms:// links
* Fade volume when pausing and unpausing
* Improve performance and stability of MTP device support
* Stop putting deleted tracks on iPods in the Garbage Bin
* Support PSPs with newer firmware
* Improvements to the Coherence-based UPnP support
* Minor improvements to Python bindings for plugins
Contributors to the release:
- John Daiker
- Louis Francis
- Irene Huang
- James Livingston
- Jonathan Matthew
- Andreas Nilsson
- Bastien Nocera
Updated translations
--------------------
* be@latin Ihar Hrachyshka
* de Andre Klapper
* es Jorge Gonzalez
* fr Robert-André Mauchin
* ga Seán de Búrca
* gl Ignacio Casal Quinteiro
* it Luca Ferretti
* ja Takeshi AIHANA
* ka Namhyung Kim
* lt Žygimantas Beručka
* nb Espen Stefansen
* pt Filipe Gomes
* sv Daniel Nylander
Overview of changes in Rhythmbox 0.11.3 "Splinter"
==================================================
* Allow drag-and-drop of images to the cover art display
* Allow DAAP shares to be connected to manually
* Support DAAP smart playlists and radio streams
* Handle file name being passed on the command line again
* Add "donate to artist" action to Jamendo plugin
* Support some more lyric sites
* Improvements and fixes to the cross-fading player
* Improve UPnP support
* Improve track importing, especially on generic audio players
* Allow python plugins to use threads
* Enable music store plugins by default
* Support playback from fm radio tuner cards
As well as a heap of bug fixes.
Contributors to the release:
- Paolo Borelli
- John Bryant
- Brian Cameron
- Ed Catmur
- Cosimo Cecchi
- Tim Chevalier
- Jay Cornwall
- Jeff Craig
- Paul Drain
- Nguyen Thai Ngoc Duy
- James Henstridge
- David Keijser
- Alex Lancaster
- James Livingston
- Stephane Loeuillet
- Jonathan Matthew
- Bastien Nocera
- Tom Parker
- Tim Retout
- Claudio Saavedra
- Torsten Schoenfeld
- Kouhei Sutou
- Mika Wahlroos
- Philip Withnall
- Austin
Updated translations
--------------------
* ar Djihed Afifi
* be@latin Ihar Hrachyshka
* ca Francesc Vilches
* cs Martin Picek
* en_CA Adam Weinberger
* es Jorge Gonzalez
* eu Inaki Larranaga Murgoitio
* fi Ilkka Tuohela
* fr Stéphane Raimbault
* gl Ignacio Casal Quinteiro, Iván Méndez López
* hu Gabor Kelemen
* it Luca Ferretti
* ja Takeshi Aihana
* lt Žygimantas Beručka, Gintautas Miliauskas
* lv Raivis Dejus
* mk Jovan Naumovski
* nb Kjartan Maraas, Espen Stefansen
* nl Tino Meinen
* pl Artur Flinta
* pt_BR Og Maciel, Pedro de Medeiros
* ro Alex Eftimie
* sk Peter Tuharsky
* sv Daniel Nylander
Overview of changes in Rhythmbox 0.11.2 "Inverted Ouroboros"
============================================================
* add partial support for UPnP A/V using Coherence
* large memory usage reductions for the Jamendo plugin
* read some keys from .is_audio_player files, like Banshee
* handle playlist-paths given to us by HAL better
* allow plugins to add new play orders
* notify last.fm about songs played on iPods
As well as a heap of bug fixes.
Contributors to the release:
- Jürg Billeter
- Dennis Cranston
- Christophe Fergeau
- Luca Ferretti
- Alex Lancaster
- Eduardo Lima
- James Livingston
- Jonathan Matthew
- Bastien Nocera
- Tim Retout
- Adam Zimmerman
Updated translations
--------------------
* dz Pema Geyleg
* eu Inaki Larranaga Murgoitio
* fi Ilkka Tuohela
* fr Claude Paroz
* gl Ignacio Casal Quinteiro