This repository has been archived by the owner on Mar 10, 2019. It is now read-only.
forked from GNOME/rhythmbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
3548 lines (3154 loc) · 139 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 3.4.2
======================================
* Bug fix release for 3.4
* Visualization plugin removed
* Responsiveness improvements during media player sync
* Better network buffering when crossfading is enabled
Bugs fixed:
697567 Critical Assertion Errors
701608 accept --version command-line option
770358 IM status plugin: Remove Gossip support
770462 Rhythmbox should not display "Examining files 0 of 0"
770486 grilo plugin leaves empty directories in /tmp
770920 rhythmbox crashed with SIGSEGV during import
770983 Expand playing icon column in entry view
771335 Use generic signal marshallers
771337 Ensure same size progress bar in task list
771405 Update README
771884 Rhythmbox should confirm before overwriting playlists.
772997 Search not cleared on clicking "View All"
773404 Client: Disconnect doesn't reset browser selection
773466 Server: Do not transmit unplayable rhythmdb entries to the DMAP client
773695 Import hangs for special file ( socket )
773729 Playqueue UI improvements
773858 Link podcast feed / episode plugin menus
774336 Properties with long text is not ellipsized in property view.
775294 GTK_IS_WIDGET (widget) assertion failures when selecting "Radio France" source
775447 Grilo plugin needs quality column
776292 Memory leak in error handling of utimes on podcast-timestamp
781184 Send tracks: update plugin description
783016 iradio plugin should include WUVT-FM
784957 build failure with gcc 7.1.1
785304 open settings crashes the app
785805 Keyboard navigation with tab is broken by search entry widget
787785 DLNA audio playback stops after 30 sec, can get back briefly with seeking
Translation updates:
- ca, courtesy of Jordi Mas
- cs, courtesy of Marek Černocký
- de, courtesy of Mario Blättermann
- es, courtesy of Daniel Mustieles
- fi, courtesy of Jiri Grönroos
- gl, courtesy of marcos
- hr, courtesy of gogo
- hu, courtesy of Meskó Balázs
- id, courtesy of Kukuh Syafaat
- it, courtesy of Milo Casagrande
- lt, courtesy of Aurimas Černius
- nb, courtesy of Kjartan Maraas
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Isaac Ferreira Filho
- pt, courtesy of Tiago Santos
- ro, courtesy of Daniel Șerbănescu
- sk, courtesy of Dušan Kazik
- sr, courtesy of Милош Поповић
- sr@latin, courtesy of Miloš Popović
- sv, courtesy of Anders Jonsson
- vi, courtesy of Trần Ngọc Quân
- zh_CN, courtesy of 甘露(Lu Gan)
- zh_TW, courtesy of Cheng-Chia Tseng
Overview of changes in Rhythmbox 3.4.1
======================================
* Bug fix release for 3.4
Bugs fixed:
770044 rhythmbox-3.3.1 grilo plugin crashes on reload
770071 rhythmbox crashes while updating metadata for file stored in read only filesystem
770134 RhythmDB-CRITICAL **: rhythmdb_entry_unref: assertion 'entry != NULL' failed
770148 rhythmbox crashes while stopping track extraction from CD
770167 "View All" button in iRadio plugin doesn't fire filter changed notification
770209 Missing sort order label in Automatic playlist dialog
770212 Magnatune: "Select All" -> "Download Album" halts entire system
770262 Rhythmbox GIR Bindings Broken With 3.4 (rb_application_add_accelerator)
770411 Rhythmbox should not allow deletion of default items in side pane.
770601 webremote plugin: Missing files in installation.
770920 rhythmbox crashed with SIGSEGV during import
Translation updates:
- lt, courtesy of Aurimas Černius
- nl, courtesy of Justin van Steijn
- pl, courtesy of Piotr Drąg
- pt, courtesy of Tiago Santos
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
Overview of changes in Rhythmbox 3.4
====================================
* New web remote control plugin
* Grilo plugin now uses Grilo 0.3
* Soundcloud plugin fetches more search results and allows pausing
* No longer uses webkit (partly due to OpenBSD W^X enforcement)
* Slightly better handling of keyboard shortcuts for playback
* Core and some plugin data files compiled into binaries using GResources
Bugs fixed:
703910 Entering then leaving Party Mode breaks the app menu; Party Mode status incorrectly reported
721926 TerraParser (lyric's plugin) is not fetching lyrics correctly
759589 grilo: Port to 0.3.0
765833 [regression] Cover art shown superposed over the song titles and artist names when cover art is disabled
766584 Referenced website replaygain.org is not about ReplayGain
767318 Use correct pkg-config binary
767466 daap: Fix warnings when configuring music sharing
767524 "To translators: the context is" doesn't continue the sentence
768545 Cannot change MP4 encoder settings
769404 Memory leak
Translation updates:
- ca, courtesy of Jordi Mas
- cs, courtesy of Marek Černocký
- da, courtesy of Ask Hjorth Larsen
- de, courtesy of Mario Blättermann
- es, courtesy of Daniel Mustieles
- fi, courtesy of Jiri Grönroos
- fr, courtesy of Claude Paroz
- ga, courtesy of Seán de Búrca
- gd, courtesy of GunChleoc
- hr, courtesy of gogo
- hu, courtesy of Meskó Balázs
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Enrico Nicoletto
- pt, courtesy of Tiago Santos
- ro, courtesy of Daniel Șerbănescu
- sk, courtesy of Dušan Kazik
- sv, courtesy of Anders Jonsson
- vi, courtesy of Trần Ngọc Quân
- zh_CN, courtesy of shijing
Overview of changes in Rhythmbox 3.3.1
======================================
* Better handling of locked Android devices
* Simplified ReplayGain processing that might crash less
* Switched to webkit2 API, except for the context plugin which is disabled
* Notifications behave better when actions aren't available
Bugs fixed:
678349 Rhythmbox segfaults when trying to access Android 4.0 MTP device already mounted by Nautilus
744775 Rhythmbox crashes when trying to access Android device.
752019 Port to WebKit2
762087 CD playing with cross fading on crashes rhythmbox
762203 Display notifications about playing song when pausing
763206 RhythmDB-CRITICAL **: rhythmdb_entry_get_entry_type: assertion 'entry != NULL' failed
763435 Gtk-WARNING **: Drawing a gadget with negative dimensions. Did you forget to allocate a size? (node grid owner RBHeader)
763874 Rework logic of Python support option
Translation updates:
- cs, courtesy of Marek Černocký
- de, courtesy of Mario Blättermann
- es, courtesy of Daniel Mustieles
- fi, courtesy of Jiri Grönroos
- hu, courtesy of Balázs Úr
- it, courtesy of Milo Casagrande
- lv, courtesy of Rūdolfs Mazurs
- oc, courtesy of Cédric VALMARY
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Rafael Fontenelle
- ro, courtesy of Daniel Șerbănescu
- sk, courtesy of Dušan Kazik
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- sv, courtesy of Anders Jonsson
- tr, courtesy of Muhammet Kara
- vi, courtesy of Trần Ngọc Quân
Overview of changes in Rhythmbox 3.3
====================================
* New plugin supporting Android devices via gvfs-mtp
* Encoding settings are now configurable per device type
* Encoding settings can force lossless files to be transcoded
Bugs fixed:
733830 While extracting music from CDs, information in the "Year" field is lost
748857 Typos in documentation
749015 audioscrobbler: Fix displaying icon for libre.fm
751265 JSON import errors
751630 Sync Preferences Missing
751961 iradio: remove Radio GFM
752433 [PATCH] data: Add various mod files as supported MIME types
753359 Don't handle RTL icons manually for GTK+ >= 3.12
753767 error: conflicting types for 'rhythmdb_metadata_cache_purge'
755881 crash when adding files found during startup scan
756992 hangs after handling mod/xm/it (modplug) file when crossfade is enabled
757225 Freezing with crossfade backend and Pulseaudio with GStreamer 1.6.x
760192 commit 85c185d breaks compilation with -Wl,-as-needed
761030 Album-Art caching issue
Translation updates:
- cs, courtesy of Marek Černocký
- de, courtesy of Mario Blättermann
- de, courtesy of Wolfgang Stoeggl
- es, courtesy of Daniel Mustieles
- fi, courtesy of Jiri Grönroos
- fr, courtesy of Claude Paroz
- gl, courtesy of marcos
- hu, courtesy of Balázs Úr
- ko, courtesy of Seong-ho Cho
- lt, courtesy of Aurimas Černius
- nb, courtesy of Kjartan Maraas
- oc, courtesy of Cédric Valmary (Tot en òc)
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Enrico Nicoletto
- pt, courtesy of Pedro Albuquerque
- ru, courtesy of Stas Solovey
- sk, courtesy of Dušan Kazik
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- sv, courtesy of Josef Andersson
- vi, courtesy of Trần Ngọc Quân
Overview of changes in Rhythmbox 3.2.1
======================================
* Bug fixes
Bugs fixed:
746975 - core dump when using shuffle and playing track changes
747053 - Rhythmbox plugins fail to connect to signal handlers with libpeas 1.14.0
Translation updates:
- ca, courtesy of Pau Iranzo
- de, courtesy of Christian Kirbach
- fr, courtesy of Haïkel Guémar
Overview of changes in Rhythmbox 3.2
====================================
* Support for disc and track total tags (Hubert Figuiere)
* Soundcloud plugin
* Ability to clear, re-fetch and manually set cover art using the song info
window
* Build fixes for Mac OS X (Andrew Brown)
* Many style and layout fixes (Trinh Anh Ngoc)
Bugs fixed:
330686 - same songs played after reading a playlist
554574 - no easy way to unselect the browse by album,artist,genre option
592706 - Unclear string "in" for translation
601747 - rhythmbox skips one or two songs after playing certain songs
733795 - configure warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
737058 - Add track count and disc count to the database
737655 - data: Add Vorbis aliases as supported mime-types
738101 - Failure to build with tdb 1.3
738529 - Crash when right clicking the track list in the library
743012 - Rhythmbox fails to import MP3 files with ID3 v2.4 tags created by PicardQT
743493 - Tracks with no embedded covert art show a random cover art from the music collection
743761 - Right click on any file in 'Tracks list' clashes the application
745395 - Duplicate symbol _rb_metadata_iface_xml
745399 - gdkx.h explicitly included; prevents building on Mac
746047 - symbolic icon is broken
Translation updates:
- bs, courtesy of Samir Ribić
- ca, courtesy of Pau Iranzo
- cs, courtesy of Marek Černocký
- es, courtesy of Irene Sáez Sanz
- fi, courtesy of Jiri Grönroos
- gd, courtesy of GunChleoc
- hu, courtesy of Balázs Úr
- id, courtesy of Andika Triwidada
- it, courtesy of Milo Casagrande
- kk, courtesy of Baurzhan Muftakhidinov
- lt, courtesy of Aurimas Černius
- nb, courtesy of Kjartan Maraas
- nl, courtesy of Hannie Dumoleyn
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Rafael Ferreira
- sk, courtesy of Dušan Kazik
- sl, courtesy of Matej Urbančič
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- sv, courtesy of Anders Jonsson
- sv, courtesy of Daniel Nylander
- tr, courtesy of Muhammet Kara
- vi, courtesy of Trần Ngọc Quân
- zh_TW, courtesy of Cheng-Chia Tseng
Overview of changes in Rhythmbox 3.1
====================================
* Assorted bug fixes
* GTK+ 3.14 compatible
* Now includes an AppData file
Bugs fixed:
637747 - "Edit > Preferences > General > Visibile Columns > BPM" missing mnemonic
686082 - UPNP servers do not get removed after they become unavailable
702885 - SendTo plugin does not work with music files containing apostrophe
723020 - Rhythmbox incorrectly reads the year tag of m4a files
725884 - support libsecret 0.18 (SecretUnstable to Secret API change)
729373 - rhythmbox crashes upon "Jump to Playing Song"
731025 - Song properties dialog "Basic" tab, "Comment" keyboard mnemonic is same as "Composer"
731202 - Notification disappears when I pause my music
731236 - New Radio Paradise URLs
732764 - The latest rhythmbox needs atleast libglib 2.34
732880 - Wording used for importing music in import screen is not clear
733499 - rhythmbox crashes with SIGSEGV due to double free in rb_podcast_parse_channel_free
733526 - rhythmbox / audioscrobbler fails if built from separate build dir
733586 - Inequal sizing and alignment in rhythmbox UI.
733636 - grilo: Do not free GrlRegistry
734057 - rhythmbox-client --stop
734123 - Rhythmbox 3.0.2 crashes if attempting to load pls stream before any other type
734235 - AAC tags are improperly parsed for the "year" field
735021 - daap source compilation failure with ubuntu 14.04
735056 - Rating stars are not vertically aligned in GtkTreeView listing
735083 - Rhythmbox crash when adding songs to a playlist
735954 - Right-clicking on song causes Segmentation fault
737053 - song-info ui files need update
737368 - rhythmbox.appdata.xml.in is in wrong location
Translation updates:
- ar, courtesy of Ibrahim Saed
- cs, courtesy of Marek Černocký
- de, courtesy of Wolfgang Stoeggl
- el, courtesy of Tom Tryfonidis
- es, courtesy of Daniel Mustieles
- fi, courtesy of Jiri Grönroos
- fr, courtesy of Claude Paroz
- gd, courtesy of GunChleoc
- hu, courtesy of Balázs Úr
- id, courtesy of Andika Triwidada
- ja, courtesy of Jiro Matsuzawa
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Rafael Ferreira
- ro, courtesy of Daniel Șerbănescu
- sk, courtesy of Dušan Kazik
- sl, courtesy of Matej Urbančič
- sv, courtesy of Anders Jonsson
- zh_TW, courtesy of Cheng-Chia Tseng
Overview of changes in Rhythmbox 3.0.3 "Devilfish"
===================================================
* Assorted bug fixes
* Embedded cover art no longer applied to following tracks
Bugs fixed:
632266 - "not enough space on the device" error when syncing (transcoding) flac files to removable device
682574 - upnp browsing problems with new grilo 0.2 rb-plugin built from git r2313d70 on 20120823
724931 - rhythmbox crashed with SIGSEGV in rb_list_model_find()
727254 - Please switch Paradise Radio default stream to include metadata
727437 - rhythmbox: gtk_menu_tracker_model_changed(): rhythmbox killed by SIGSEGV
727838 - Some grilo fixes
727937 - Wishlist: Rhythmbox unnecessarily announces "Not Playing" when I close it
730547 - External Plugin toolbar options wrongly spaced
Translation updates:
- ar, courtesy of Ibrahim Saed
- id, courtesy of Andika Triwidada
- sv, courtesy of Anders Jonsson
- th, courtesy of Kiatkachorn Ratanatharathorn
Overview of changes in Rhythmbox 3.0.2
======================================
* Assorted bug fixes
Bugs fixed:
678938 - Selectable text for playing song interferes with dragging by toolbar
692485 - application hangs clicking on devices with undefined playlist_path
701598 - rhythmbox seems to always be compiled with --enable-uninstalled-build
705105 - Rhythmbox while playing disables automatic screen lock
707144 - Rhythmbox doesn't support itmss:// links
707525 - Last.fm radio stations can't be properly deleted
707618 - Trying to play a file missing on disk crashes rhythmbox in
rb-player-gst.c:516
708084 - podcast: Local file name is not escaped
708201 - Core dumped when running on Wayland
708341 - Transfer to mass storage player hangs after last song
710493 - Gdk assertion failed: invalid cairo image surface format
710832 - Removing a song from the Play Queue removes it from the Library
711285 - Cannot play remote files (sftp/gvfs) in library
712237 - Rhythmbox segfaults on broken cover images
712699 - Take into account the size of header button for column width
715177 - running rhythmbox-client --play-uri file:///path/to/song with
rhythmbox closed only starts the app, not the song
719514 - cairo crash on playback whenever coverart search plugin is enabled
719777 - data: Add audio/mp4 as a supported mime-type
720116 - app menu: standardize Help/About/Quit
720217 - If transfer to device fails with non-sanitized filename, try with
sanitized one
720819 - header: vertically centralize the "Not playing" label
721550 - License text contains obsolete FSF postal address
721758 - Please add search by genre
722069 - Incorrect links to the website
722782 - link to Rhythmbox Home Page is invalid
723839 - audioscrobbler: Invalid path passed to g_settings_new_with_path()
724931 - rhythmbox crashed with SIGSEGV in rb_list_model_find()
725625 - Absolute Radio Stations Should No Longer Be Included as Default
(not streaming outside of UK)
726167 - .linked class is set on toolbar buttons instead of their container
Translation updates:
- cs, courtesy of Marek Černocký
- de, courtesy of Christian Kirbach
- es, courtesy of Daniel Mustieles
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Dieguez
- hu, courtesy of Gabor Kelemen
- it, courtesy of Milo Casagrande
- lt, courtesy of Aurimas Černius
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Rafael Ferreira
- pt, courtesy of Tiago S.
- ru, courtesy of Yuri Myasoedov
- sl, courtesy of Matej Urbančič
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- zh_CN, courtesy of YunQiang Su
Overview of changes in Rhythmbox 3.0.1 "I Am Nice To Tapes"
============================================================
* Assorted bug fixes
Bugs fixed:
706470 - metadata reader dbus connection doesn't work
708476 - daap source using wrong GSettings schema
709143 - static playlists sorted by artist name
708341 - task list doesn't update correctly sometimes
Translation updates:
- cs, courtesy of Marek Černocký
- de, courtesy of Benjamin Steinwender
- fi, courtesy of Jiri Grönroos
- sk, courtesy of Pavol Klačanský
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- zh_HK, courtesy of Cheng-Chia Tseng
- zh_TW, courtesy of Cheng-Chia Tseng
Overview of changes in Rhythmbox 3.0 "I Eat Tapes"
===================================================
* Plugins now use Python 3
* New task progress display below the track list
(used for various things including track transfers and
import jobs)
* Support for composer tags
* Restyled playback controls
* Restyled source list using symbolic icons
* Better introspection of everything
* Separate CBR and VBR encoding styles with different sets
of exposed properties
* Playlist settings (browser visibility etc.) saved in
playlists.xml
* Better use of RTL icons where appropriate
Bugs fixed:
127939 support for composer/Music Director id3 tag in rhythmbox and the database
516846 Use short labels in toolbar
652892 Browser visibility is forgotten on program restart
672044 Man page for rhythmbox-client should be updated
675145 Provide an app menu
677645 Improve custom recording settings
697533 Several keyboard shortcuts don't work in 2.99
697915 XI_BadDevice errors
697959 Incorrect time shows briefly when song changes
698043 fix im-status plugin load
698429 click album or artist list -> window size returns
698460 macros/Makefile.in is kinda missing
698810 IM status plugin doesn't work
698979 ReplayGain plugin cannot load
700017 man: Remove --quit option
700177 rhythmbox fails to build introspection with Gtk 3.9
700401 replaygain crashes Rhythmbox on second play
700424 Impossible to unmaximize the main window by double clicking on the title bar
700590 rb-audiocd-source.c:1009: not doing musicbrainz lookup as we don't have a disc id
701032 No external plugins menu items visible in the Play Queue popup
701194 The library import tab does not update the available tracks
701307 No longer able to examine and respond to changes in RhythmDB
702679 exception hit when attempting to read an entry-view BPM column
702683 Ctrl+Space no longer pauses/plays current song
703624 "Add to playlist >" contextual menu item is disabled when inside a dynamic playlist
703626 "Browse" togglebutton/pushbutton is initially inconsistent
703627 Small UI nitpicks in 2.99.x: cut off inline toolbar, redundant separator widget
703798 App is reading wrong ID3 tag used to show Year
705307 Date tag not detected properly on FLAC files (and possibly others)
705427 Set button arrow icons according to locale's text direction
705626 Shortcuts missing
706760 Set button arrow icons according to locale's text direction
707082 IM status does nothing
707184 Song comments disappear after closing Rhythmbox
707360 Desktop file categories are wrong
Translation updates:
- ca, courtesy of Javi Ribera
- cs, courtesy of Marek Černocký
- de, courtesy of Christian Kirbach
- el, courtesy of Dimitris Spingos (Δημήτρης Σπίγγος)
- es, courtesy of Daniel Mustieles
- es, courtesy of Miguel Rodríguez Núñez
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Dieguez
- hu, courtesy of Gabor Kelemen
- it, courtesy of Milo Casagrande
- ja, courtesy of Jiro Matsuzawa
- lt, courtesy of Aurimas Černius
- lv, courtesy of Rūdolfs Mazurs
- nb, courtesy of Kjartan Maraas
- pa, courtesy of A S Alam
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Enrico Nicoletto
- ru, courtesy of Yuri Myasoedov
- si, courtesy of Danishka Navin
- sk, courtesy of Pavol Klačanský
- sl, courtesy of Matej Urbančič
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- th, courtesy of Kiatkachorn Ratanatharathorn
- zh_CN, courtesy of Wylmer Wang
Overview of changes in Rhythmbox 2.99.1 "Strip Light Hate"
===========================================================
* Several missing accelerator keys (re-)added
* XI_BadDevice crashes fixed
Bugs fixed:
697526 - Click Help menu -> Document Not Found in yelp
697527 - Click F1 key in rhythmbox -> No popup yelp
697534 - Add Alt+E keyboard shortcut for Edit menu
697915 - XI_BadDevice errors
No translation updates.
Overview of changes in Rhythmbox 2.99 "Future Delay Thinking"
==============================================================
* Menu bar replaced with app menu or menu button
* GStreamer 1.0
* Uses libsecret instead of gnome-keyring
* Supports GNOME notification filtering
* Small improvements to podcast browsing and updating
* Play button now turns into a pause or stop button while playing
* Buffering progress now appears in the song position slider
rather than an unlabelled progress indicator in the status bar
* Media player sync works better with transcoded files
Bugs fixed:
376372 - if a podcast feed adds more than one podcast not all will be downloaded.
381196 - rhythmbox-client has no option to toggle shuffle/repeat
399012 - Rhythmbox wakes up too much
454239 - Rhythmbox should have an option to copy files to the default folder when importing
592455 - turning volume with ctrl+up/down arrow also skip the song
663440 - CD does not resume playing after pausing
672306 - Lyric plugin: buttons don't use mnemonics
673533 - No way in Rhythmbox 2.96 to see a *full* list of podcast subscriptions
674178 - fetch korean lyrics from jetlyrics.com
678032 - The interface freezes at launch
679880 - should use keywords in its .desktop entry
679982 - Can't delete libraries from last.fm
681469 - port to gstreamer 1.0
683375 - add shuffle toggle command line interface
684301 - artsearch: don't warn for GErrors enumerating files
685004 - Last.fm profile page's toolbar is shown when not logged in
685565 - error in dbus object path formatting
685820 - rhythmbox context plugin: unable to display Links tab
685821 - rhythmbox lyrics plugin: unable to set lyrics folder in preferences
685822 - rhythmbox lyrics plugin: DarkLyrics IndexError: list index out of range
685893 - rhythmbox lyrics plugin: some service no longer work
685910 - Make sure to ref objects when using them in an idle call
685945 - Disable the context pane plugin when webkit isn't available
686320 - Crashes when enabling visualiser plugin
686470 - eggwrapbox: Fix getting orientation as a property
687109 - help: port to new documentation infrastructure
688432 - Disable building of two static libraries by default
688515 - Bottom panel for plugin widgets is not shown
688638 - crash parsing musicbrainz audiocd search results
689413 - Crash on drag'n'drop of album cover
689883 - port visualizer plugin to gstreamer 1.0
689899 - Deadlock using the xfade backend
690113 - GStreamer-1.0: metadata - gst 1.0 audio_%d -> audio_%u
690235 - crashes when audio sink cannot be created
690993 - segfault in rb_track_transfer_batch_check_profiles()
692158 - Rhythmbox crashes when changing internet radio station genre
692941 - Support Notification Filtering GNOME feature
694293 - Plug some small leaks
694981 - Port from gnome-keyring to libsecret
696517 - fix linking lastfm plugin
697267 - Crash in rb-podcast-add-dialog.c
Translation updates:
- ar, courtesy of Ibrahim Saed
- cs, courtesy of Marek Černocký
- de, courtesy of Christian Kirbach
- de, courtesy of Mario Blättermann
- el, courtesy of Tom Tryfonidis
- es, courtesy of Daniel Mustieles
- fi, courtesy of Jiri Grönroos
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Dieguez
- hu, courtesy of Gabor Kelemen
- id, courtesy of Andika Triwidada
- it, courtesy of Milo Casagrande
- ja, courtesy of Akira Tanaka
- lt, courtesy of Aurimas Černius
- lv, courtesy of Rūdolfs Mazurs
- nb, courtesy of Kjartan Maraas
- nl, courtesy of Wouter Bolsterlee
- pa, courtesy of A S Alam
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Enrico Nicoletto
- ru, courtesy of Yuri Myasoedov
- sk, courtesy of Pavol Klačanský
- sl, courtesy of Andrej Žnidaršič
- sl, courtesy of Matej Urbančič
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- tr, courtesy of Muhammet Kara
- zh_CN, courtesy of Wylmer Wang
- zh_CN, courtesy of 甘露(Lu Gan)
- zh_HK, courtesy of Cheng-Chia Tseng
- zh_TW, courtesy of Cheng-Chia Tseng
Overview of changes in Rhythmbox 2.98 "Faults"
===============================================
* New dialog for importing music into the library
* New audio CD metadata lookup library, replacing libmusicbrainz
* Improved transitions between album art images
* Nautilus cluebar buttons now result in the right source
being selected
* Update notification buttons when playback state changes
* Grilo plugin ported to grilo 0.2 API
* Search musicbrainz for album art by album and artist name
* Love/ban buttons visible in last.fm/libre.fm sources
Bugs fixed:
604734 - "Hide" (for MusicBrainz) is missing a mnemonic
653781 - No mention of ALT+S keyboard shortcut in documentation
671705 - lib: Fix deprecated use of g_value_get_char()
673956 - context pane won't resize properly
676007 - Configure doesn't work with dash
676689 - Switching from mp3 to ogg file cases Rhythmbox to stop playing
677079 - Remove markup from UI files
677464 - rhythmbox crashes on startup
677955 - Clicking under/above the time slider causes a pause of the slider and the time label
678138 - Opening properties dialog on MTP device that is not ready crashes Rhythmbox
678208 - Fix memory leak in rb_gst_media_type_matches_profile
678254 - Rhythmbox UI hangs when double clicking on visualisation window
678261 - --no-start option not working
678661 - context plugin uses insecure temporary directory
678923 - Clicking on the seek slider doesn't seek
678995 - Treeview in add podcast dialog lacks border
679222 - Untranslated strings in visualization plugin
679326 - Rhythmbox grilo plugin showing Optical Media when there is no optical media tray
680204 - Incorrectly displays the previous album cover on an album with no cover
680842 - preferences: don't free consumed floating GVariant
681018 - artsearch: try harder to find album art from musicbrainz
681178 - Rapidly switching between internet radio stations results in crash
681259 - audioscrobbler: use single image download for multiple data items
681924 - Notification Plugin: fix updating for Play/Pause
682309 - A bar appears to the left of the volume under some gtk themes
682404 - FTBS grilo plugin in latest git r7d5be17
682677 - cluebar content type buttons don't open app with item visible
682970 - podcast: Handle itms URLs if browser plugin is built
684142 - Last.fm "love track" button not present
684304 - [PATCH] Crash in monitor_entry_file()
684333 - grilo: fix reference counting
Translation updates:
- be, courtesy of Olya Matsuk
- de, courtesy of Christian Kirbach
- en_GB, courtesy of Bruce Cowan
- es, courtesy of Daniel Mustieles
- fa, courtesy of Arash Mousavi
- fi, courtesy of Jiri Grönroos
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Dieguez
- hu, courtesy of Gabor Kelemen
- id, courtesy of Andika Triwidada
- it, courtesy of Milo Casagrande
- ja, courtesy of Jiro Matsuzawa
- lt, courtesy of Aurimas Černius
- lv, courtesy of Rūdolfs Mazurs
- nb, courtesy of Kjartan Maraas
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Henrique P. Machado
- pt, courtesy of Filipe Gomes
- ru, courtesy of Yuri Myasoedov
- sl, courtesy of Matej Urbančič
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- te, courtesy of Praveen Illa
- th, courtesy of K Ratanatharathorn
- tr, courtesy of Muhammet Kara
- vi, courtesy of Nguyễn Thái Ngọc Duy
Overview of changes in Rhythmbox 2.97 "Blue Skied an' Clear"
=============================================================
* Uses libmusicbrainz4 for audio CD metadata
* New more compact header layout, including album art
* Deprecated artdisplay plugin
* Fixed buffering for network streams
* Configurable encoding settings for the library,
using GStreamer presets or simple quality settings
* Doesn't preserve mtime on metadata updates
* Fixed audio CD extraction speed
* New podcast subscription interface, including iTunes
and Miroguide searching and auditioning before
subscription
Bugs fixed:
338452 - No menu item to toggle time slider visibility
343660 - Play controls waste space
344595 - song_position_slider_hidden not used on startup
419914 - Toggle elapsed time display style
447082 - move progress bar to the right of toolbar to preserve space
526838 - Drag and drop artwork won't accept images from browsers
540726 - Add a button to hide Cover art
608295 - Tooltips can hide important information
612274 - Cover Art Transitions are not smooth
635895 - UI: button order should be back, play, next
661217 - crash saving ipod playlists
661341 - Cannot drag'n'drop album art
665402 - Tooltips in toolbar obscure artist and song title
666010 - Disable downloading of cover art whilst showing embedded cover art
666066 - Crash everytime I start rhythmbox
668262 - low letters cut off at the bottom in "Now playing" song title
668395 - use libmusicbrainz4 for better metadata for multi-disc albums
668402 - Cover image not scaled correctly when side pane width changes
671706 - build: Remove use of -Werror
671839 - .gitignore: Add widgets/test-uri-dialog
671840 - Fix setting multiple tags with different values
671950 - typo in artsearch plugin
672084 - Preferences for Magnatune plugin crashes Rhythmbox
672198 - "Watch my library for new files" is broken
672410 - MPRIS playlists are not implemented correctly
672412 - missing libxml2 dependency
673799 - Hint box blocks track title
674897 - rb-client should use mpris.length to get duration
675345 - Unable to configure quality of preferred format
676860 - External native plugins FTBFS due to header that is not shipped
677318 - rhythmbox-client --set-rating does not work
Translation updates:
- ar, courtesy of Ibrahim Saed
- bg, courtesy of Alexander Shopov
- ca, courtesy of Joan Duran
- cs, courtesy of Marek Černocký
- de, courtesy of Christian Kirbach
- en_GB, courtesy of Bruce Cowan
- es, courtesy of Daniel Mustieles
- fr, courtesy of Bruno Brouard
- gl, courtesy of Fran Dieguez
- hu, courtesy of Gabor Kelemen
- id, courtesy of Andika Triwidada
- it, courtesy of Luca Ferretti
- ja, courtesy of Kentaro KAZUHAMA
- lt, courtesy of Aurimas Černius
- lv, courtesy of Rūdolfs Mazurs
- pl, courtesy of Piotr Drąg
- sl, courtesy of Matej Urbančič
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- sv, courtesy of Daniel Nylander
- te, courtesy of Praveen Illa
- zh_CN, courtesy of YunQiang Su
Overview of changes in Rhythmbox 2.96 "Spanish Air"
====================================================
* Revived Magnatune plugin
* Better handling of non-media files
* dbus media server plugin improved again
Bugs fixed:
454247 - rhythmbox audio CD related crash
622874 - Migrate from dbus-glib to GDBus
644045 - Clean extra white space on title/artist in TerraParser.py
654637 - Jamendo and Magnatune plugins are broken
661957 - Magnatune plugin crashes Rhythmbox on Fedora 16
663353 - Add Radio Paradise
667971 - new splash screen for Magnatune
668864 - fails to save edited lyrics
670666 - rhythmbox-metadata crash in connection_closed_cb
670772 - crashes when trying to sync ipod
671379 - crashes copying files to media player
Translation updates:
- ar, courtesy of Ibrahim Saed
- be, courtesy of Olya Matsuk
- bg, courtesy of Alexander Shopov
- ca, courtesy of Gil Forcada
- cs, courtesy of Marek Černocký
- de, courtesy of Mario Blättermann
- eo, courtesy of Kristjan SCHMIDT
- es, courtesy of Daniel Mustieles
- fr, courtesy of Claude Paroz
- gl, courtesy of Fran Dieguez
- hu, courtesy of Gabor Kelemen
- it, courtesy of Luca Ferretti
- lt, courtesy of Aurimas Černius
- lv, courtesy of Peteris Krisjanis
- nb, courtesy of Kjartan Maraas
- pl, courtesy of Piotr Drąg
- pt_BR, courtesy of Djavan Fagundes
- sl, courtesy of Matej Urbančič
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- sv, courtesy of Daniel Nylander
- te, courtesy of Praveen Illa
- uk, courtesy of Korostil Daniel
- zh_HK, courtesy of Cheng-Chia Tseng
- zh_TW, courtesy of Cheng-Chia Tseng
Overview of changes in Rhythmbox 2.95 "In Mind"
================================================
* GTK+ 3, GObject introspection, GNOME 3 compatible
* New album art database
* Grilo plugin for UPNP and Jamendo
* Rewritten visualization plugin (using clutter)
* First steps in redesigning some parts of the UI that sorely need it
* New encoding profile system
* Plugins now based on libpeas
* Much improved dbus media server plugin
Bugs fixed:
160966 - Add "Comment" field as a criteria for automatically updating playlists
362876 - Problem editing APE tags in mp3s
424629 - handle multiple id3 tag sets better
427592 - ctrl+f for search bar
439893 - No warning about unsupported formats
446882 - use id3v2.3
458806 - Get rid of visualization modes
458816 - Is the visualization pop up really needed?
481321 - rhythmbox wakes up the dbus daemon every second
489097 - Wrong adjectives are used to describe visualization quality
503383 - A better place for the browser toggle
503586 - [upnp] export the share with an easier identifiable name
504415 - [upnp] display the content of some other UPnP server in the (hierarchical) exported form
520209 - transcoding should use easy codec installation when required
522254 - attempt to preserve file permission when editing tags
522256 - rhythmbox volume control lags
588586 - Activated encoding profile doesn't show up in "Preferred Format" drop down box
593186 - arch-independent files installed in $plugindir
594474 - Playlists are not exported over UPNP
594516 - Rhythmbox album art is blurred in notification bubbles
598764 - Rhythmbox should not play games with desktops
600122 - wrong shortcut for Show / Hide the Queue Sidebar
615096 - Quality of flac flike changes from "Lossless" to "Unknown" when it has a (cover) image embedded
619926 - Add support for MediaServerSpec Interface on DBUS
625892 - Port to GSettings
626236 - Migrate from PyGTK to PyGObject introspection-based bindings
628559 - MTP plugin claims my camera, blocking me from using it as a camera
633556 - libgnome-media-profiles has split from gnome-media
634858 - Rhythmbox does not show covers which are embedded into ID3 Tag
634957 - Lyrics plugin works, but context pane does not show lyrics.
639983 - Unable to install 13.3 on Ubuntu Maverick
640000 - Undefined 'ulong' type
640021 - Segfault during dacp pairing process.
640915 - Album art is displayed, but can't be opened
641352 - build failure due missing brasero-media.h
641417 - DAAP browse crashes rhythmbox with SIGABRT
641970 - crash in g_assertion_message_expr, split_query_by_disjunctions
642051 - Update for the Zeitgeist plugin
642614 - Default stations list contains some that are offline
642836 - shell: Add a way to start-up with plugins disabled
643165 - Podcast avoidance code doesn't work
644585 - Play queue is cleared on exit
645015 - Crash in g_object_unref, image_download_cb
645145 - crash on track switch after disabling status icon
645577 - Theme tweaks
645703 - error dialog at startup due to failing cover art plugin
645812 - Port to libpeas
645905 - Add missing #include "config.h" to make sure translations work
646239 - rhythmbox.pc references gtk 2
646405 - sometimes playback is not advanced to the next song
647032 - When clicking on "MIssing files" I get crash
647050 - Date translations will fail for a number of languages
647549 - Typo in rhythbox daap plugin causes build to fail
647775 - Zeitgeist plugins throws error
648225 - Artwork displayed when playing back mp3 picks first APIC found, not type "Cover (front)"
648956 - Deleted internet radio stations reappear when restarting Rhythmbox
649017 - Make PeasGtkPluginManager expand with plugins dialog
649019 - Add missing key 'sourcelist-hidden' to org.gnome.rhythmbox schema
649020 - RB fails to start with multiple library locations set
649224 - crash in Rhythmbox: Quit from menu after pre...
649231 - Crash in rb_station_properties_dialog_get_current_entry
649288 - DAAP Client cannot connect on non-standard ports
650043 - Device property dialog doesn't display volume usage
650191 - don't start after changing the display order of tracks
650848 - Remove libmusicbrainz option
650919 - sync reports incorrect number of files to add
650920 - syncing won't remove file from device
651198 - last/libre.fm data lists (i.e. Recent Tracks) do not resize correctly
651201 - Rhythmbox transcodes AAC (.m4a) to MP3 even when target device supports AAC
651852 - Play/Pause/Previous Missing from gnome shell notification
652488 - fixes for some UI glitches
652964 - Segfault when RBAudioscrobbler finalizes and queue needs saved
653187 - [im-status] 'ascii' codec can't decode byte outside range(128)
653900 - Rhythmbox does not copy m4a files to iPod
654357 - IM Status plugin fails to load
655760 - Toolbar reappears after programme restart
656759 - configure doesn't indicate whether or not the visualiser plugin is being built
657119 - Rhythmbox Lyrics Plugin Problem
657126 - Current git crashes just refreshing library
657185 - Rhythmbox crashes when attempting to extract a CD
658363 - MP3 player properties window makes rhythmbox crash
658801 - ngettext (Plural forms) needed for "Only showing %d results"
658917 - fix gsettings.m4 to properly install schema files on BSD systems
659261 - Grilo plugin try to clear the search_entry even if it did not create one
659467 - Missing plural handling for "%d tracks"
659508 - Visualizer plugin does not install its data file in the right directory
660351 - add pygobject 3.0 support
660775 - Rhythmbox has serious disk usage when changing volume.
661330 - Album Art plugin makes Rhythmbox crash on some files
661700 - rhythmbox fails to inhibit/uninhibit the gnome-session while playing a file.
661806 - Can't extract to FLAC format on Fedora 16
662146 - rhythmbox play button points backwards
662448 - artist/album browser not shown after returning from compact mode
662641 - Playlist for last.fm radios doesn't show artist, album and duration
663354 - No keyboard shortcut to give search box focus
663469 - Python plugins are not internationalized
663810 - rhythmbox crashed with SIGSEGV in rb_playlist_manager_get_playlists()
664680 - Can't change Library name for DAAP Music sharing
664831 - Failed to link new stream into GStreamer pipeline
666087 - lyrics plugin fails to load cached files
666338 - Clicking on DAAP share causes UI to fail
666668 - unbreak installation after CoverArtDatabase.py got removed
666773 - Untranslated strings in the audioscrobbler plugin
666894 - Rhythmbox dies with signal SIGINT interrupt
667014 - magnatune: icon missing from the tarball generated from master
667132 - [im-status] IM-status plugin fails to update status
667139 - broken DBus method PlaylistManager.GetPlaylists
667778 - Crash when playing an audio file
Translation updates:
- be, courtesy of Olya Matsuk
- bg, courtesy of Alexander Shopov
- ca, courtesy of Gil Forcada
- cs, courtesy of Marek Černocký
- da, courtesy of Byrial Ole Jensen
- de, courtesy of Christian Kirbach
- en_GB, courtesy of Bruce Cowan
- eo, courtesy of Kristjan SCHMIDT
- es, courtesy of Daniel Mustieles
- et, courtesy of Mattias Põldaru
- eu, courtesy of Iñaki Larrañaga Murgoitio
- fi, courtesy of Timo Jyrinki