-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog0.7.old
3628 lines (2594 loc) · 128 KB
/
ChangeLog0.7.old
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
# This changelog is no longer used.
2004-01-12 17:58:38 GMT Colin Walters <walters@verbum.org> patch-133
Summary:
fix compilation with G_DISABLE_ASSERT
Revision:
rhythmbox--mainline--0.7--patch-133
modified files:
ChangeLog rhythmdb/rhythmdb-tree.c
2004-01-12 09:50:49 GMT Colin Walters <walters@verbum.org> patch-132
Summary:
restore internet radio metadata
Revision:
rhythmbox--mainline--0.7--patch-132
modified files:
ChangeLog lib/rb-marshal.list player/Makefile.am
player/rb-player-gst.c player/rb-player.h
shell/rb-shell-player.c
2004-01-12 07:18:03 GMT Colin Walters <walters@verbum.org> patch-131
Summary:
bust up massive junk regexp into separate .arch-inventory files
Revision:
rhythmbox--mainline--0.7--patch-131
new files:
.arch-ids/.arch-inventory.id .arch-inventory
component/.arch-ids/.arch-inventory.id
component/.arch-inventory corba/.arch-ids/.arch-inventory.id
corba/.arch-inventory data/.arch-ids/.arch-inventory.id
data/.arch-inventory data/art/.arch-ids/.arch-inventory.id
data/art/.arch-inventory
data/glade/.arch-ids/.arch-inventory.id
data/glade/.arch-inventory
data/ui/.arch-ids/.arch-inventory.id data/ui/.arch-inventory
help/.arch-ids/.arch-inventory.id help/.arch-inventory
help/C/.arch-ids/.arch-inventory.id help/C/.arch-inventory
iradio/.arch-ids/.arch-inventory.id iradio/.arch-inventory
lib/.arch-ids/.arch-inventory.id lib/.arch-inventory
metadata/.arch-ids/.arch-inventory.id metadata/.arch-inventory
metadata/monkey-media/.arch-ids/.arch-inventory.id
metadata/monkey-media/.arch-inventory
metadata/monkey-media/stream-info-impl/.arch-ids/.arch-inventory.id
metadata/monkey-media/stream-info-impl/.arch-inventory
metadata/monkey-media/stream-info-impl/id3-vfs/.arch-ids/.arch-inventory.id
metadata/monkey-media/stream-info-impl/id3-vfs/.arch-inventory
player/.arch-ids/.arch-inventory.id player/.arch-inventory
po/.arch-ids/.arch-inventory.id po/.arch-inventory
rhythmdb/.arch-ids/.arch-inventory.id rhythmdb/.arch-inventory
shell/.arch-ids/.arch-inventory.id shell/.arch-inventory
sources/.arch-ids/.arch-inventory.id sources/.arch-inventory
tests/.arch-ids/.arch-inventory.id tests/.arch-inventory
widgets/.arch-ids/.arch-inventory.id widgets/.arch-inventory
modified files:
ChangeLog {arch}/=tagging-method
2004-01-12 06:42:30 GMT Colin Walters <walters@verbum.org> patch-130
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.7--patch-130
modified files:
ChangeLog po/ChangeLog po/ko.po
2004-01-11 08:42:17 GMT Colin Walters <walters@verbum.org> patch-129
Summary:
autoconf test for GTK+ 2.3, change ifdefs for filechooser appropriately
Revision:
rhythmbox--mainline--0.7--patch-129
modified files:
ChangeLog configure.ac lib/rb-dialog.c shell/rb-shell.c
2004-01-11 08:29:29 GMT Colin Walters <walters@verbum.org> patch-128
Summary:
new GtkFileChooser stuff (Sriram Ramkrishna)
Revision:
rhythmbox--mainline--0.7--patch-128
Patches applied:
* sri@aracnet.com--2003/rhythmbox--mainline--0.7--patch-3
tag of walters@rhythmbox.org--2003b/rhythmbox--mainline--0.7--patch-118
* sri@aracnet.com--2003/rhythmbox--mainline--0.7--patch-4
Use GtkFileChooser dialog boxes
* sri@aracnet.com--2003/rhythmbox--mainline--0.7--patch-5
Fix indentations. <sigh>
* sri@aracnet.com--2003/rhythmbox--mainline--0.7--patch-6
Did some re-ordering of the ifdefs
modified files:
ChangeLog lib/rb-dialog.c shell/rb-shell.c
new patches:
sri@aracnet.com--2003/rhythmbox--mainline--0.7--patch-3
sri@aracnet.com--2003/rhythmbox--mainline--0.7--patch-4
sri@aracnet.com--2003/rhythmbox--mainline--0.7--patch-5
sri@aracnet.com--2003/rhythmbox--mainline--0.7--patch-6
2004-01-11 07:38:17 GMT Colin Walters <walters@verbum.org> patch-127
Summary:
playback order fixes, other misc fixes (Jeffrey Yasskin)
Revision:
rhythmbox--mainline--0.7--patch-127
Patches applied:
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-10
merge with walters
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-11
merge with walters
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-12
merge with OSX fixes
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-13
merge with walters
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-14
merge shuffle-random changes
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-25
Make default_has_{next,previous}
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-26
Factor common elements in random play orders into superclass RBRandomPlayOrder
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-27
Make RBShellPlayer explicitly notify the RBPlayOrder when the playing source changes, rather than having the RBPlayOrder connect to a property.
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-28
Pull common (mostly signal connection) code up to RBPlayOrder from subclasses
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-29
merge with mainline
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-30
merge with walters
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-31
merge iBook changes
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-32
Remove the cache for random because weights weren't being updated enough.
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-33
Make the random play order not cache the next entry because that causes songs to disappear from the history too quickly.
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-34
Remove play-order combo and replace it with the shuffle button again.
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-35
Fix some bugs in the shuffle play order
* jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-36
merge with mainline
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--osxfix--0.7--base-0
tag of jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-10
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--osxfix--0.7--patch-1
Fix compile on Mac OSX
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--base-0
tag of jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-29
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-1
merge with osxfix
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-2
Replace shuffle checkbox with play order dropdown
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-3
Implement Random by ranking and age
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-4
Add an entries-replaced signal to the entry-view and make play orders listen to that instead of RBSource::filter_changed.
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-5
Prevent the entries-replaced signal from firing when the view is merely resorted
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-6
Make RBHistory's owner deal with unrefing its contents so the contents can be a generic pointer. Also fix entry-view's resorting variable.
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-7
Convert the RBHistory to use a GSequence for storage.
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-8
Make shuffle maintain its original order as much as possible.
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-9
Make random faster
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-10
Add some g_return checks to public functions of RBHistory
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-11
Make random-equal-weights use the generic RBRandomPlayOrder base class.
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-12
Make RBRandomPlayOrder not permanently change its history in response to entry-view changes until the song changes.
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-13
Fix bugs which made the previous button return extraneous songs after the filter is changed.
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-14
Remove temporary_entry from RBShufflePlayOrder's private data and fix an RBHistory bug.
* jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-15
Make shuffle only commit changes when the playing song switches and make random's commit when the user double-clicks a song.
new files:
shell/rb-play-order-random-by-age-and-rating.c
shell/rb-play-order-random-by-age-and-rating.h
shell/rb-play-order-random-by-rating.c
shell/rb-play-order-random-by-rating.h
shell/rb-play-order-random.c shell/rb-play-order-random.h
modified files:
ChangeLog corba/Makefile.am data/rhythmbox.schemas
shell/Makefile.am shell/rb-history.c shell/rb-history.h
shell/rb-play-order-linear.c shell/rb-play-order-linear.h
shell/rb-play-order-random-by-age.c
shell/rb-play-order-random-by-age.h
shell/rb-play-order-random-equal-weights.c
shell/rb-play-order-random-equal-weights.h
shell/rb-play-order-shuffle.c shell/rb-play-order-shuffle.h
shell/rb-play-order.c shell/rb-play-order.h
shell/rb-shell-player.c shell/rb-shell-player.h
shell/rb-statusbar.c sources/rb-iradio-source.c
sources/rb-library-source.c widgets/rb-entry-view.c
widgets/rb-entry-view.h
new patches:
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-10
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-11
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-12
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-13
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.7--patch-14
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-25
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-26
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-27
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-28
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-29
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-30
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-31
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-32
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-33
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-34
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-35
jyasskin@mail.utexas.edu--2003/rhythmbox--shuffle-random--0.7--patch-36
jyasskin@mail.utexas.edu--valentine03/rhythmbox--osxfix--0.7--base-0
jyasskin@mail.utexas.edu--valentine03/rhythmbox--osxfix--0.7--patch-1
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--base-0
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-1
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-2
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-3
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-4
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-5
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-6
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-7
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-8
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-9
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-10
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-11
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-12
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-13
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-14
jyasskin@mail.utexas.edu--valentine03/rhythmbox--shuffle-random--0.7--patch-15
2004-01-11 07:22:19 GMT Colin Walters <walters@verbum.org> patch-126
Summary:
capitalize Folder
Revision:
rhythmbox--mainline--0.7--patch-126
modified files:
ChangeLog data/ui/rhythmbox-ui.xml
2004-01-10 22:42:52 GMT Colin Walters <walters@verbum.org> patch-125
Summary:
only sync metadata for _ENTRY_TYPE_SONG
Revision:
rhythmbox--mainline--0.7--patch-125
modified files:
ChangeLog rhythmdb/rhythmdb.c
2004-01-10 22:16:34 GMT Colin Walters <walters@verbum.org> patch-124
Summary:
delete all of iradio-initial.pls and add back a few known working stations
Revision:
rhythmbox--mainline--0.7--patch-124
modified files:
ChangeLog data/iradio-initial.pls
2004-01-09 15:14:00 GMT Colin Walters <walters@verbum.org> patch-123
Summary:
merge fix to g_sequence_ptr_is_begin from nautilus
Revision:
rhythmbox--mainline--0.7--patch-123
modified files:
ChangeLog lib/gsequence.c
2004-01-09 00:44:59 GMT Colin Walters <walters@verbum.org> patch-122
Summary:
merge from 0.6
Revision:
rhythmbox--mainline--0.7--patch-122
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-399
disable dashboard by default
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-400
remove checks for XSun, therefore no mmkeys with XSun
modified files:
ChangeLog configure.ac
new patches:
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-399
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-400
2004-01-09 00:36:48 GMT Colin Walters <walters@verbum.org> patch-121
Summary:
merge from 0.6
Revision:
rhythmbox--mainline--0.7--patch-121
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-396
rename some functions in rb-shell-player.h, attempt to fix corba bugs
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-397
always initialize artist/album in songinfo to avoid ORBit crash
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-398
when a propview is hidden, remove any query it implies
modified files:
ChangeLog shell/rb-play-order-random-by-age.c
shell/rb-play-order-random-equal-weights.c
shell/rb-play-order-shuffle.c shell/rb-play-order.c
shell/rb-shell-player.c shell/rb-shell-player.h
shell/rb-shell.c sources/rb-library-source.c
new patches:
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-396
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-397
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-398
2004-01-08 22:54:36 GMT Colin Walters <walters@verbum.org> patch-120
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.7--patch-120
new files:
po/.arch-ids/pl.po.id po/pl.po
removed files:
po/pl.po
modified files:
ChangeLog po/ChangeLog po/ca.po po/sr.po po/sr@Latn.po
2004-01-04 22:16:02 GMT Colin Walters <walters@verbum.org> patch-119
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.7--patch-119
modified files:
ChangeLog po/ChangeLog po/cs.po po/el.po po/es.po
2003-12-30 04:42:03 GMT Colin Walters <walters@verbum.org> patch-118
Summary:
add audio/x-flac as a known MIME type for FLAC
Revision:
rhythmbox--mainline--0.7--patch-118
modified files:
ChangeLog metadata/monkey-media/monkey-media.c
2003-12-30 00:54:08 GMT Colin Walters <walters@verbum.org> patch-117
Summary:
fix volume popup near the bottom of the screen (Johnathan Taylor)
Revision:
rhythmbox--mainline--0.7--patch-117
modified files:
ChangeLog widgets/rb-volume.c
2003-12-30 00:54:01 GMT Colin Walters <walters@verbum.org> patch-116
Summary:
fix bitrate label in song info dialog
Revision:
rhythmbox--mainline--0.7--patch-116
modified files:
ChangeLog data/glade/station-properties.glade
2003-12-29 23:50:41 GMT Colin Walters <walters@verbum.org> patch-115
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.7--patch-115
new files:
po/ga.po
modified files:
ChangeLog configure.ac po/ChangeLog po/tr.po
2003-12-29 23:47:41 GMT Colin Walters <walters@verbum.org> patch-114
Summary:
show time as Unknown if it is
Revision:
rhythmbox--mainline--0.7--patch-114
modified files:
ChangeLog widgets/rb-entry-view.c
2003-12-24 06:06:58 GMT Colin Walters <walters@verbum.org> patch-113
Summary:
don't attempt to commit metadata changes for loading entries
Revision:
rhythmbox--mainline--0.7--patch-113
modified files:
ChangeLog metadata/rb-metadata-gst.c rhythmdb/rhythmdb.c
2003-12-24 05:54:11 GMT Colin Walters <walters@verbum.org> patch-112
Summary:
make xine player work
Revision:
rhythmbox--mainline--0.7--patch-112
modified files:
ChangeLog player/rb-player-xine.c
2003-12-24 04:01:08 GMT Colin Walters <walters@verbum.org> patch-111
Summary:
add missing const
Revision:
rhythmbox--mainline--0.7--patch-111
modified files:
ChangeLog metadata/rb-metadata-mm.c
2003-12-24 01:27:29 GMT Colin Walters <walters@verbum.org> patch-110
Summary:
only enable log catching if debug mode is enabled
Revision:
rhythmbox--mainline--0.7--patch-110
modified files:
ChangeLog lib/rb-debug.c
2003-12-24 01:27:11 GMT Colin Walters <walters@verbum.org> patch-109
Summary:
add a bit of error handling
Revision:
rhythmbox--mainline--0.7--patch-109
modified files:
ChangeLog player/rb-player-gst.c
2003-12-23 22:52:49 GMT Colin Walters <walters@verbum.org> patch-108
Summary:
merge more tag writing bits from tags branch
Revision:
rhythmbox--mainline--0.7--patch-108
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-26
merge from mainline
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-27
attempt to synchronize metadata
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-28
squish memleak
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-29
attempt to handle multiple entries in song info dialog
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-30
don't sync metadata if dry-run is enabled
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-31
don't sync empty values, set labels unsensitive as necessary
modified files:
ChangeLog data/glade/song-info.glade rhythmdb/rhythmdb.c
shell/rb-shell.c widgets/rb-song-info.c
new patches:
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-26
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-27
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-28
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-29
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-30
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-31
2003-12-23 05:29:35 GMT Colin Walters <walters@verbum.org> patch-107
Summary:
ignore changes on disconnected models
Revision:
rhythmbox--mainline--0.7--patch-107
modified files:
ChangeLog rhythmdb/rhythmdb-query-model.c
2003-12-23 05:19:47 GMT Colin Walters <walters@verbum.org> patch-106
Summary:
fix up bitrate in iradio properties dialog
Revision:
rhythmbox--mainline--0.7--patch-106
modified files:
ChangeLog iradio/rb-station-properties-dialog.c
2003-12-23 05:19:33 GMT Colin Walters <walters@verbum.org> patch-105
Summary:
unset temporary gvalue
Revision:
rhythmbox--mainline--0.7--patch-105
modified files:
ChangeLog rhythmdb/rhythmdb.c
2003-12-23 05:14:24 GMT Colin Walters <walters@verbum.org> patch-104
Summary:
actually copy old gvalue for changed signal
Revision:
rhythmbox--mainline--0.7--patch-104
modified files:
ChangeLog rhythmdb/rhythmdb.c
2003-12-23 05:04:29 GMT Colin Walters <walters@verbum.org> patch-103
Summary:
merge tag writing bits from tags branch
Revision:
rhythmbox--mainline--0.7--patch-103
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-16
make info dialog data writable, first cut at changing props
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-17
merge from mainline
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-18
make tracknum editing work, make artist editable
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-19
merge from mainline
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-20
implement atomic vfs temp file creation
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-21
minor renames
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-22
much hackery on metadata writing; doesn't work yet due to gst borkage...
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-23
hack hack hack
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-24
she compiles...
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-25
actually rename file into place
modified files:
ChangeLog data/glade/song-info.glade lib/rb-file-helpers.c
lib/rb-file-helpers.h metadata/rb-metadata-gst.c
metadata/rb-metadata.h rhythmdb/rhythmdb.c
widgets/rb-song-info.c widgets/rb-song-info.h
new patches:
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-16
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-17
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-18
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-19
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-20
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-21
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-22
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-23
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-24
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-25
2003-12-22 16:20:49 GMT Colin Walters <walters@verbum.org> patch-102
Summary:
merge from 0.6
Revision:
rhythmbox--mainline--0.7--patch-102
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-387
dist dashboard.c
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-389
make file dialogs resizable
modified files:
ChangeLog lib/rb-dialog.c shell/Makefile.am
new patches:
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-387
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-389
2003-12-22 06:17:40 GMT Colin Walters <walters@verbum.org> patch-101
Summary:
merge from 0.6
Revision:
rhythmbox--mainline--0.7--patch-101
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-373
gcc-2.95 compile fixes (Kaj-Michael Lang)
modified files:
ChangeLog shell/rb-play-order-random-by-age.c
shell/rb-play-order-random-equal-weights.c
shell/rb-play-order-shuffle.c shell/rb-play-order.c
new patches:
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-373
2003-12-22 05:15:02 GMT Colin Walters <walters@verbum.org> patch-100
Summary:
be sure to zero allocated structure
Revision:
rhythmbox--mainline--0.7--patch-100
modified files:
ChangeLog rhythmdb/rhythmdb-query-model.c
2003-12-22 05:14:47 GMT Colin Walters <walters@verbum.org> patch-99
Summary:
hardcode mad for now with gst
Revision:
rhythmbox--mainline--0.7--patch-99
modified files:
ChangeLog player/rb-player-gst.c
2003-12-22 05:06:12 GMT Colin Walters <walters@verbum.org> patch-98
Summary:
fix queue signal, always use spider if using gst metadata
Revision:
rhythmbox--mainline--0.7--patch-98
modified files:
ChangeLog player/rb-player-gst.c
2003-12-22 00:00:32 GMT Colin Walters <walters@verbum.org> patch-97
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.7--patch-97
modified files:
ChangeLog po/ChangeLog po/POTFILES.in po/no.po po/sr.po
po/sr@Latn.po
2003-12-21 23:59:02 GMT Colin Walters <walters@verbum.org> patch-96
Summary:
merge from rhythmdb
Revision:
rhythmbox--mainline--0.7--patch-96
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--base-0
tag of walters@rhythmbox.org--2003b/rhythmbox--mainline--0.7--patch-88
* walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-1
have entry change signal include propid and old/new values
* walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-2
merge from mainline
* walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-3
fix gvalue init, handle new changed sig in shell
* walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-4
add missing break to update switch (!)
* walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-5
fix gvalue leak
* walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-6
handle new change signal in property model
modified files:
ChangeLog lib/rb-marshal.list
rhythmdb/rhythmdb-property-model.c
rhythmdb/rhythmdb-query-model.c
rhythmdb/rhythmdb-query-model.h rhythmdb/rhythmdb-tree.c
rhythmdb/rhythmdb.c rhythmdb/rhythmdb.h shell/rb-shell.c
new patches:
walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--base-0
walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-1
walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-2
walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-3
walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-4
walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-5
walters@rhythmbox.org--2003b/rhythmbox--rhythmdb--0.7--patch-6
2003-12-21 19:50:23 GMT Colin Walters <walters@verbum.org> patch-95
Summary:
merge from 0.6
Revision:
rhythmbox--mainline--0.7--patch-95
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-385
make dashboard less verbose
modified files:
ChangeLog shell/dashboard.c
new patches:
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-385
2003-12-21 16:32:32 GMT Colin Walters <walters@verbum.org> patch-94
Summary:
merge from 0.6
Revision:
rhythmbox--mainline--0.7--patch-94
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-382
fix retrying on idle actions
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-383
really fix non-pkgconfig id3tag configure
modified files:
ChangeLog configure.ac shell/rb-shell.c
new patches:
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-382
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-383
2003-12-20 16:37:42 GMT Colin Walters <walters@verbum.org> patch-93
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.7--patch-93
new files:
po/ar.po
modified files:
ChangeLog configure.ac po/ChangeLog
2003-12-20 16:32:15 GMT Colin Walters <walters@verbum.org> patch-92
Summary:
merge from 0.6
Revision:
rhythmbox--mainline--0.7--patch-92
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-379
don't depend on id3 pkgconfig file, add configury check for id3_frame_field
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-381
check a bit better for id3tag
modified files:
ChangeLog configure.ac
new patches:
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-379
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-381
2003-12-20 00:34:53 GMT Colin Walters <walters@verbum.org> patch-91
Summary:
merge dashboard from 0.6
Revision:
rhythmbox--mainline--0.7--patch-91
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-378
add dashboard support (Lee Willis)
new files:
shell/dashboard.c
modified files:
ChangeLog configure.ac shell/Makefile.am
shell/rb-shell-player.c
new patches:
walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-378
2003-12-19 22:51:16 GMT Colin Walters <walters@verbum.org> patch-90
Summary:
use files in build directory first
Revision:
rhythmbox--mainline--0.7--patch-90
modified files:
ChangeLog configure.ac data/glade/song-info.glade
lib/rb-file-helpers.c
2003-12-19 19:50:14 GMT Colin Walters <walters@verbum.org> patch-89
Summary:
merge from tags
Revision:
rhythmbox--mainline--0.7--patch-89
Patches applied:
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-14
make song info dialog work again
* walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-15
merge from mainline
modified files:
ChangeLog data/glade/song-info.glade widgets/rb-song-info.c
new patches:
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-14
walters@rhythmbox.org--2003b/rhythmbox--tags--0.7--patch-15
2003-12-19 13:39:56 GMT Colin Walters <walters@verbum.org> patch-88
Summary:
xine configury fixes, avoids crash (Bastien Nocera)
Revision:
rhythmbox--mainline--0.7--patch-88