-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog0.6
5026 lines (3267 loc) · 137 KB
/
ChangeLog0.6
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
# old changelog from 0.6
# arch-tag: old-automatic-ChangeLog--walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6
#
2003-11-11 20:55:51 GMT Colin Walters <walters@verbum.org> patch-294
Summary:
release 0.6.0
Revision:
rhythmbox--mainline--0.6--patch-294
modified files:
ChangeLog configure.ac
2003-11-11 19:43:10 GMT Colin Walters <walters@verbum.org> patch-293
Summary:
remove redundant entry from NEWS
Revision:
rhythmbox--mainline--0.6--patch-293
modified files:
ChangeLog NEWS
2003-11-11 19:34:03 GMT Colin Walters <walters@verbum.org> patch-292
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.6--patch-292
modified files:
ChangeLog po/ChangeLog po/cs.po po/cy.po po/sr.po
po/sr@Latn.po
renamed files:
po/sr.po
==> po/sr@Latn.po
po/sr@Latn.po
==> po/sr.po
2003-11-11 19:26:24 GMT Colin Walters <walters@verbum.org> patch-291
Summary:
don't hardcode opt scheduler
Revision:
rhythmbox--mainline--0.6--patch-291
modified files:
ChangeLog monkey-media/monkey-media.c
2003-11-11 19:22:10 GMT Colin Walters <walters@verbum.org> patch-290
Summary:
have album sort also sort by track, allow rating sort
Revision:
rhythmbox--mainline--0.6--patch-290
modified files:
ChangeLog widgets/rb-entry-view.c
2003-11-11 06:37:52 GMT Colin Walters <walters@verbum.org> patch-289
Summary:
more default iradio stations (harshy)
Revision:
rhythmbox--mainline--0.6--patch-289
Patches applied:
* harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-5
star-merge of walters sources
* harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-6
Arch update and iradio.pls update
modified files:
ChangeLog data/iradio-initial.pls
new patches:
harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-5
harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-6
2003-11-11 06:33:41 GMT Colin Walters <walters@verbum.org> patch-288
Summary:
revert version to 0.5.99
Revision:
rhythmbox--mainline--0.6--patch-288
modified files:
ChangeLog configure.ac
2003-11-10 22:08:18 GMT Colin Walters <walters@verbum.org> patch-287
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.6--patch-287
modified files:
ChangeLog po/zh_TW.po
2003-11-10 20:02:51 GMT Colin Walters <walters@verbum.org> patch-286
Summary:
release 0.5.99.1
Revision:
rhythmbox--mainline--0.6--patch-286
modified files:
ChangeLog configure.ac
2003-11-10 20:02:34 GMT Colin Walters <walters@verbum.org> patch-285
Summary:
srcdir != builddir fixes
Revision:
rhythmbox--mainline--0.6--patch-285
modified files:
ChangeLog corba/Makefile.am shell/Makefile.am
2003-11-10 19:11:02 GMT Colin Walters <walters@verbum.org> patch-284
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.6--patch-284
modified files:
ChangeLog po/ChangeLog po/POTFILES.in po/fr.po po/nl.po
po/zh_TW.po
2003-11-10 19:06:51 GMT Colin Walters <walters@verbum.org> patch-283
Summary:
more, and hopefully final deletion hackery
Revision:
rhythmbox--mainline--0.6--patch-283
modified files:
ChangeLog sources/rb-library-source.c
2003-11-10 03:08:27 GMT Colin Walters <walters@verbum.org> patch-282
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.6--patch-282
modified files:
ChangeLog po/ChangeLog po/nl.po
2003-11-10 03:02:30 GMT Colin Walters <walters@verbum.org> patch-281
Summary:
grab read locks for sorting in query model
Revision:
rhythmbox--mainline--0.6--patch-281
modified files:
ChangeLog rhythmdb/rhythmdb-query-model.c
widgets/rb-entry-view.c
2003-11-10 02:40:42 GMT Colin Walters <walters@verbum.org> patch-280
Summary:
more deletion hackery than you would believe
Revision:
rhythmbox--mainline--0.6--patch-280
modified files:
ChangeLog rhythmdb/rhythmdb-query-model.c
rhythmdb/rhythmdb-query-model.h shell/rb-shell-player.c
sources/rb-library-source.c sources/rb-source.c
widgets/rb-entry-view.c
2003-11-10 23:52:38 GMT Colin Walters <walters@verbum.org> patch-279
Summary:
use cancel instead of close in auto. playlist dialog
Revision:
rhythmbox--mainline--0.6--patch-279
modified files:
ChangeLog widgets/rb-query-creator.c
2003-11-10 21:56:48 GMT Colin Walters <walters@verbum.org> patch-278
Summary:
shutdown fixes, more query completion stuff
Revision:
rhythmbox--mainline--0.6--patch-278
modified files:
ChangeLog rhythmdb/rhythmdb-query-model.c
rhythmdb/rhythmdb-query-model.h rhythmdb/rhythmdb.c
2003-11-10 21:31:29 GMT Colin Walters <walters@verbum.org> patch-277
Summary:
lots and lots of deletion hackery
Revision:
rhythmbox--mainline--0.6--patch-277
modified files:
ChangeLog rhythmdb/rhythmdb-query-model.c rhythmdb/rhythmdb.c
rhythmdb/rhythmdb.h sources/rb-library-source.c
sources/rb-source.c widgets/rb-entry-view.c
2003-11-10 21:22:47 GMT Colin Walters <walters@verbum.org> patch-276
Summary:
NEWS update
Revision:
rhythmbox--mainline--0.6--patch-276
modified files:
ChangeLog NEWS
2003-11-10 17:31:12 GMT Colin Walters <walters@verbum.org> patch-275
Summary:
escape text passed to GnomeHRef (Mark Humphreys)
Revision:
rhythmbox--mainline--0.6--patch-275
modified files:
ChangeLog widgets/rb-player.c
2003-11-10 16:22:34 GMT Colin Walters <walters@verbum.org> patch-274
Summary:
attempt to ensure we don't do a query from a row deletion
Revision:
rhythmbox--mainline--0.6--patch-274
modified files:
ChangeLog rhythmdb/rhythmdb-property-model.c
rhythmdb/rhythmdb-property-model.h sources/rb-library-source.c
widgets/rb-property-view.c
2003-11-10 16:21:56 GMT Colin Walters <walters@verbum.org> patch-273
Summary:
totally disable Musicbrainz for now
Revision:
rhythmbox--mainline--0.6--patch-273
modified files:
ChangeLog configure.ac
2003-11-10 16:21:40 GMT Colin Walters <walters@verbum.org> patch-272
Summary:
use GCC __FUNCTION__ if C99 is not available
Revision:
rhythmbox--mainline--0.6--patch-272
modified files:
ChangeLog lib/rb-debug.h
2003-11-09 19:04:05 GMT Colin Walters <walters@verbum.org> patch-271
Summary:
don't display statusbar in small mode (Mark Humphreys)
Revision:
rhythmbox--mainline--0.6--patch-271
modified files:
ChangeLog shell/rb-shell.c shell/rb-source-header.c
2003-11-09 17:09:46 GMT Colin Walters <walters@verbum.org> patch-270
Summary:
add GnomeHRef bit to NEWS
Revision:
rhythmbox--mainline--0.6--patch-270
modified files:
ChangeLog NEWS
2003-11-09 15:39:32 GMT Colin Walters <walters@verbum.org> patch-269
Summary:
kill off RBLink, use GnomeHREF (Mark Humphreys)
Revision:
rhythmbox--mainline--0.6--patch-269
removed files:
widgets/rb-link.c widgets/rb-link.h
modified files:
ChangeLog widgets/Makefile.am widgets/rb-player.c
widgets/rb-song-display-box.c widgets/rb-song-display-box.h
2003-11-09 15:01:24 GMT Colin Walters <walters@verbum.org> patch-268
Summary:
use explicit idle handler for saving state
Revision:
rhythmbox--mainline--0.6--patch-268
modified files:
ChangeLog shell/rb-shell.c
2003-11-09 06:35:12 GMT Colin Walters <walters@verbum.org> patch-267
Summary:
save the DB after the first startup
Revision:
rhythmbox--mainline--0.6--patch-267
modified files:
ChangeLog shell/rb-shell.c
2003-11-09 06:03:23 GMT Colin Walters <walters@verbum.org> patch-266
Summary:
ensure jump to playing will switch source if necessary
Revision:
rhythmbox--mainline--0.6--patch-266
modified files:
ChangeLog shell/rb-shell.c
2003-11-09 05:53:41 GMT Colin Walters <walters@verbum.org> patch-265
Summary:
remove unused RhythmDBPlaylistModel
Revision:
rhythmbox--mainline--0.6--patch-265
removed files:
rhythmdb/rhythmdb-playlist-model.c
rhythmdb/rhythmdb-playlist-model.h
modified files:
ChangeLog rhythmdb/Makefile.am
2003-11-09 05:43:41 GMT Colin Walters <walters@verbum.org> patch-264
Summary:
only enable clicking on columns if we can sort
Revision:
rhythmbox--mainline--0.6--patch-264
modified files:
ChangeLog rhythmdb/rhythmdb-model.c rhythmdb/rhythmdb-model.h
rhythmdb/rhythmdb-playlist-model.c
rhythmdb/rhythmdb-query-model.c widgets/rb-entry-view.c
2003-11-09 05:23:21 GMT Colin Walters <walters@verbum.org> patch-263
Summary:
make cut & paste really work
Revision:
rhythmbox--mainline--0.6--patch-263
modified files:
ChangeLog sources/rb-playlist-source.c sources/rb-source.c
widgets/rb-entry-view.c
2003-11-09 05:01:22 GMT Colin Walters <walters@verbum.org> patch-262
Summary:
implement MB/GB limits for automatic playlists
Revision:
rhythmbox--mainline--0.6--patch-262
modified files:
ChangeLog rhythmdb/rhythmdb-query-model.c
shell/rb-playlist-manager.c sources/rb-playlist-source.c
sources/rb-playlist-source.h widgets/rb-query-creator.c
widgets/rb-query-creator.h
2003-11-09 04:25:51 GMT Colin Walters <walters@verbum.org> patch-261
Summary:
add Yann's DND work to NEWS
Revision:
rhythmbox--mainline--0.6--patch-261
modified files:
ChangeLog NEWS
2003-11-09 04:20:32 GMT Colin Walters <walters@verbum.org> patch-260
Summary:
major DND work (yann)
Revision:
rhythmbox--mainline--0.6--patch-260
Patches applied:
* yann@cvs.gnome.org--2003/rhythmbox--mainline--0.6--patch-17
merge with Colin
* yann@cvs.gnome.org--2003/rhythmbox--mainline--0.6--patch-18
merge with rhythmbox--treednd
* yann@cvs.gnome.org--2003/rhythmbox--treednd--0.6--base-0
tag of yann@cvs.gnome.org--2003/rhythmbox--mainline--0.6--patch-16
* yann@cvs.gnome.org--2003/rhythmbox--treednd--0.6--patch-1
custom tree dnd begins to work
* yann@cvs.gnome.org--2003/rhythmbox--treednd--0.6--patch-2
Improved tree dnd interface, cleaned up code, ...
* yann@cvs.gnome.org--2003/rhythmbox--treednd--0.6--patch-3
added move drag and drop support
* yann@cvs.gnome.org--2003/rhythmbox--treednd--0.6--patch-4
some renaming
new files:
lib/.arch-ids/rb-tree-dnd.c.id lib/.arch-ids/rb-tree-dnd.h.id
lib/rb-tree-dnd.c lib/rb-tree-dnd.h
removed files:
lib/.arch-ids/eggtreemultidnd.c.id
lib/.arch-ids/eggtreemultidnd.h.id lib/eggtreemultidnd.c
lib/eggtreemultidnd.h
modified files:
ChangeLog lib/Makefile.am rhythmdb/rhythmdb-query-model.c
widgets/rb-entry-view.c widgets/rb-property-view.c
new patches:
yann@cvs.gnome.org--2003/rhythmbox--mainline--0.6--patch-17
yann@cvs.gnome.org--2003/rhythmbox--mainline--0.6--patch-18
yann@cvs.gnome.org--2003/rhythmbox--treednd--0.6--base-0
yann@cvs.gnome.org--2003/rhythmbox--treednd--0.6--patch-1
yann@cvs.gnome.org--2003/rhythmbox--treednd--0.6--patch-2
yann@cvs.gnome.org--2003/rhythmbox--treednd--0.6--patch-3
yann@cvs.gnome.org--2003/rhythmbox--treednd--0.6--patch-4
2003-11-09 03:15:14 GMT Colin Walters <walters@verbum.org> patch-259
Summary:
pre-C99 fixes and cvsignore update (wheeler@kde.org)
Revision:
rhythmbox--mainline--0.6--patch-259
modified files:
ChangeLog corba/.cvsignore rhythmdb/rhythmdb-query-model.c
shell/rb-history.c shell/rb-shell-player.c
2003-11-09 03:06:21 GMT Colin Walters <walters@verbum.org> patch-258
Summary:
don't use -std=c99; too many people have ancient gcc versions...
Revision:
rhythmbox--mainline--0.6--patch-258
modified files:
ChangeLog configure.ac
2003-11-09 01:11:02 GMT Colin Walters <walters@verbum.org> patch-257
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.6--patch-257
modified files:
ChangeLog po/ChangeLog po/cs.po po/ko.po po/no.po
2003-11-08 06:19:44 GMT Colin Walters <walters@verbum.org> patch-256
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.6--patch-256
modified files:
ChangeLog po/ChangeLog po/POTFILES.in po/POTFILES.skip
po/cs.po po/sr.po po/sr@Latn.po po/sv.po
2003-11-08 06:02:29 GMT Colin Walters <walters@verbum.org> patch-255
Summary:
upd NEWS
Revision:
rhythmbox--mainline--0.6--patch-255
modified files:
ChangeLog NEWS
2003-11-08 06:01:38 GMT Colin Walters <walters@verbum.org> patch-254
Summary:
spec file fixes
Revision:
rhythmbox--mainline--0.6--patch-254
modified files:
ChangeLog rhythmbox.spec.in
2003-11-05 17:14:38 GMT Colin Walters <walters@verbum.org> patch-253
Summary:
implement jumping to/playing entries
Revision:
rhythmbox--mainline--0.6--patch-253
modified files:
ChangeLog corba/Rhythmbox.idl lib/rb-playlist.c
lib/rb-playlist.h shell/rb-playlist-manager.c
shell/rb-playlist-manager.h shell/rb-shell-player.c
shell/rb-shell-player.h shell/rb-shell.c
2003-11-05 15:42:54 GMT Colin Walters <walters@verbum.org> patch-252
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.6--patch-252
modified files:
ChangeLog po/ChangeLog po/sr.po po/sr@Latn.po
2003-11-05 15:42:05 GMT Colin Walters <walters@verbum.org> patch-251
Summary:
upd POTFILES
Revision:
rhythmbox--mainline--0.6--patch-251
modified files:
ChangeLog po/POTFILES.in po/POTFILES.skip
2003-11-05 08:06:31 GMT Colin Walters <walters@verbum.org> patch-250
Summary:
upd NEWS and merge 0.5 branch NEWS
Revision:
rhythmbox--mainline--0.6--patch-250
modified files:
ChangeLog NEWS
2003-11-05 07:46:20 GMT Colin Walters <walters@verbum.org> patch-249
Summary:
use ngettext in more places
Revision:
rhythmbox--mainline--0.6--patch-249
modified files:
ChangeLog sources/rb-iradio-source.c widgets/rb-song-info.c
2003-11-05 07:27:55 GMT Colin Walters <walters@verbum.org> patch-248
Summary:
hack around m3u parser bugs
Revision:
rhythmbox--mainline--0.6--patch-248
modified files:
ChangeLog lib/rb-playlist.c
2003-11-05 06:07:41 GMT Colin Walters <walters@verbum.org> patch-247
Summary:
tooltip fixes (harshy)
Revision:
rhythmbox--mainline--0.6--patch-247
Patches applied:
* harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-4
fixup for translation
modified files:
ChangeLog widgets/rb-entry-view.c
new patches:
harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-4
2003-11-05 05:33:00 GMT Colin Walters <walters@verbum.org> patch-246
Summary:
fix up iradio genre browser
Revision:
rhythmbox--mainline--0.6--patch-246
modified files:
ChangeLog sources/rb-iradio-source.c
2003-11-05 04:58:05 GMT Colin Walters <walters@verbum.org> patch-245
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.6--patch-245
new files:
ChangeLog.old
modified files:
ChangeLog
2003-11-05 04:56:53 GMT Colin Walters <walters@verbum.org> patch-244
Summary:
switch to GtkVBox/GtkSizeGroup instead of GtkTable for auto playlist
Revision:
rhythmbox--mainline--0.6--patch-244
removed files:
ChangeLog.old
modified files:
ChangeLog data/glade/create-playlist.glade
widgets/rb-query-creator.c
2003-11-03 22:32:13 GMT Colin Walters <walters@verbum.org> patch-243
Summary:
update from CVS
Revision:
rhythmbox--mainline--0.6--patch-243
modified files:
ChangeLog po/ChangeLog po/cs.po po/sr.po po/sr@Latn.po
po/sv.po
2003-11-03 22:24:44 GMT Colin Walters <walters@verbum.org> patch-242
Summary:
fix up error handling on missing elements a bit
Revision:
rhythmbox--mainline--0.6--patch-242
modified files:
ChangeLog monkey-media/monkey-media-player-gst-tmp.c
shell/rb-shell-player.c
2003-11-03 15:13:06 GMT Colin Walters <walters@verbum.org> patch-241
Summary:
don't crash when clearing iradio search
Revision:
rhythmbox--mainline--0.6--patch-241
modified files:
ChangeLog sources/rb-iradio-source.c
2003-11-03 05:55:19 GMT Colin Walters <walters@verbum.org> patch-240
Summary:
history fixes, indentation bits, vim swap files (jeffrey)
Revision:
rhythmbox--mainline--0.6--patch-240
Patches applied:
* jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-6
merge with mainline
* jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-7
Make history follow specification in http://mail.gnome.org/archives/rhythmbox-devel/2003-November/msg00002.html
* jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-8
fix spacing
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-16
Merge with walters
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-17
Mark vim swap files as junk
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-18
merge history changes
modified files:
ChangeLog shell/rb-history.c shell/rb-history.h
shell/rb-shell-player.c {arch}/=tagging-method
new patches:
jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-6
jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-7
jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-8
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-16
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-17
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-18
2003-11-03 02:29:42 GMT Colin Walters <walters@verbum.org> patch-239
Summary:
tooltip on playing column (harshy)
Revision:
rhythmbox--mainline--0.6--patch-239
Patches applied:
* harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--base-0
tag of walters@rhythmbox.org--2003b/rhythmbox--mainline--0.6--patch-217
* harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-1
star-merge from 20031028
* harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-2
star-merge
* harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-3
Fixed now playing tooltip regression
modified files:
ChangeLog widgets/rb-entry-view.c
new patches:
harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--base-0
harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-1
harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-2
harshy@dersoldat.org--2003/rhythmbox--mainline--0.6--patch-3
2003-11-01 22:42:36 GMT Colin Walters <walters@verbum.org> patch-238
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.6--patch-238
modified files:
ChangeLog po/ChangeLog po/sr.po po/sr@Latn.po
2003-11-01 22:37:50 GMT Colin Walters <walters@verbum.org> patch-237
Summary:
implement --dry-run option
Revision:
rhythmbox--mainline--0.6--patch-237
modified files:
ChangeLog shell/main.c shell/rb-shell.c
2003-11-01 20:30:00 GMT Colin Walters <walters@verbum.org> patch-236
Summary:
history work (jeffrey)
Revision:
rhythmbox--mainline--0.6--patch-236
Patches applied:
* jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--base-0
tag of jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-11
* jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-1
Make shuffle stop playback when it runs out of history.
* jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-2
merge with mainline
* jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-3
Make callers of rhythmdb_query_model_entry_to_iter() fail quickly when they don't check if it failed.
* jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-4
Fix crash when user goes "back" in the history but the filter has changed so the previous song is no longer in it.
* jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-5
Fix spacing issue
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-14
This patch is slightly broken. The history dies when this patch stops playback.
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-15
Fix history crashes after user changes the filter
modified files:
ChangeLog rhythmdb/rhythmdb-query-model.c
shell/rb-shell-player.c widgets/rb-entry-view.c
new patches:
jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--base-0
jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-1
jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-2
jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-3
jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-4
jyasskin@mail.utexas.edu--2003/rhythmbox--history--0.6--patch-5
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-14
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-15
2003-10-31 22:17:17 GMT Colin Walters <walters@verbum.org> patch-235
Summary:
Update from CVS
Revision:
rhythmbox--mainline--0.6--patch-235
modified files:
ChangeLog po/ChangeLog po/cs.po po/no.po po/sv.po
2003-10-31 13:20:25 GMT Colin Walters <walters@verbum.org> patch-234
Summary:
re-mark Rhythmbox as translatable
Revision:
rhythmbox--mainline--0.6--patch-234
modified files:
ChangeLog data/rhythmbox.desktop.in
2003-10-31 02:07:59 GMT Colin Walters <walters@verbum.org> patch-233
Summary:
add Jeffrey to AUTHORS
Revision:
rhythmbox--mainline--0.6--patch-233
modified files:
AUTHORS ChangeLog
2003-10-31 02:07:00 GMT Colin Walters <walters@verbum.org> patch-232
Summary:
time remaining fixes (jeffrey)
Revision:
rhythmbox--mainline--0.6--patch-232
Patches applied:
* jyasskin@mail.utexas.edu--2003/rhythmbox--bugzilla--0.6--base-0
tag of jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-12
* jyasskin@mail.utexas.edu--2003/rhythmbox--bugzilla--0.6--patch-1
Fix Bugzilla Bug #125757
* jyasskin@mail.utexas.edu--2003/rhythmbox--bugzilla--0.6--patch-2
Continue fixing bug #125757
* jyasskin@mail.utexas.edu--2003/rhythmbox--bugzilla--0.6--patch-3
Remove GUI changes in fix to bug #125757
* jyasskin@mail.utexas.edu--2003/rhythmbox--bugzilla--0.6--patch-4
Fix indentation
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-11
unref entries when the history is finalized
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-12
Merge with walters
* jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-13
Fix bug #125757
modified files:
ChangeLog data/rhythmbox.schemas lib/rb-preferences.h
shell/rb-history.c shell/rb-shell.c widgets/rb-player.c
new patches:
jyasskin@mail.utexas.edu--2003/rhythmbox--bugzilla--0.6--base-0
jyasskin@mail.utexas.edu--2003/rhythmbox--bugzilla--0.6--patch-1
jyasskin@mail.utexas.edu--2003/rhythmbox--bugzilla--0.6--patch-2
jyasskin@mail.utexas.edu--2003/rhythmbox--bugzilla--0.6--patch-3
jyasskin@mail.utexas.edu--2003/rhythmbox--bugzilla--0.6--patch-4
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-11
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-12
jyasskin@mail.utexas.edu--2003/rhythmbox--mainline--0.6--patch-13
2003-10-31 00:32:02 GMT Colin Walters <walters@verbum.org> patch-231
Summary:
capitalize Automatic Playlist
Revision:
rhythmbox--mainline--0.6--patch-231
modified files:
ChangeLog widgets/rb-query-creator.c