-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
19951 lines (14399 loc) · 636 KB
/
ChangeLog
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
commit 2ff268794e769342c30adb521c4a5e4a7616d000
Author: Luis Medinas <[email protected]>
Date: Sun Sep 13 15:59:11 2009 +0100
Change version numbers to 0.8.11 in preparation for the new release
NEWS | 2 +-
configure.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit aa732d47c40ee2d238388b8b724860cb1ffa17af
Author: Jorn Baayen <[email protected]>
Date: Sun Sep 13 13:30:25 2009 +0300
prepare for 0.9.0 release
NEWS | 5 ++---
configure.in | 2 +-
2 files changed, 3 insertions(+), 4 deletions(-)
commit c064f313ad0304c30762bc97a426070a91082f20
Author: Priit Laes <[email protected]>
Date: Sun Sep 13 09:56:24 2009 +0300
Added DOAP file describing Muine project.
muine.doap | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
commit 1992b77cf2469341ccc2268aa481acdd2599b41e
Author: Mario Blättermann <[email protected]>
Date: Sat Sep 5 18:31:36 2009 +0200
Updated German translation
po/de.po | 109 ++++++++++++++++++++++++++++++--------------------------------
1 files changed, 53 insertions(+), 56 deletions(-)
commit 376a58e6277b3159f7c8e842b32f593d1f7ffab3
Author: Inaki Larranaga Murgoitio <[email protected]>
Date: Fri Sep 4 11:38:17 2009 +0200
Updated Basque language
po/eu.po | 54 +++++++++++++-----------------------------------------
1 files changed, 13 insertions(+), 41 deletions(-)
commit 2b2f5769cb5e6283a3efb645a13e617703083d9e
Author: Daniel Nylander <[email protected]>
Date: Tue Sep 1 00:30:28 2009 +0200
Updated Swedish translation
po/sv.po | 101 ++++++++++++++++++++++++++-----------------------------------
1 files changed, 43 insertions(+), 58 deletions(-)
commit ca3b6eca742894cf262c1b91b7638afc6d56e8fa
Author: Jorge González <[email protected]>
Date: Sun Aug 30 11:18:16 2009 +0200
Updated Spanish translation
po/es.po | 111 +++++++++++++++++++++++++++++---------------------------------
1 files changed, 52 insertions(+), 59 deletions(-)
commit 15529d37cf461340ab52dd573c9edc72d020dd11
Author: Jorn Baayen <[email protected]>
Date: Sat Aug 29 21:33:28 2009 +0300
Update Jorn's email address
AUTHORS | 4 ++--
src/About.cs | 4 ++--
src/Actions.cs | 2 +-
src/AddAlbumWindow.cs | 2 +-
src/AddSongWindow.cs | 2 +-
src/AddWindow.cs | 2 +-
src/Album.cs | 2 +-
src/ColoredCellRendererPixbuf.cs | 2 +-
src/Config.cs | 2 +-
src/CoverDatabase.cs | 2 +-
src/CoverGetter.cs | 2 +-
src/CoverImage.cs | 2 +-
src/DndUtils.cs | 2 +-
src/ErrorDialog.cs | 2 +-
src/FileSelector.cs | 2 +-
src/FileUtils.cs | 2 +-
src/Global.cs | 2 +-
src/GnomeProxy.cs | 2 +-
src/HandleModel.cs | 2 +-
src/HandleView.cs | 2 +-
src/ImportDialog.cs | 2 +-
src/InfoWindow.cs | 2 +-
src/KeyUtils.cs | 2 +-
src/Metadata.cs | 2 +-
src/MmKeys.cs | 2 +-
src/OpenDialog.cs | 2 +-
src/OverwriteDialog.cs | 2 +-
src/Player.cs | 2 +-
src/PlaylistWindow.cs | 2 +-
src/PluginManager.cs | 2 +-
src/ProgressWindow.cs | 2 +-
src/SaveDialog.cs | 2 +-
src/SkipToWindow.cs | 2 +-
src/Song.cs | 2 +-
src/SongDatabase.cs | 2 +-
src/StockIcons.cs | 2 +-
src/StringUtils.cs | 2 +-
src/ThreadBase.cs | 2 +-
38 files changed, 40 insertions(+), 40 deletions(-)
commit 17cf21f8c3de2ffe598631b457f091bad93b11b0
Author: Priit Laes <[email protected]>
Date: Thu Aug 27 11:49:21 2009 +0300
Fix distcheck and update INSTALL doc
* INSTALL, Makefile.am, po/POTFILES.in:
INSTALL | 128 +++++++++++++++++++++++++++++++++++++++++--------------
Makefile.am | 3 +
po/POTFILES.in | 1 -
3 files changed, 98 insertions(+), 34 deletions(-)
commit d315979dd99131157d6dd48dbd4851e0a1828efc
Author: Priit Laes <[email protected]>
Date: Thu Aug 27 11:41:11 2009 +0300
Restore ColoredCellRendererPixbuf [Jorn Baayen]
Gtk+'s stock CellRendererPixbuf does not look nice.
* libmuine/Makefile.am, libmuine/rb-cell-renderer-pixbuf.c,
libmuine/rb-cell-renderer-pixbuf.h, src/ColoredCellRendererPixbuf.cs,
src/Makefile.am, src/PlaylistWindow.cs
libmuine/Makefile.am | 2 +
libmuine/rb-cell-renderer-pixbuf.c | 348 ++++++++++++++++++++++++++++++++++++
libmuine/rb-cell-renderer-pixbuf.h | 62 +++++++
src/ColoredCellRendererPixbuf.cs | 64 +++++++
src/Makefile.am | 1 +
src/PlaylistWindow.cs | 13 +-
6 files changed, 487 insertions(+), 3 deletions(-)
commit 25e2434c3a5a3b88105a5e58c78c86fdf0b671be
Author: Priit Laes <[email protected]>
Date: Thu Aug 27 10:09:14 2009 +0300
Fix ChangeLog check from top-level Makefile
* Makefile.am:
Makefile.am | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
commit 553d0b0d3c8a94d9e2f715897e9e8f52f69b24bb
Author: Priit Laes <[email protected]>
Date: Thu Aug 27 08:57:10 2009 +0300
MAINTAINERS: Add myself, update Jorn's details.
MAINTAINERS | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
commit cd2674efb896a125704cd6677b3d2f62b5bb1371
Author: Priit Laes <[email protected]>
Date: Thu Aug 27 08:50:23 2009 +0300
NEWS: Update for upcoming release
NEWS | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
commit 100f68a1fd589c2a032fdb95c6807f9898819e88
Author: Priit Laes <[email protected]>
Date: Thu Aug 27 08:49:16 2009 +0300
Rename ChangeLog and mention new rules in ChangeLog.README
* ChangeLog.20090722, ChangeLog.README:
ChangeLog | 7586 ----------------------------------------------------
ChangeLog.20090722 | 7586 ++++++++++++++++++++++++++++++++++++++++++++++++++++
ChangeLog.README | 28 +
3 files changed, 7614 insertions(+), 7586 deletions(-)
commit 4ec1c8ef6a576c22f57a5d5176d3878833a21370
Author: Priit Laes <[email protected]>
Date: Wed Jul 22 23:20:22 2009 +0300
Bug 559892 – [PATCH] Drop xine backend
* configure.in, libmuine/Makefile.am, libmuine/player-xine.c:
ChangeLog | 7 +
configure.in | 19 +--
libmuine/Makefile.am | 13 +-
libmuine/player-xine.c | 636 ------------------------------------------------
4 files changed, 10 insertions(+), 665 deletions(-)
commit c43fc6c6ca438ff638fbf66ffa1c7759e35fd88f
Author: Priit Laes <[email protected]>
Date: Wed Jul 22 09:08:36 2009 +0300
Bug 572841 – FLAC files are not imported
* src/Metadata.cs: Make metadata parsing more robust.
Based on patches by Benjamin Bagland and Jorn Baayen.
Signed-off-by: Priit Laes <[email protected]>
ChangeLog | 7 +++++++
src/Metadata.cs | 24 +++++++++++++++++++-----
2 files changed, 26 insertions(+), 5 deletions(-)
commit ecd40b0fa99154171face22dc1699fd64cc30962
Author: Priit Laes <[email protected]>
Date: Wed Jul 22 08:48:19 2009 +0300
2009-07-22 Priit Laes <[email protected]>
Bug 573172 – [PATCH] Get rid of deprecated APIs (v2)
* src/About.cs, src/CoverImage.cs: Fix more deprecation warnings.
ChangeLog | 6 ++++++
src/About.cs | 2 +-
src/CoverImage.cs | 4 ++--
3 files changed, 9 insertions(+), 3 deletions(-)
commit a6b0592c25c1a3c2254e75dbcce6f9424b8e418d
Author: Priit Laes <[email protected]>
Date: Wed Jul 22 08:46:06 2009 +0300
2009-07-22 Priit Laes <[email protected]>
Bug 573172 – [PATCH] Get rid of deprecated APIs
* src/PlaylistWindow.cs, src/VolumeButton.cs: Port to newer GtkTooltip API.
ChangeLog | 6 ++++++
src/PlaylistWindow.cs | 21 ++++++++++-----------
src/VolumeButton.cs | 4 +---
3 files changed, 17 insertions(+), 14 deletions(-)
commit bed3ec26e1d3513863390cd0937f2871dd504e05
Author: Priit Laes <[email protected]>
Date: Wed Jul 22 08:44:05 2009 +0300
2009-07-22 Priit Laes <[email protected]>
* configure.in: Change gtk-sharp version from 2.19.2 to 2.12.9 :(
ChangeLog | 4 ++++
configure.in | 2 +-
2 files changed, 5 insertions(+), 1 deletions(-)
commit 3b8fc4f050db8762ce5bfb5c754e67657c6ee3f9
Author: Priit Laes <[email protected]>
Date: Wed Jul 22 08:33:30 2009 +0300
2009-07-22 Iain Lane <[email protected]>
* configure.in:
* src/HandleModel.cs:
Update EmitRowReordered to new Gtk# 2.12.9 API, fixes bug #584702.
Require at least gtk-sharp-2.12.9.
Signed-off-by: Priit Laes <[email protected]>
ChangeLog | 7 +++++++
configure.in | 2 +-
src/HandleModel.cs | 6 ++----
3 files changed, 10 insertions(+), 5 deletions(-)
commit efc90b6a5e1b33015ecf2f39f2c9743ca5c1b6cb
Author: Aron Xu <[email protected]>
Date: Thu May 28 14:51:39 2009 +0800
Updated Simplified Chinese translation.
po/zh_CN.po | 868 ++++++++++++++++++++++++++++++++++-------------------------
1 files changed, 495 insertions(+), 373 deletions(-)
commit 73c9aa2dc020862a4069dce6b15f244d3e8c874d
Author: Tobias Mueller <[email protected]>
Date: Mon Mar 16 23:37:38 2009 +0000
Change the FSFs address by replacing obsolete values with new one.
Fixes bug 539501
svn path=/trunk/; revision=1255
COPYING | 4 ++--
ChangeLog | 26 ++++++++++++++++++++++++++
DBusLib/AssemblyInfo.cs | 4 ++--
DBusLib/Player.cs | 4 ++--
PluginLib/AssemblyInfo.cs | 4 ++--
PluginLib/IPlayer.cs | 4 ++--
PluginLib/ISong.cs | 4 ++--
PluginLib/Plugin.cs | 4 ++--
libmuine/db.c | 4 ++--
libmuine/db.h | 4 ++--
libmuine/macros.h | 4 ++--
libmuine/mm-keys.c | 4 ++--
libmuine/mm-keys.h | 4 ++--
libmuine/player-gst.c | 4 ++--
libmuine/player-xine.c | 4 ++--
libmuine/player.h | 4 ++--
libmuine/pointer-list-model.c | 4 ++--
libmuine/pointer-list-model.h | 4 ++--
plugins/TrayIcon.cs | 4 ++--
src/About.cs | 4 ++--
src/Actions.cs | 4 ++--
src/AddAlbumWindow.cs | 4 ++--
src/AddSongWindow.cs | 4 ++--
src/AddWindow.cs | 4 ++--
src/AddWindowEntry.cs | 4 ++--
src/AddWindowList.cs | 4 ++--
src/Album.cs | 4 ++--
src/Config.cs | 4 ++--
src/CoverDatabase.cs | 4 ++--
src/CoverGetter.cs | 4 ++--
src/CoverImage.cs | 4 ++--
src/DBusService.cs | 4 ++--
src/Database.cs | 4 ++--
src/DndUtils.cs | 4 ++--
src/ErrorDialog.cs | 4 ++--
src/FileSelector.cs | 4 ++--
src/FileUtils.cs | 4 ++--
src/Global.cs | 4 ++--
src/GnomeProxy.cs | 4 ++--
src/HandleModel.cs | 4 ++--
src/HandleView.cs | 4 ++--
src/ImportDialog.cs | 4 ++--
src/InfoWindow.cs | 4 ++--
src/Item.cs | 4 ++--
src/KeyUtils.cs | 4 ++--
src/Metadata.cs | 4 ++--
src/MmKeys.cs | 4 ++--
src/MusicBrainz.cs | 2 +-
src/NoMusicFoundWindow.cs | 4 ++--
src/OpenDialog.cs | 4 ++--
src/OverwriteDialog.cs | 4 ++--
src/Player.cs | 4 ++--
src/PlaylistWindow.cs | 4 ++--
src/PluginManager.cs | 4 ++--
src/ProgressWindow.cs | 4 ++--
src/SaveDialog.cs | 4 ++--
src/SignalUtils.cs | 4 ++--
src/SkipToWindow.cs | 4 ++--
src/Song.cs | 4 ++--
src/SongDatabase.cs | 4 ++--
src/StockIcons.cs | 4 ++--
src/StringUtils.cs | 4 ++--
src/ThreadBase.cs | 4 ++--
63 files changed, 149 insertions(+), 123 deletions(-)
commit a80cb3558aec272901b6ddd22f225123a77d6c2a
Author: Inaki Larranaga Murgoitio <[email protected]>
Date: Mon Mar 16 11:44:20 2009 +0000
Updated Basque translation.
2009-03-16 Inaki Larranaga Murgoitio <[email protected]>
* eu.po: Updated Basque translation.
svn path=/trunk/; revision=1254
po/ChangeLog | 4 +
po/eu.po | 218 +++++++++++++++++++++++++++++++++++++---------------------
2 files changed, 143 insertions(+), 79 deletions(-)
commit d6d4cd5471ebfe3b220906b99a2051d57eecd2c6
Author: Daniel G. Siegel <[email protected]>
Date: Mon Dec 15 11:10:38 2008 +0000
use Duration.TotalSeconds to get the correct duration of a song, fixes bug #564578
svn path=/trunk/; revision=1253
ChangeLog | 6 ++++++
src/Metadata.cs | 2 +-
2 files changed, 7 insertions(+), 1 deletions(-)
commit 7724287fa35f63b38811257184153fde55a45520
Author: iain <[email protected]>
Date: Sun Dec 14 01:58:10 2008 +0000
Use Tag.Artists instead of Tag.AlbumArtists. Fixes files without the
2008-12-14 iain <[email protected]>
* src/Metadata.cs:
Use Tag.Artists instead of Tag.AlbumArtists. Fixes files without
the
AlbumArtist tag showing up as Unknown Artist.
svn path=/trunk/; revision=1252
ChangeLog | 7 +++++++
src/Metadata.cs | 2 +-
2 files changed, 8 insertions(+), 1 deletions(-)
commit 277663dc240c15e659b04cf1a0550133224cccc4
Author: Luis Medinas <[email protected]>
Date: Wed Dec 3 13:14:10 2008 +0000
Bump version to 0.8.11 in preparation for the new release.
2008-12-03 Luis Medinas <[email protected]>
* configure.in:
Bump version to 0.8.11 in preparation for the new release.
svn path=/trunk/; revision=1251
ChangeLog | 6 ++++++
configure.in | 2 +-
2 files changed, 7 insertions(+), 1 deletions(-)
commit 7051bb38fb83a326fce95d34031edb71e4f0f257
Author: Priit Laes <[email protected]>
Date: Wed Dec 3 10:34:09 2008 +0000
Drop ACLOCAL_FLAGS that were needed to include m4 directory. Fixes
2008-12-03 Priit Laes <[email protected]>
* autogen.sh: Drop ACLOCAL_FLAGS that were needed to include m4
directory. Fixes autogen, because m4 directory does not exist anymore.
svn path=/trunk/; revision=1250
ChangeLog | 5 +++++
autogen.sh | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
commit e28c077ef099ddea675f4b0e041c4eb876b555f6
Author: Priit Laes <[email protected]>
Date: Tue Dec 2 15:13:08 2008 +0000
Bug 562901 – [PATCH] Fix gstreamer-critical warning when closing muine
2008-12-02 Priit Laes <[email protected]>
Bug 562901 – [PATCH] Fix gstreamer-critical warning when closing muine
* libmuine/gst-player.c: (player_finalize): Set element to NULL state
before disposal to allow it to clean up.
svn path=/trunk/; revision=1249
ChangeLog | 7 +++++++
libmuine/player-gst.c | 1 +
2 files changed, 8 insertions(+), 0 deletions(-)
commit 7935c65462f449f63797fbd7f8b2293d1621ecd2
Author: Mario Blättermann <[email protected]>
Date: Sat Nov 29 12:11:26 2008 +0000
Updated German translation
svn path=/trunk/; revision=1248
po/ChangeLog | 4 +
po/de.po | 331 +++++++++++++++++++++++++++++++++-------------------------
2 files changed, 191 insertions(+), 144 deletions(-)
commit cae5742a9b603088cdc05b8be227482b95c74001
Author: Diego Escalante Urrelo <[email protected]>
Date: Sat Nov 29 00:46:22 2008 +0000
Remove gnome-vfs usage.
Closes bgo #562636.
svn path=/trunk/; revision=1247
ChangeLog | 7 +++++++
configure.in | 3 +--
libmuine/player-xine.c | 11 +++++------
3 files changed, 13 insertions(+), 8 deletions(-)
commit 66237552c3bc66b27b88a8784e5729a0af2acbd4
Author: Diego Escalante Urrelo <[email protected]>
Date: Fri Nov 28 23:56:15 2008 +0000
Remove gnome-vfs usage. Note that player-xine still uses it.
Closes bgo #562365.
svn path=/trunk/; revision=1246
ChangeLog | 6 ++++++
libmuine/player-gst.c | 4 ++--
2 files changed, 8 insertions(+), 2 deletions(-)
commit 933fd1e4d2818a16e8e0ab8889c79d6b704446ad
Author: Tomasz Dominikowski <[email protected]>
Date: Thu Nov 20 20:24:19 2008 +0000
Updated Polish translation
2008-11-20 Tomasz Dominikowski <[email protected]>
* pl.po: Updated Polish translation
svn path=/trunk/; revision=1245
po/ChangeLog | 4 +
po/pl.po | 261 +++++++++++++++++++++++++++++++++++++++-------------------
2 files changed, 180 insertions(+), 85 deletions(-)
commit 67b5deefab0012af02da53ee735971e999f80fbb
Author: Wouter Bolsterlee <[email protected]>
Date: Wed Nov 19 13:36:44 2008 +0000
Fix attribution in ChangeLog
svn path=/trunk/; revision=1244
ChangeLog | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
commit bec378201fd1cba836c28a8381c8008c4416c50c
Author: Luis Medinas <[email protected]>
Date: Tue Nov 18 21:22:10 2008 +0000
Update to the new gsequence API, closes bgo #464825. Also bump glib to
2008-11-18 Luis Medinas <[email protected]>
* configure.in:
* libmuine/Makefile.am:
* libmuine/gsequence.c:
* libmuine/gsequence.h:
* libmuine/pointer-list-model.c (pointer_list_model_insert):
* libmuine/pointer-list-model.h:
* src/HandleView.cs:
* src/PlaylistWindow.cs:
Update to the new gsequence API, closes bgo #464825.
Also bump glib to 2.14.
Patch from Jorn Baayen and Wouter Bolsterlee.
svn path=/trunk/; revision=1243
ChangeLog | 15 +
configure.in | 2 +
libmuine/Makefile.am | 2 -
libmuine/gsequence.c | 1739 -----------------------------------------
libmuine/gsequence.h | 121 ---
libmuine/pointer-list-model.c | 2 +-
libmuine/pointer-list-model.h | 2 +-
src/HandleView.cs | 10 +-
src/PlaylistWindow.cs | 10 +-
9 files changed, 29 insertions(+), 1874 deletions(-)
commit 26ebb391e6cd0ce734b2e6b43259a7a30219ccc4
Author: Gintautas Miliauskas <[email protected]>
Date: Sun Nov 16 11:10:47 2008 +0000
Updated Lithuanian translation.
2008-11-16 Gintautas Miliauskas <[email protected]>
* lt.po: Updated Lithuanian translation.
svn path=/trunk/; revision=1242
po/ChangeLog | 4 +
po/lt.po | 306 +++++++++++++++++++++++++++++++++++++---------------------
2 files changed, 198 insertions(+), 112 deletions(-)
commit cca931914724009d15a63896f4739f2075a7e6c2
Author: Og B. Maciel <[email protected]>
Date: Sat Nov 15 23:03:36 2008 +0000
Updated Brazilian Portuguese translation.
svn path=/trunk/; revision=1241
po/ChangeLog | 5 +
po/pt_BR.po | 246 ++++++++++++++++++++++++++++++++++++----------------------
2 files changed, 157 insertions(+), 94 deletions(-)
commit 310ffe45b81d2e5c0b4340cc19df1a0078c6f7e3
Author: Priit Laes <[email protected]>
Date: Mon Nov 10 10:00:26 2008 +0000
Bug 560115 – [PATCH] Use Gnome.Vfs#
2008-11-10 Priit Laes <[email protected]>
Bug 560115 – [PATCH] Use Gnome.Vfs#
* TODO:
* src/FileUtils.cs:
* src/CoverImage.cs:
* src/FileSelector.cs:
* src/AddSongWindow.cs:
* src/PlaylistWindow.cs:
* src/AddAlbumWindow.cs:
Drop P/Invoked gnome-vfs functions. Use Gnome.Vfs# API directly.
2008-11-10 Priit Laes <[email protected]>
Bug 474090 – Switch to taglib-sharp
* src/Metadata.cs: Add cover reading for Apple MPEG4 files.
svn path=/trunk/; revision=1240
ChangeLog | 22 ++++++++++++++++++
TODO | 3 --
src/AddAlbumWindow.cs | 4 ++-
src/AddSongWindow.cs | 4 ++-
src/CoverImage.cs | 2 +-
src/FileSelector.cs | 2 +-
src/FileUtils.cs | 60 -------------------------------------------------
src/Metadata.cs | 8 +-----
src/PlaylistWindow.cs | 8 +++---
9 files changed, 36 insertions(+), 77 deletions(-)
commit c225af33c4f4cafed5e71c2bf68cf0da52757726
Author: Luis Medinas <[email protected]>
Date: Mon Nov 10 03:49:31 2008 +0000
remove unneeded directory.
svn path=/trunk/; revision=1239
commit 979ae100410076a3e63fcfb669423d6378d69e70
Author: Luis Medinas <[email protected]>
Date: Mon Nov 10 00:43:05 2008 +0000
Remove files from svn.
svn path=/trunk/; revision=1238
libmuine/rb-cell-renderer-pixbuf.c | 347 ------------------------------------
libmuine/rb-cell-renderer-pixbuf.h | 62 -------
src/ColoredCellRendererPixbuf.cs | 63 -------
3 files changed, 0 insertions(+), 472 deletions(-)
commit 78cf42778d7c5ccd8a5b7c4cf1c9de1c83dc2489
Author: Luis Medinas <[email protected]>
Date: Mon Nov 10 00:36:06 2008 +0000
Ditch ColorCellRendererPixbuf and CellRendererText. Closes bgo #387152.
2008-11-10 Luis Medinas <[email protected]>
* TODO:
* configure.in:
* libmuine/Makefile.am:
* src/Makefile.am:
* src/PlaylistWindow.cs:
Ditch ColorCellRendererPixbuf and CellRendererText.
Closes bgo #387152.
svn path=/trunk/; revision=1237
ChangeLog | 11 +++++++++++
TODO | 3 ---
configure.in | 4 ++--
libmuine/Makefile.am | 2 --
src/Makefile.am | 1 -
src/PlaylistWindow.cs | 4 ++--
6 files changed, 15 insertions(+), 10 deletions(-)
commit ed0e81a673fbe09fa18622ff437c36075d33984d
Author: Luis Medinas <[email protected]>
Date: Mon Nov 10 00:07:00 2008 +0000
Fix for bgo #560077 non-working buttons on Add Song/Album windows. Patch
2008-11-09 Luis Medinas <[email protected]>
* data/glade/AddWindow.glade:
* src/AddWindow.cs:
Fix for bgo #560077 non-working buttons on Add Song/Album
windows.
Patch from Priit Laes <[email protected]>.
svn path=/trunk/; revision=1236
ChangeLog | 8 ++++++++
data/glade/AddWindow.glade | 2 --
src/AddWindow.cs | 5 ++++-
3 files changed, 12 insertions(+), 3 deletions(-)
commit 19cdaf9375e740334abd0f9122ca2eda615abca6
Author: Priit Laes <[email protected]>
Date: Sat Nov 8 11:30:31 2008 +0000
Bug 559631 – [PATCH] Drop glade implementation for error dialogs.
2008-11-07 Priit Laes <[email protected]>
Bug 559631 – [PATCH] Drop glade implementation for error dialogs.
* TODO:
* po/POTFILES.in:
* src/Makefile.am:
* src/ErrorDialog.cs:
* src/OverwriteDialog.cs:
* data/glade/Makefile.am:
R data/glade/ErrorDialog.glade:
R data/glade/OverwriteDialog.glade:
Use GtkMessageDialog instead of glade-based dialogs.
svn path=/trunk/; revision=1235
ChangeLog | 15 +++++
TODO | 4 -
data/glade/ErrorDialog.glade | 111 ----------------------------------
data/glade/Makefile.am | 2 -
data/glade/OverwriteDialog.glade | 124 --------------------------------------
po/POTFILES.in | 2 -
src/ErrorDialog.cs | 18 ++----
src/Makefile.am | 2 -
src/OverwriteDialog.cs | 22 ++++---
9 files changed, 36 insertions(+), 264 deletions(-)
commit 80ca100041103b57c2fc2f08f1d91afdc2d5351e
Author: Priit Laes <[email protected]>
Date: Fri Nov 7 18:02:49 2008 +0000
Bug 474090 – Switch to taglib-sharp
2008-11-07 Priit Laes <[email protected]>
Bug 474090 – Switch to taglib-sharp
* TODO:
* README:
* Makefile.am:
* Configure.in:
* src/Makefile.am:
* src/Metadata.cs:
R m4/*:
R libmuine/id3-vfs/*:
R libmuine/metadata.[ch]:
R libmuine/ogg-helper.[ch]:
Use taglib-sharp for metadata loading. Based on the patch by
Vianney le Clément.
svn path=/trunk/; revision=1234
ChangeLog | 18 +
Makefile.am | 1 -
README | 10 +-
TODO | 1 -
configure.in | 59 +--
libmuine/Makefile.am | 19 +-
libmuine/id3-vfs/Makefile.am | 11 -
libmuine/id3-vfs/field.h | 38 --
libmuine/id3-vfs/file.h | 29 --
libmuine/id3-vfs/global.h | 53 --
libmuine/id3-vfs/id3-vfs.c | 528 -------------------
libmuine/id3-vfs/id3-vfs.h | 44 --
libmuine/id3-vfs/mp3bitrate.c | 257 ----------
libmuine/id3-vfs/mp3bitrate.h | 19 -
libmuine/id3-vfs/tag.h | 30 --
libmuine/metadata.c | 1112 -----------------------------------------
libmuine/metadata.h | 64 ---
libmuine/ogg-helper.c | 105 ----
libmuine/ogg-helper.h | 37 --
m4/Makefile.am | 1 -
m4/ogg.m4 | 100 ----
m4/vorbis.m4 | 120 -----
src/Makefile.am | 3 +-
src/Metadata.cs | 304 ++++++------
24 files changed, 177 insertions(+), 2786 deletions(-)
commit 17e94fe546735d0f8d67c09e88481f77a448fd37
Author: Jorge Gonzalez Gonzalez <[email protected]>
Date: Thu Oct 16 21:30:25 2008 +0000
Updated Spanish translation
svn path=/trunk/; revision=1233
po/ChangeLog | 4 +
po/es.po | 173 +++++++++++++++++++++++++++++++++++++++-------------------
2 files changed, 121 insertions(+), 56 deletions(-)
commit a8e48301d3bea04d14bcbc774df16348fc25530f
Author: Ilkka Tuohela <[email protected]>
Date: Sat Oct 4 18:53:31 2008 +0000
Updated Finnish translation
svn path=/trunk/; revision=1232
po/ChangeLog | 4 ++
po/fi.po | 160 +++++++++++++++++++++++++++++++++++++++------------------
2 files changed, 113 insertions(+), 51 deletions(-)
commit 1be7ece8511a58ea88ffe4c041217b501a3f6b5c
Author: Takeshi AIHANA <[email protected]>
Date: Sat Oct 4 09:16:36 2008 +0000
Updated Japanese translation.
2008-10-04 Takeshi AIHANA <[email protected]>
* ja.po: Updated Japanese translation.
svn path=/trunk/; revision=1231
po/ChangeLog | 4 +
po/ja.po | 174 ++++++++++++++++++++++++++++++++++++++-------------------
2 files changed, 120 insertions(+), 58 deletions(-)
commit 34304d7a41f75251133debd2775efcf2a1611dac
Author: Daniel Nylander <[email protected]>
Date: Wed Oct 1 06:06:38 2008 +0000
sv.po: Updated Swedish translation
svn path=/trunk/; revision=1230
po/ChangeLog | 4 ++
po/sv.po | 166 +++++++++++++++++++++++++++++++++++++++-------------------
2 files changed, 116 insertions(+), 54 deletions(-)
commit b48427c241e23490816817bf83d8f25deb3e3a94
Author: Wouter Bolsterlee <[email protected]>
Date: Mon Sep 29 08:58:02 2008 +0000
Bug 553296 – Update Copyrights
2008-09-29 Wouter Bolsterlee <[email protected]>
Bug 553296 – Update Copyrights
* src/About.cs: Add some people to the credits dialog
and add a "various contributors" copyright statement to
the main about dialog.
svn path=/trunk/; revision=1228
ChangeLog | 8 ++++++++
src/About.cs | 11 ++++++++---
2 files changed, 16 insertions(+), 3 deletions(-)
commit de1d1ba90f125d4328cc8d84701ddf7ea010db36
Author: Luis Medinas <[email protected]>
Date: Sun Sep 28 18:16:24 2008 +0000
Update NEWS and bump release to 0.8.10.
2008-09-28 Luis Medinas <[email protected]>
* NEWS:
* configure.in:
Update NEWS and bump release to 0.8.10.
svn path=/trunk/; revision=1227
ChangeLog | 7 +++++++
NEWS | 5 ++---
configure.in | 2 +-
3 files changed, 10 insertions(+), 4 deletions(-)
commit 0a97292ff5e411d5b0e6502b9614bd774961d907
Author: Luis Medinas <[email protected]>
Date: Sun Sep 28 17:44:49 2008 +0000
Fix id3lib dependency check on configure. Patch from Peter Adolphs closes
2008-09-28 Luis Medinas <[email protected]>
* configure.in:
Fix id3lib dependency check on configure.
Patch from Peter Adolphs closes bgo #491057.
svn path=/trunk/; revision=1226
ChangeLog | 7 +++++++
configure.in | 6 +++---
2 files changed, 10 insertions(+), 3 deletions(-)
commit cbd18a1c19f4fa6d54a7727a8f8c81d37479f3c7
Author: Luis Medinas <[email protected]>
Date: Sun Sep 28 16:06:54 2008 +0000
Remove internal NDesk-DBus-sharp. Fixes bgo #553292.
2008-09-28 Luis Medinas <[email protected]>
* configure.in:
* Makefile.am:
Remove internal NDesk-DBus-sharp. Fixes bgo #553292.
svn path=/trunk/; revision=1225
ChangeLog | 7 +
Makefile.am | 1 -
configure.in | 15 +-
deps/Makefile.am | 1 -
deps/dbus-sharp-glib/AssemblyInfo.cs | 12 -
deps/dbus-sharp-glib/GLib.IO.cs | 226 --------
deps/dbus-sharp-glib/GLib.cs | 55 --
deps/dbus-sharp-glib/Makefile.am | 29 -
deps/dbus-sharp-glib/NDesk.DBus.GLib.dll.config.in | 5 -
deps/dbus-sharp/Address.cs | 160 ------
deps/dbus-sharp/AssemblyInfo.cs | 21 -
deps/dbus-sharp/Authentication.cs | 136 -----
deps/dbus-sharp/Bus.cs | 173 ------
deps/dbus-sharp/BusObject.cs | 304 -----------
deps/dbus-sharp/Connection.cs | 538 ------------------
deps/dbus-sharp/DBus.cs | 93 ----
deps/dbus-sharp/DProxy.cs | 79 ---
deps/dbus-sharp/ExportObject.cs | 115 ----
deps/dbus-sharp/Introspection.cs | 295 ----------
deps/dbus-sharp/IntrospectionSchema.cs | 118 ----
deps/dbus-sharp/Makefile.am | 52 --
deps/dbus-sharp/Mapper.cs | 346 ------------
deps/dbus-sharp/MatchRule.cs | 228 --------
deps/dbus-sharp/Message.cs | 90 ---
deps/dbus-sharp/MessageFilter.cs | 58 --
deps/dbus-sharp/MessageReader.cs | 436 ---------------
deps/dbus-sharp/MessageWriter.cs | 455 ----------------
deps/dbus-sharp/PendingCall.cs | 63 ---
deps/dbus-sharp/Protocol.cs | 319 -----------
deps/dbus-sharp/Server.cs | 41 --
deps/dbus-sharp/Signature.cs | 568 --------------------
deps/dbus-sharp/SocketTransport.cs | 60 --
deps/dbus-sharp/Transport.cs | 55 --
deps/dbus-sharp/TypeDefiner.cs | 173 ------
deps/dbus-sharp/TypeImplementer.cs | 352 ------------
deps/dbus-sharp/UnixMonoTransport.cs | 59 --
deps/dbus-sharp/UnixNativeTransport.cs | 277 ----------
deps/dbus-sharp/UnixTransport.cs | 37 --
deps/dbus-sharp/Wrapper.cs | 149 -----
39 files changed, 12 insertions(+), 6189 deletions(-)
commit 2f0a315fb5248b92b7d86f6b595af8014089f9f7
Author: Wouter Bolsterlee <[email protected]>
Date: Sun Sep 28 15:41:26 2008 +0000
Update for the upcoming 0.8.10 release.
2008-09-28 Wouter Bolsterlee <[email protected]>
* NEWS: Update for the upcoming 0.8.10 release.
svn path=/trunk/; revision=1224
ChangeLog | 2 +-
NEWS | 10 +++++++++-
2 files changed, 10 insertions(+), 2 deletions(-)
commit 3883ccdaeae45669b28572db477ac1c837b76749
Author: Wouter Bolsterlee <[email protected]>
Date: Sun Sep 28 15:37:45 2008 +0000
update for the upcoming 0.8.10 release.
2008-09-28 Wouter Bolsterlee <[email protected]>
* NEWS: (Partly) update for the upcoming 0.8.10 release.
svn path=/trunk/; revision=1223
ChangeLog | 3 +--
NEWS | 6 ++++--
2 files changed, 5 insertions(+), 4 deletions(-)
commit 2da2609d6dc692be319856811c4d4f3d734ddc63
Author: Wouter Bolsterlee <[email protected]>