forked from GNOME/rhythmbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog0.7
5575 lines (3881 loc) · 190 KB
/
ChangeLog0.7
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
# do not edit -- automatically generated by arch changelog
# arch-tag: [email protected]/rhythmbox--main--0.7
#
2004-04-17 03:15:55 GMT Benjamin Otte <[email protected]> patch-253
Summary:
fix random memleaks
Revision:
rhythmbox--main--0.7--patch-253
modified files:
ChangeLog shell/rb-shell-player.c shell/rb-source-header.c
shell/rb-tray-icon.c
2004-04-16 18:05:14 GMT Colin Walters <[email protected]> patch-252
Summary:
release 0.8.0
Revision:
rhythmbox--main--0.7--patch-252
modified files:
ChangeLog configure.ac
2004-04-16 14:55:51 GMT Colin Walters <[email protected]> patch-251
Summary:
make auto rate handle multiple entries
Revision:
rhythmbox--main--0.7--patch-251
modified files:
ChangeLog widgets/rb-song-info.c
2004-04-16 14:29:02 GMT Colin Walters <[email protected]> patch-250
Summary:
reinstate debug bits
Revision:
rhythmbox--main--0.7--patch-250
modified files:
ChangeLog shell/main.c
2004-04-16 02:34:51 GMT Benjamin Otte <[email protected]> patch-249
Summary:
allow player to release tha audio sink when GStreamer supports it
Revision:
rhythmbox--main--0.7--patch-249
modified files:
ChangeLog player/rb-player-gst.c
2004-04-16 02:18:39 GMT Colin Walters <[email protected]> patch-248
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-248
modified files:
ChangeLog po/ChangeLog po/en_CA.po po/pt_BR.po
2004-04-16 00:40:43 GMT Colin Walters <[email protected]> patch-247
Summary:
really fix clipboard by turning syncing into an idle polling function
Revision:
rhythmbox--main--0.7--patch-247
modified files:
ChangeLog shell/rb-shell-clipboard.c
2004-04-16 00:00:58 GMT Colin Walters <[email protected]> patch-246
Summary:
only sync clipboard if we had entries to begin with
Revision:
rhythmbox--main--0.7--patch-246
modified files:
ChangeLog shell/rb-shell-clipboard.c
2004-04-15 23:03:33 GMT Colin Walters <[email protected]> patch-245
Summary:
attach clipboard signal handlers only after object is fully constructed
Revision:
rhythmbox--main--0.7--patch-245
modified files:
ChangeLog shell/rb-shell-clipboard.c
2004-04-15 20:52:02 GMT Colin Walters <[email protected]> patch-244
Summary:
fix version reference
Revision:
rhythmbox--main--0.7--patch-244
modified files:
ChangeLog README
2004-04-15 20:44:09 GMT Colin Walters <[email protected]> patch-243
Summary:
fix accidentally reverted schemas change
Revision:
rhythmbox--main--0.7--patch-243
modified files:
ChangeLog data/rhythmbox.schemas
2004-04-15 20:41:13 GMT Colin Walters <[email protected]> patch-242
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-242
new files:
po/.arch-ids/pa.po.id po/pa.po
modified files:
ChangeLog configure.ac data/rhythmbox.schemas po/POTFILES.skip
po/cy.po widgets/update-from-egg.sh
2004-04-15 20:33:43 GMT Colin Walters <[email protected]> patch-241
Summary:
Sync from CVS
Revision:
rhythmbox--main--0.7--patch-241
modified files:
ChangeLog po/ChangeLog po/ca.po po/cs.po po/hu.po po/lt.po
po/no.po po/sr.po po/[email protected] po/sv.po
2004-04-15 20:24:17 GMT Colin Walters <[email protected]> patch-240
Summary:
fix default source
Revision:
rhythmbox--main--0.7--patch-240
modified files:
ChangeLog data/rhythmbox.schemas
2004-04-14 03:28:40 GMT Colin Walters <[email protected]> patch-239
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-239
modified files:
ChangeLog po/ChangeLog po/en_GB.po
2004-04-14 03:27:22 GMT Colin Walters <[email protected]> patch-238
Summary:
don't bother with all this translation hackery since the original error isn't translated much
Revision:
rhythmbox--main--0.7--patch-238
modified files:
ChangeLog metadata/rb-metadata-gst.c
2004-04-14 03:06:46 GMT Colin Walters <[email protected]> patch-237
Summary:
actually put file type in message
Revision:
rhythmbox--main--0.7--patch-237
modified files:
ChangeLog metadata/rb-metadata-gst.c
2004-04-14 00:53:13 GMT Colin Walters <[email protected]> patch-236
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-236
modified files:
ChangeLog po/ChangeLog po/ca.po po/da.po po/nl.po po/pt.po
po/pt_BR.po
2004-04-14 00:50:57 GMT Colin Walters <[email protected]> patch-235
Summary:
add better error message for missing plugin, and evil translation hack to avoid breaking string freeze
Revision:
rhythmbox--main--0.7--patch-235
modified files:
ChangeLog metadata/rb-metadata-gst.c
2004-04-13 22:16:16 GMT Colin Walters <[email protected]> patch-234
Summary:
s/gst-launch/gst-launch-0.8/
Revision:
rhythmbox--main--0.7--patch-234
modified files:
ChangeLog README
2004-04-13 13:17:45 GMT Colin Walters <[email protected]> patch-233
Summary:
automatically disable sound for now (Miguel Coca)
Revision:
rhythmbox--main--0.7--patch-233
modified files:
ChangeLog shell/main.c
2004-04-13 12:58:20 GMT Colin Walters <[email protected]> patch-232
Summary:
change accelerator on Album back to A temporarily to fix string freeze
Revision:
rhythmbox--main--0.7--patch-232
modified files:
ChangeLog data/glade/song-info-multiple.glade
2004-04-13 12:49:21 GMT Colin Walters <[email protected]> patch-231
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-231
modified files:
ChangeLog po/ChangeLog po/pl.po po/sv.po
2004-04-13 12:48:39 GMT Colin Walters <[email protected]> patch-230
Summary:
add song-info-multiple.glade to POTFILES, ignore .server.in file
Revision:
rhythmbox--main--0.7--patch-230
modified files:
ChangeLog po/POTFILES.in po/POTFILES.skip
2004-04-13 05:00:40 GMT Colin Walters <[email protected]> patch-229
Summary:
add debugging info
Revision:
rhythmbox--main--0.7--patch-229
modified files:
ChangeLog widgets/rb-header.c
2004-04-13 03:39:12 GMT Colin Walters <[email protected]> patch-228
Summary:
quote spaces with + in allmusic.com urls (yes, they are crack)
Revision:
rhythmbox--main--0.7--patch-228
modified files:
ChangeLog widgets/rb-header.c
2004-04-13 03:29:16 GMT Colin Walters <[email protected]> patch-227
Summary:
fix shuffle bonobo iface, handle a bonobo error condition better
Revision:
rhythmbox--main--0.7--patch-227
modified files:
ChangeLog shell/rb-shell.c
2004-04-13 03:03:31 GMT Colin Walters <[email protected]> patch-226
Summary:
handle invalid UTF-8 when parsing iradio stations
Revision:
rhythmbox--main--0.7--patch-226
modified files:
ChangeLog sources/rb-iradio-source.c
2004-04-12 22:27:04 GMT Colin Walters <[email protected]> patch-225
Summary:
make file dialogs not local-only
Revision:
rhythmbox--main--0.7--patch-225
modified files:
ChangeLog lib/rb-dialog.c
2004-04-12 20:14:23 GMT Colin Walters <[email protected]> patch-224
Summary:
guard freeing hashtable ( ariano Suárez-Alvarez)
Revision:
rhythmbox--main--0.7--patch-224
modified files:
ChangeLog metadata/rb-metadata-gst.c
2004-04-12 19:46:27 GMT Colin Walters <[email protected]> patch-223
Summary:
fix sample pipeline in README, remove checks for 0.7 in configure
Revision:
rhythmbox--main--0.7--patch-223
modified files:
ChangeLog README configure.ac
2004-04-12 04:10:02 GMT Colin Walters <[email protected]> patch-222
Summary:
remove unused callbacks
Revision:
rhythmbox--main--0.7--patch-222
modified files:
ChangeLog shell/rb-shell.c
2004-04-12 03:20:06 GMT Colin Walters <[email protected]> patch-221
Summary:
attach db signal handlers only after query model is fully constructed
Revision:
rhythmbox--main--0.7--patch-221
modified files:
ChangeLog rhythmdb/rhythmdb-query-model.c
2004-04-12 03:19:05 GMT Colin Walters <[email protected]> patch-220
Summary:
fix typo
Revision:
rhythmbox--main--0.7--patch-220
modified files:
ChangeLog rhythmdb/rhythmdb-query-model.h
2004-04-12 02:26:48 GMT Colin Walters <[email protected]> patch-219
Summary:
move db load completion handler into idle function
Revision:
rhythmbox--main--0.7--patch-219
modified files:
ChangeLog shell/rb-shell.c
2004-04-12 00:53:02 GMT Colin Walters <[email protected]> patch-218
Summary:
remove quality column for now
Revision:
rhythmbox--main--0.7--patch-218
modified files:
ChangeLog data/glade/general-prefs.glade
shell/rb-shell-preferences.c sources/rb-iradio-source.c
sources/rb-library-source.c
2004-04-11 23:15:49 GMT Colin Walters <[email protected]> patch-217
Summary:
add zh_CN to ALL_LINGUAS
Revision:
rhythmbox--main--0.7--patch-217
modified files:
ChangeLog configure.ac
2004-04-11 21:51:51 GMT Colin Walters <[email protected]> patch-216
Summary:
boldify iradio properties labels
Revision:
rhythmbox--main--0.7--patch-216
modified files:
ChangeLog data/glade/station-properties.glade
iradio/rb-station-properties-dialog.c
2004-04-11 21:47:14 GMT Colin Walters <[email protected]> patch-215
Summary:
don't use automake 1.8 until we fix everything to not use mkinstalldirs
Revision:
rhythmbox--main--0.7--patch-215
modified files:
ChangeLog autogen.sh
2004-04-11 15:56:27 GMT Colin Walters <[email protected]> patch-214
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-214
new files:
po/.arch-ids/en_GB.po.id po/en_GB.po
modified files:
ChangeLog configure.ac po/ChangeLog po/en_CA.po po/sv.po
2004-04-10 13:11:34 GMT Colin Walters <[email protected]> patch-213
Summary:
more memleak fixes, player cleanups (Benjamin Otte)
Revision:
rhythmbox--main--0.7--patch-213
modified files:
ChangeLog player/rb-player-gst.c rhythmdb/rhythmdb.c
widgets/rb-tree-view.c
2004-04-09 20:53:36 GMT Colin Walters <[email protected]> patch-212
Summary:
always free changed entries (Benjamin Otte)
Revision:
rhythmbox--main--0.7--patch-212
modified files:
ChangeLog rhythmdb/rhythmdb.c
2004-04-09 14:45:21 GMT Colin Walters <[email protected]> patch-211
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-211
new files:
po/.arch-ids/pt_BR.po.id po/pt_BR.po
removed files:
po/pt_BR.po
modified files:
ChangeLog po/ChangeLog po/es.po po/nl.po
2004-04-08 19:13:44 GMT Colin Walters <[email protected]> patch-210
Summary:
display an error dialog if help files are not available
Revision:
rhythmbox--main--0.7--patch-210
modified files:
ChangeLog shell/rb-shell.c
2004-04-08 19:09:41 GMT Colin Walters <[email protected]> patch-209
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-209
modified files:
ChangeLog po/ChangeLog po/ca.po po/cs.po
2004-04-08 15:52:22 GMT Colin Walters <[email protected]> patch-208
Summary:
add code to guard against GConf error in rb-shell-player.c
Revision:
rhythmbox--main--0.7--patch-208
modified files:
ChangeLog shell/rb-shell-player.c
2004-04-06 22:48:47 GMT Colin Walters <[email protected]> patch-207
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-207
modified files:
ChangeLog po/ChangeLog po/id.po po/lt.po
2004-04-06 22:45:37 GMT Colin Walters <[email protected]> patch-206
Summary:
revert back to using "Music Player" as Name until GNOME supports GenericName
Revision:
rhythmbox--main--0.7--patch-206
modified files:
ChangeLog data/rhythmbox.desktop.in
2004-04-06 03:38:32 GMT Colin Walters <[email protected]> patch-205
Summary:
merge from me: add new rb_ask_file_save API, use it when saving playlist
Revision:
rhythmbox--main--0.7--patch-205
Patches applied:
* [email protected]/rhythmbox--mainline--0.7--patch-261
merge from main
* [email protected]/rhythmbox--mainline--0.7--patch-262
add new rb_ask_file_save API, use it when saving playlist
modified files:
ChangeLog lib/rb-dialog.c lib/rb-dialog.h
shell/rb-playlist-manager.c
new patches:
[email protected]/rhythmbox--mainline--0.7--patch-261
[email protected]/rhythmbox--mainline--0.7--patch-262
2004-04-05 14:18:30 GMT Colin Walters <[email protected]> patch-204
Summary:
drag and drop fixes, squash query buglet
Revision:
rhythmbox--main--0.7--patch-204
Patches applied:
* [email protected]/rhythmbox--mainline--0.7--patch-257
merge from main
* [email protected]/rhythmbox--mainline--0.7--patch-258
merge from main
* [email protected]/rhythmbox--mainline--0.7--patch-259
hack up drag and drop...sigh
* [email protected]/rhythmbox--mainline--0.7--patch-260
always push matched entries into queue
modified files:
ChangeLog lib/rb-tree-dnd.c rhythmdb/rhythmdb-query-model.c
rhythmdb/rhythmdb-tree.c sources/rb-sourcelist-model.c
new patches:
[email protected]/rhythmbox--mainline--0.7--patch-257
[email protected]/rhythmbox--mainline--0.7--patch-258
[email protected]/rhythmbox--mainline--0.7--patch-259
[email protected]/rhythmbox--mainline--0.7--patch-260
2004-04-05 00:24:45 GMT Colin Walters <[email protected]> patch-203
Summary:
add audio/x-mod
Revision:
rhythmbox--main--0.7--patch-203
modified files:
ChangeLog metadata/rb-metadata-gst.c
2004-04-05 00:17:53 GMT Colin Walters <[email protected]> patch-202
Summary:
ignore .Trash directories (Jonathan Blandford)
Revision:
rhythmbox--main--0.7--patch-202
modified files:
ChangeLog lib/rb-file-helpers.c lib/rb-playlist.c
2004-04-03 23:49:29 GMT Colin Walters <[email protected]> patch-201
Summary:
rewrite playlist saving to just write out xml in separate thread
Revision:
rhythmbox--main--0.7--patch-201
modified files:
ChangeLog shell/rb-playlist-manager.c
shell/rb-playlist-manager.h shell/rb-shell.c
sources/rb-playlist-source.c
2004-04-03 23:48:39 GMT Colin Walters <[email protected]> patch-200
Summary:
update README for new gst pipeline syntax
Revision:
rhythmbox--main--0.7--patch-200
modified files:
ChangeLog README
2004-04-03 21:39:35 GMT Colin Walters <[email protected]> patch-199
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-199
new files:
po/.arch-ids/en_CA.po.id po/en_CA.po
modified files:
ChangeLog configure.ac po/ChangeLog
2004-04-02 22:49:41 GMT Colin Walters <[email protected]> patch-198
Summary:
release 0.7.2
Revision:
rhythmbox--main--0.7--patch-198
modified files:
ChangeLog configure.ac
2004-04-02 22:41:46 GMT Colin Walters <[email protected]> patch-197
Summary:
upd NEWS
Revision:
rhythmbox--main--0.7--patch-197
modified files:
ChangeLog NEWS
2004-04-02 22:39:46 GMT Colin Walters <[email protected]> patch-196
Summary:
3rd GtkFileChooser attempt...
Revision:
rhythmbox--main--0.7--patch-196
modified files:
ChangeLog shell/rb-playlist-manager.c
2004-04-02 22:37:31 GMT Colin Walters <[email protected]> patch-195
Summary:
fix another GtkFileChooser buglet
Revision:
rhythmbox--main--0.7--patch-195
modified files:
ChangeLog shell/rb-playlist-manager.c
2004-04-02 22:34:31 GMT Colin Walters <[email protected]> patch-194
Summary:
handle GtkFileChooser
Revision:
rhythmbox--main--0.7--patch-194
modified files:
ChangeLog shell/rb-playlist-manager.c
2004-04-02 22:26:42 GMT Colin Walters <[email protected]> patch-193
Summary:
abort attempt to select file and dir simultaneously with gtk2.4
Revision:
rhythmbox--main--0.7--patch-193
modified files:
ChangeLog lib/rb-dialog.c lib/rb-dialog.h shell/rb-shell.c
2004-04-02 22:11:04 GMT Colin Walters <[email protected]> patch-192
Summary:
attempt to fix dialog API and impl
Revision:
rhythmbox--main--0.7--patch-192
modified files:
ChangeLog lib/rb-dialog.c lib/rb-dialog.h
shell/rb-playlist-manager.c shell/rb-shell.c
2004-04-02 21:24:08 GMT Colin Walters <[email protected]> patch-191
Summary:
upd NEWS
Revision:
rhythmbox--main--0.7--patch-191
modified files:
ChangeLog NEWS
2004-04-02 21:20:31 GMT Colin Walters <[email protected]> patch-190
Summary:
Update from CVS
Revision:
rhythmbox--main--0.7--patch-190
modified files:
ChangeLog po/ChangeLog po/da.po
2004-04-02 21:12:59 GMT Colin Walters <[email protected]> patch-189
Summary:
add application/x-ape to known music types
Revision:
rhythmbox--main--0.7--patch-189
modified files:
ChangeLog metadata/rb-metadata-gst.c
2004-04-01 20:40:51 GMT Colin Walters <[email protected]> patch-188
Summary:
upd NEWS
Revision:
rhythmbox--main--0.7--patch-188
modified files:
ChangeLog NEWS
2004-04-01 20:33:37 GMT Colin Walters <[email protected]> patch-187
Summary:
add --shuffle arg and make bonobo prop rw (James Willcox)
Revision:
rhythmbox--main--0.7--patch-187
modified files:
ChangeLog shell/main.c shell/rb-shell.c
2004-04-01 20:30:45 GMT Colin Walters <[email protected]> patch-186
Summary:
save rhythmdb 10 seconds after loading
Revision:
rhythmbox--main--0.7--patch-186
modified files:
ChangeLog shell/rb-shell.c
2004-04-01 03:53:44 GMT Colin Walters <[email protected]> patch-185
Summary:
actually install playlist saving thread reaper
Revision:
rhythmbox--main--0.7--patch-185
modified files:
ChangeLog shell/rb-playlist-manager.c
2004-04-01 03:52:59 GMT Colin Walters <[email protected]> patch-184
Summary:
disable periodic rhythmdb saving for now
Revision:
rhythmbox--main--0.7--patch-184
modified files:
ChangeLog shell/rb-shell.c
2004-03-31 19:41:48 GMT Colin Walters <[email protected]> patch-183
Summary:
upd NEWS
Revision:
rhythmbox--main--0.7--patch-183
modified files:
ChangeLog NEWS
2004-03-31 04:16:39 GMT Colin Walters <[email protected]> patch-182
Summary:
turn playlist entries into URLs if necessary
Revision:
rhythmbox--main--0.7--patch-182
modified files:
ChangeLog shell/rb-playlist-manager.c
2004-03-30 14:44:20 GMT David Dollar <[email protected]> patch-181
Summary:
squashed xine backend file-add bug
Revision:
rhythmbox--main--0.7--patch-181
Patches applied:
* [email protected]/rhythmbox--grepninja--0.7--patch-3
squashed xine backend file-add bug
modified files:
ChangeLog metadata/rb-metadata-mm.c
new patches:
[email protected]/rhythmbox--grepninja--0.7--patch-3
2004-03-30 13:41:49 GMT Colin Walters <[email protected]> patch-180
Summary:
play order cleanup: remove repeat GConf key, only export shuffle/repeat from RBShellPlayer
Revision:
rhythmbox--main--0.7--patch-180
This also fixes the notification of changes from RBShellPlayer.
TODO: fix up CORBA interface
modified files:
ChangeLog data/rhythmbox.schemas lib/rb-preferences.h
shell/rb-play-order-shuffle.c shell/rb-shell-player.c
shell/rb-shell-player.h shell/rb-statusbar.c
2004-03-30 06:06:43 GMT David Dollar <[email protected]> patch-179
Summary:
made iradio source take an entry-type property for easier inheritance
Revision:
rhythmbox--main--0.7--patch-179
Patches applied:
* [email protected]/rhythmbox--grepninja--0.7--patch-2
made iradio source take an entry-type property for easier inheritance
modified files:
ChangeLog sources/rb-iradio-source.c
new patches:
[email protected]/rhythmbox--grepninja--0.7--patch-2
2004-03-30 05:47:01 GMT David Dollar <[email protected]> patch-178
Summary:
made the previous button not 'start-over' for iradio sources, found and squashed xine metadata mime detection bugs
Revision:
rhythmbox--main--0.7--patch-178
Patches applied:
* [email protected]/rhythmbox--grepninja--0.7--base-0
tag of [email protected]/rhythmbox--main--0.7--patch-177
* [email protected]/rhythmbox--grepninja--0.7--patch-1
made the previous button not 'start-over' for iradio sources, found and squashed xine metadata mime detection bugs