File: ChangeLog

package info (click to toggle)
goobox 3.0.1-5
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,728 kB
  • sloc: ansic: 16,719; sh: 11,046; makefile: 363; xml: 18
file content (1759 lines) | stat: -rw-r--r-- 37,853 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
commit 43240cdf7f1d137826e4732a91de0794aa2addfb
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:   2012-03-29

    updated the NEWS

M	NEWS

commit 09370001ee86445bafd4e47913d87ebbb3bd66ac
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2012-03-29

    fixed install/uninstall of the icons

M	data/icons/256x256/apps/Makefile.am
M	data/icons/48x48/apps/Makefile.am
M	data/icons/Makefile.am

commit 2642a8d9063aaddde0f0de2fefbf64d6387d8dc6
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2012-03-29

    updated for version 3.0.1

M	NEWS
M	configure.ac

commit 8e281ef84b6bbd8a4af3f957d7fa585cf947ab3d
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2012-03-29

    explicitly link to the math library

M	configure.ac
M	src/Makefile.am

commit ce80e362bd3e1b71349de042c249fd283dd2eff9
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:	2012-02-02

    Updated Slovenian translation

M	help/sl/sl.po

commit b0e2e705890b765ab46af91338628cfbffa60b5c
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:	2012-01-11

    Updated Japanese translation

M	po/ja.po

commit bf297dc0c030c0d6f2baf45defb379ff93ae2e20
Author: Marek Černocký <marek@manet.cz>
Date:	2011-12-14

    Updated Czech translation

M	help/cs/cs.po

commit a5f38ecb06f6962a4180371453dbd01f8658e8f8
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-12-01

    updated git.mk

M	git.mk

commit cec45ee676c7da516a5f2d029ba045131a25718d
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	2011-11-24

    Update French translation

M	help/fr/fr.po

commit 0bd86d9c4bd304fc962d5b78cd678cc9f75573b9
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	2011-11-24

    Revert "Update French translation"

    Oops, that was the wrong file.

    This reverts commit 0d38ebf8e60813fe026a31c61306040e4e4d09ba.

M	po/fr.po

commit 0d38ebf8e60813fe026a31c61306040e4e4d09ba
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	2011-11-24

    Update French translation

M	po/fr.po

commit ce5e06ff4902032cad76865c892d4c2e583ef061
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2011-10-18

    [l10n] Updated German doc translation

M	help/de/de.po

commit 42920f76eec54c1334f83adc9cae042aead16b60
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-10-03

    updated for version 3.0.0

M	NEWS
M	configure.ac

commit 45edc6a592a46a4ce89dc8a136464c87b76e315c
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-10-03

    select the current drive in the preferences dialog

M	data/ui/preferences.ui
M	src/dlg-preferences.c

commit c75e8e9dc4f1e7b145911a545d6618da17176eeb
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-10-03

    removed use of deprecated functions, require latests version of glib
    and gtk+

M	configure.ac
M	src/Makefile.am
M	src/goo-player-info.c
M	src/goo-player-info.h
M	src/goo-volume-tool-button.c
M	src/goo-window.c
M	src/gth-window.c
M	src/gtk-file-chooser-preview.c
M	src/gtk-utils.c

commit 2daa837e42e6f5681d64d5973863308d621552e5
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	2011-08-29

    Updated Spanish translation

M	help/es/es.po

commit 2d0258f8dac0fd84180287d45c7e1c8467d975a4
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-08-22

    updated for version 2.90.2

M	NEWS
M	configure.ac

commit b6360374e9061461f095365b6b18abff8e23f298
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-08-22

    removed unused variables

M	src/goo-volume-tool-button.c
M	src/goo-window.c
M	src/gtk-file-chooser-preview.c

commit bf1bb3d807015d1437187ea4fd3304b208e5ce5e
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-08-22

    fixed call to the main help page

M	src/actions.c
M	src/gtk-utils.c

commit 445a708a2da6be77fa3d0a11d2750ce4b081e624
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-08-22

    removed unused file

D	help/goobox.omf.in

commit 4fef964435162ad9e3c7351df41404ef534f9337
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-08-22

    ported the documentation to Mallard

D	help/C/goobox.xml
A	help/C/index.page
M	help/C/legal.xml
A	help/C/preferences.page
A	help/C/shortcuts.page
M	help/Makefile.am
M	src/actions.c
M	src/dlg-preferences.c

commit 807aea171cbc6b9bb16d85736f3786a3ff92d30c
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-08-22

    Fixed loading of the CDs

    Use device instead of disc_id which is always NULL.

M	src/metadata.c

commit 75d0e703597a3e7bc8005eaf6728355da76789a4
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2011-07-15

    [l10n] Updated German translation

M	po/de.po

commit ce6a2e0de05925dcdbd31752599e328dad6523fe
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-08

    removed preference for the dark theme

M	src/main.c

commit 4dea17c6134474683e941494db991fc1614d8ba1
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:	2011-06-10

    Updated Slovenian translation

M	po/sl.po

commit 61ee24fa2e01ec8a52f3b9351f3e21597e7c5382
Author: Marek Černocký <marek@manet.cz>
Date:	2011-06-09

    Updated Czech translation

M	po/cs.po

commit 3466a3c470164771fdf37feee06046f2bc0691a2
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2011-06-08

    [l10n] Updated German translation

M	po/de.po

commit 136dd1005a5df9404cea5994bb0cb1567ba3a4c3
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:	2011-06-08

    Updated Japanese translation.

M	po/ja.po

commit 6a5cc3f3359141b1ce0ffa75ec0eaaf8ef9b62cf
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-06

    fixed version number

M	NEWS
M	configure.ac

commit d673a2534e128d5767c397fe231be67ae5ffded5
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-06

    updated NEWS

M	NEWS

commit 48927194879f84fd2a50bc4b46be7deca5ba2010
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	2011-06-06

    Updated Spanish translation

M	po/es.po

commit 12b435285fdc07396d232034b7ae9f625877fc9b
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-06

    fixed crash when closing the properties dialog while searching

M	src/dlg-properties.c

commit d8fd2dfaa325c319a1fab7f1af599bc018d4ca3c
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-05

    show the artist before the album title

M	src/goo-player-info.c

commit 462dbda8ee18b36091eff3f74801ae7bef94e969
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-05

    fixed notification text in all possible player states

M	src/goo-window.c

commit 58fdae80177a7f0ec5fc5e790b655798b2f79aa9
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-05

    check whether the asin is void before using it

M	src/goo-window.c

commit 8db1142f915138c026f2d24c864454bade55fa07
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-05

    update the notification area when the metadata is updated

M	src/goo-window.c

commit 3f6b839e098526dd44dc9db4345e77a1f64c7e6c
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-05

    notify the event in an idle function to allow the player to update
    its state

M	src/goo-window.c
M	src/main.c
M	src/main.h

commit bdd14c6ae1eb4e6dce829120e17c5c009fe25ab8
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-05

    don't use the status icon with GNOME Shell

M	src/goo-window.c
M	src/goo-window.h
M	src/main.c
M	src/main.h

commit 3b373edf3c79cb489ea4333edd671fc067286668
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-05

    do not open a new window when restoring a session

M	src/main.c

commit 2e8046baed5510ab6def62e090d33c26cd2d7aef
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-05

    Ported to GtkApplication

M	configure.ac
M	src/goo-window.c
M	src/gth-window.c
M	src/main.c
M	src/main.h

commit a93b9d87c042c8cbae8b36f6122edcd67eb74105
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-04

    fixed status icon menu positioning

M	src/goo-window.c

commit 582dac34e545fe193d33fb0cdabcee8766bd8e04
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-04

    async metadata functions

M	src/album-info.c
M	src/album-info.h
M	src/dlg-properties.c
M	src/goo-player.c
M	src/metadata.c
M	src/metadata.h

commit ed0f3512809c0ffe867b22a8b936fe4d44d9535c
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-04

    Ported to libmusicbrainz 3

M	configure.ac
M	data/ui/properties.ui
M	src/album-info.c
M	src/dlg-properties.c
M	src/goo-player.c
M	src/metadata.c
M	src/metadata.h

commit b4948f1f24a2617178c166d403e5072f0a693089
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	2011-06-04

    Updated Spanish translation

M	po/es.po

commit 87d8ac0669202dda6d84ed1e6b807e5d4aae7871
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-03

    fixed hi-def icon

M	data/icons/256x256/apps/goobox.png

commit 9cacad5078ccddf18fe6225c61e56e5d843c3323
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-03

    fixed errors issued by make distcheck

M	data/Makefile.am
M	po/POTFILES.in
M	po/update-potfiles.sh

commit cf4cea7ae53bc11bad51bd1f57fa5f7541b5c861
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-03

    added a high definition icon

M	configure.ac
C065	data/icons/Makefile.am	data/icons/256x256/Makefile.am
A	data/icons/256x256/apps/Makefile.am
A	data/icons/256x256/apps/goobox.png
M	data/icons/48x48/apps/goobox.png
M	data/icons/Makefile.am

commit d56eadb4c9c6c0ab7e4dbfc23a55c24a0359bf20
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-02

    bumped version number

M	configure.ac

commit 4fa343a247d4a3539ca13d4ac64819d126294046
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-02

    updated copyright note

M	src/actions.c

commit d3e91977d07cb66ce13814ad5331c851ea069025
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-02

    move the volume button to the right of the toolbar

M	src/goo-window.c

commit ec89722f526ebc04d2a608c9e5b981a69d486566
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-02

    preferer the dark theme

M	src/main.c

commit b304da9bb595fdbfc8a3e3040f568f740bda25de
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-02

    use symbolic icons

M	src/goo-stock.h
M	src/goo-volume-tool-button.c
M	src/goo-window.c
M	src/ui.h

commit 262eaa0a20e0696b039d0a7744be712c1b9464bb
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-02

    ported to GDBus

M	configure.ac
M	src/Makefile.am
M	src/goo-volume-tool-button.c
M	src/goo-window.c

commit ccf535f61aee9067b414dd2ab0602a9a7b08b263
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-02

    removed deprecated properties from ui files

M	data/ui/cover-chooser.ui
M	data/ui/extract.ui
M	data/ui/format-options.ui
M	data/ui/preferences.ui
M	data/ui/properties.ui
M	data/ui/ripper.ui

commit 6ca4f507ed7c10c890c0f3ff3d394904c75347fc
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-02

    fixed parsing of the google search results

M	src/dlg-cover-chooser.c
M	src/glib-utils.c

commit a53c881473fbe379c60ca58fdeed422384c394d1
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-02

    set the primary_toolbar class to the main toolbar

M	src/goo-window.c

commit fe6b198abe25f1daeada2cf4b03e3fec19a227ef
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-06-02

    ported to GSettings

M	configure.ac
M	copy-n-paste/Makefile.am
M	copy-n-paste/eggdesktopfile.c
M	copy-n-paste/eggdesktopfile.h
M	copy-n-paste/eggsmclient-private.h
M	copy-n-paste/eggsmclient-xsmp.c
M	copy-n-paste/eggsmclient.c
M	data/Makefile.am
A	data/goobox.convert
D	data/goobox.schemas.in
A	data/org.gnome.Goobox.gschema.xml.in
M	po/POTFILES.in
M	src/Makefile.am
M	src/actions.c
M	src/dlg-extract.c
M	src/dlg-preferences.c
M	src/dlg-ripper.c
M	src/gnome-desktop-thumbnail.c
M	src/gnome-desktop-thumbnail.h
M	src/goo-player-info.c
M	src/goo-player.c
M	src/goo-volume-tool-button.c
M	src/goo-window.c
M	src/gtk-utils.c
M	src/gtk-utils.h
M	src/main.c
D	src/preferences.c
M	src/preferences.h
M	src/typedefs.h

commit c9b922bcdc5bd1f625444d378b8567623fb9a076
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-05-08

    gtk3: first batch of changes

M	configure.ac
M	src/Makefile.am
M	src/actions.c
M	src/dlg-extract.c
M	src/dlg-preferences.c
M	src/dlg-ripper.c
D	src/gconf-utils.c
D	src/gconf-utils.h
M	src/gnome-desktop-thumbnail.c
M	src/goo-player-info.c
M	src/goo-player.h
M	src/goo-volume-tool-button.c
M	src/goo-window.c
M	src/goo-window.h
M	src/gtk-file-chooser-preview.c
M	src/gtk-utils.c
M	src/main.c
M	src/main.h
M	src/preferences.c
M	src/typedefs.h

commit bcfa0c77f5d8fcd19392b1483b5ed596da448390
Author: Andrew Munkres <amunkres@nyx.net>
Date:	2011-04-20

    libnotify 0.7 API support

    The function "notify_notification_new_with_status_icon" has been
    removed from libnotify, so goobox won't build against libnotify 0.7

M	src/main.c

commit 3e604ace1f4ceb78c88e6b80e7e5f0563152f70a
Author: Yinghua Wang <wantinghard@gmail.com>
Date:	2011-04-11

    Initial Simplified Chinese translaton

M	po/zh_CN.po

commit a2b7437ea773a05c949caccb473bfa77c498dfbb
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	2011-02-21

    Updated Spanish translation

M	help/es/es.po

commit 658a51b478a9b4a83f4e777bfda5b7d5ead81649
Author: Mateus Zenaide <matzenh@gmail.com>
Date:	2011-01-12

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit e1130badc739570e50726234405e4831c4e22b7b
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2011-01-04

    fixed cppcheck warning

    use g_get_user_special_dir instead of a custom implementation

M	src/glib-utils.c
M	src/glib-utils.h

commit b65851bf712363fe58a9cab0293e244897e95edc
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:	2010-12-26

    Updated Hungarian translation

M	po/hu.po

commit 24df895507420edf3ffde17eb06be86c8f8b7092
Author: Andrea Zagli <azagli@libero.it>
Date:	2010-12-13

    [l10n] Updated Italian translation

M	po/it.po

commit 1e202af8c93b7dfe422386c74b67eb22f074ab42
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:	2010-11-18

    Updated Basque language

M	po/eu.po

commit 53c21f6c0ed3acb88dd1b283020e6b8a4eb7ad8a
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:	2010-11-17

    Updated Danish translation

M	po/da.po

commit 0963ab9894c22643d90243070fbd065623330010
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-11-15

    updated for version 2.2.0

M	NEWS
M	configure.ac

commit 31e6fb9c33aac4abc8e93967edd28d1b418793c1
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	2010-10-22

    Added sl for Slovenian translation

M	help/Makefile.am

commit a3f61813a59b89bd2c449e4356cb8c9cded6dac5
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	2010-10-22

    Added Slovenian translation

A	help/sl/sl.po

commit 171670ef3c80b262a1787506c00cd7a6353336f1
Author: Bruno Brouard <annoa.b@gmail.com>
Date:	2010-08-19

    Updated French translation

M	po/fr.po

commit f70f6433f80cb63e00e811ba8e13fc205a18dd41
Author: Aron Xu <aronxu@gnome.org>
Date:	2010-07-31

    Update Simplified Chinese translation.

M	po/zh_CN.po

commit 82ed4e9b8fb15bc39489df1077e0b7c7ce00dc9a
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-31

    use GETTEXT_PACKAGE as translation domain, instead of PACKAGE

M	copy-n-paste/eggsmclient.c

commit e55efd4d0f7e87dbb531a5df0e831ebdb4b5f84f
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-30

    Updated italian translation

M	po/it.po

commit beb3fc66359248673229dd6b8a845854d8b6aa98
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-30

    fixed translation of some strings on the command line help

    [bug #625669]

M	copy-n-paste/eggsmclient.c
M	src/main.c

commit 1529f9c54a15868e9d081b12cc3a8791e4d425d6
Author: Daniel Nylander <po@danielnylander.se>
Date:	2010-07-27

    Updated Swedish translation

M	po/sv.po

commit a2688e9921726e48630dfcc5b835a19f6210d849
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-15

    fixed compilation when GSEAL and *DEPRECATED* macros are enabled

M	configure.ac
M	src/dlg-preferences.c
M	src/goo-window.c
M	src/gtk-utils.c
M	src/main.c

commit 2de4d807cbcea01f50c78eb71e95da918f666f8e
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-15

    update the README file

M	README

commit d01c3182ab5550e4501b2539d31473ff31d43e0d
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-15

    removed use of GtkTooltips

M	src/goo-player-info.c
M	src/goo-volume-tool-button.c
M	src/goo-window.c

commit 81405504c970f892974a187f98651337899a6678
Author: Adrian Guniš <andygun@seznam.cz>
Date:	2010-07-13

    Update Czech Translation

M	po/cs.po

commit 3d4c96818cf51722a02d42f704a46438df648c10
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	2010-07-13

    Updated Slovenian translation

M	po/sl.po

commit 200ddfc6e2e408bdab8ce7cb6218bc0a2566fce3
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:	2010-07-13

    Updated Japanese translation.

M	po/ja.po

commit 7d64a027526a1a95c7113e930a45517ed54483a7
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-12

    updated news for version 2.1.2

M	NEWS

commit 4b2e7ea69fa6530fdc734ac0b321bc09c6f69f55
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-12

    Flac quality level 9 does not work

    [bug #624188]

M	data/ui/format-options.ui
M	src/dlg-preferences.c

commit 16246136b316f4ca3b26760d2bc7057dbc53e48c
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:	2010-07-10

    Updated Slovenian translation

M	po/sl.po

commit 5c537013a34fb9952f296b696dfef91428ecbabe
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-06

    make sure the cache directory exists before saving the file

    [bug #623607]

M	src/album-info.c
M	src/goo-player.c

commit 889d461b746b9147bce3cf1b07b0337c2e383e88
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2010-07-05

    [i18n] Updated German translation

M	po/de.po

commit 42cce5948885c97141173b521993dc64b799cb50
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	2010-07-04

    Updated Spanish translation

M	po/es.po

commit 104956d610a3bb69e26dab4beb876f1696b2c836
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-04

    use the home dir if the destination is null

M	src/dlg-preferences.c
M	src/dlg-ripper.c

commit acfbde185b2f0b7fddd2a32d1ceeaa23375fc9c3
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-07-04

    display the folder uri in the error dialog

M	src/dlg-ripper.c

commit f9252bf2e8d0ae495d43645952af3bf86b563dfc
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-06-24

    added the .doap file

A	goobox.doap

commit 644bf4b7be2ac8dadaa38e5720bff3d46d8d1b77
Author: Djavan Fagundes <djavan@comum.org>
Date:	2010-06-13

    Updated Brazilian Portuguese

M	po/pt_BR.po

commit e90b60d5f6e5936b2a889312e83b7d9ce73eb17f
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-06-13

    fixed error when a gstreamer plugin is not available

    application is null when a gstreamer plugin is not available

M	src/main.c

commit 8b0b22688f51a726736e5be175859b51e47c64be
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-06-13

    check whether the folder is NULL before using it

M	src/dlg-ripper.c

commit 890e531641f491f018af7ab7bc0816b437a1a25b
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2010-06-13

    bumped version number

M	configure.ac

commit a4f9631f01f3f3590ac075909fc7a92cec8e0556
Author: Petr Kovar <pknbe@volny.cz>
Date:	2010-05-02

    Add Czech help translation by Ondrej Pohl

M	help/Makefile.am
A	help/cs/cs.po

commit 2cc84af75ed890f90a5222a6e4188faaaf657d41
Author: Andika Triwidada <andika@gmail.com>
Date:	2010-04-26

    Updated Indonesian translation

M	po/id.po

commit d770e4cc807f20564b14e3967937ada21f3757c2
Author: Andika Triwidada <andika@gmail.com>
Date:	2010-04-14

    Initial Indonesian translation by Imam Musthaqim
    Updated Indonesian translation
    Added id to LINGUAS

M	po/LINGUAS
A	po/id.po

commit 94396e70a7d80edf6535281f5056bc2b5bd5ed23
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:	2010-03-18

    Updated Basque language

M	po/eu.po

commit ab3ccb0e35f782646bb842b0f14a3cb9cfc994b1
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:	2010-02-23

    Updated Danish translation

M	po/da.po

commit 9e594045496ea22d080057ab42ae475bdee2d755
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	2010-02-16

    Added initial Spanish translation

M	help/es/es.po

commit 2b74cce32c2addff7996f0ff162d157cfbd89905
Author: Claude Paroz <claude@2xlibre.net>
Date:	2010-02-02

    Updated French translation of the manual

    Contributed by Julien Hardelin and Claude Paroz

M	help/fr/fr.po

commit 16060bd2a591bee07dbf985cdb1b108f90112e29
Author: Claude Paroz <claude@2xlibre.net>
Date:	2010-02-02

    Updated French translation

    Contributed by Julien Hardelin and Claude Paroz

M	po/fr.po

commit 97a1f5918d7ecaa9963bf9d9da907c781bd898e4
Author: Petr Kovar <pknbe@volny.cz>
Date:	2010-01-17

    Updated Czech translation by Adrian Gunis

    Reviewed by: Lucas Lommer.

M	po/cs.po

commit 161489ab31fa264e0675a6e7af8c14b30930da44
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:	2010-01-01

    Updated Slovenian translation

M	po/sl.po

commit c33aef0c4f84142eb9dd73acc3157c7a4d155df5
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:	2009-12-30

    Updated German help translation

M	help/de/de.po

commit c1a987d667ca1136150204d8417019a0193e0de3
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2009-12-27

    Updated German translation

M	help/de/de.po

commit a88f2231e014ca0b11aacc57f7a696548d484b32
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	2009-12-19

    Updated Spanish translation

M	po/es.po

commit 1a655accd6cc04fefd880e5aeae31b6ebd0ef1f7
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	2009-12-17

    Added sl for Slovenian translation

M	po/LINGUAS

commit 9a5c63b11b659a1a80f45a3bbfb3594a67222245
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:	2009-12-17

    Updated Slovenian translation

A	po/sl.po

commit 0b3c65abd1868bfda369cf261cff785c0d2d8cdf
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2009-12-14

    Updated German translation

M	po/de.po

commit 8c6c21e75ab5ecb1e11014a3be43cc54b72a3106
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-12-14

    save pixbufs.h in the build directory

    [bug #604437]

M	po/POTFILES.in
M	src/icons/Makefile.am

commit 83296aa47fde500b729ee9ec4cd197b7a28d7a91
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2009-12-13

    Updated German translation

M	po/de.po

commit a865942bcc77870898a259647916b55f378ef133
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2009-12-12

    Updated German translation

M	po/de.po

commit 88dae745ca47d523df7b3550af500eaa4999c9bb
Author: Helge Kreutzmann <debian@helgefjell.de>
Date:	2009-12-07

    Polishing of German translation and sync with English

    Signed-off-by: Jens Seidel <jensseidel@users.sf.net>

M	help/de/de.po
M	po/de.po

commit 82b93c1d37d82b8aeadf813f29efa133dcbbca08
Author: Helge Kreutzmann <debian@helgefjell.de>
Date:	2009-12-07

    Updated German translation

    Signed-off-by: Jens Seidel <jensseidel@users.sf.net>

M	help/de/de.po
M	po/ChangeLog
M	po/de.po

commit 9778660130b1b906e99dbff7f78c2e5025b5b370
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	2009-11-29

    Updated Spanish translation

M	help/es/es.po

commit 75d116421d524e914854ff9f731560c5eda98cc4
Author: Felix Riemann <friemann@gnome.org>
Date:	2009-11-25

    Fix GTK+ single includes

M	src/actions.h
M	src/goo-volume-tool-button.h
M	src/gtk-file-chooser-preview.h
M	src/preferences.h

commit c607af9305366bf6a9d4d3fb0d25608e4ca0573a
Author: Helge Kreutzmann <debian@helgefjell.de>
Date:	2009-11-23

    fixed white spaces in the license text

M	src/actions.c

commit 75fd302d73045c15eb315ca8bcc369cfecd597d6
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-21

    fixed a syntax error in the manual

M	help/C/goobox.xml

commit 8b77653d67f7b5ecd01b65abb68a7e15a2b50a13
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:	2009-11-21

    Updated Japanese translaton.

M	po/ja.po

commit 9984dfa59ea519801e7af676d777ed19f1aee9d9
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-16

    updated for version 2.1.1

M	NEWS
M	configure.ac
M	src/Makefile.am

commit 9ba005642188ed841ce45a10496a00bcc228fbfe
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-16

    fixed cover autofetch logic

M	src/goo-window.c

commit 4f618552944778c1e808d17ec054a5fd3376f34a
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-15

    update the statusbar correctly, removed the fake signal emition

M	src/goo-player-info.c
M	src/goo-player.c
M	src/goo-player.h
M	src/goo-window.c

commit 00962d890b06a50b780f7406ac31e272185a546b
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-15

    emit a fake EJECT signal to update the window state correclty

    when no disc is present in the drive no eject signal is emitted
    so we need to emit a fake eject signal when a new disc is inserted

M	src/goo-player.c
M	src/goo-window.c

commit 3c37ce51d073b0ec159479953b766916a4ad3357
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-15

    respect the autoplay setting even at start up time

M	src/goo-window.c

commit c5e93d90ba4799439df130f1fc8df9c640777684
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-15

    changed some menu items descriptions

M	src/goo-window.c
M	src/ui.h

commit 8d8ecf75c0b033a4ff23388fa5f2826b914b79d6
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-15

    do not alow to change the window height

M	src/goo-window.c

commit 9361effe5f4171e80b543a8c1e7a27a99a307504
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-15

    show the total time in the status icon tooltip

M	src/goo-player-info.c
M	src/goo-window.c

commit ebf6a0fd6c5d0477de349037b7fab469d172a9e3
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-15

    always show the whole track list, without scrollbars

M	src/goo-window.c

commit 7f3360381d7ee06c1d1c72b33a94c6f7380d4034
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-14

    added documentation for the preferences dialog

M	help/C/goobox.xml
M	src/actions.c

commit d4bf42d2c822746ca32a30a19a717ed608e375fb
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-14

    update the status icon image and text

M	src/goo-window.c

commit eea08587b1af9faa8ed3ef369ce559a4191473f4
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-14

    unlock the drive before closing

M	src/goo-player.c

commit 5172e6b1c851b5465655a8079f803c5c23b380e2
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-14

    attach the notification to the status icon

M	src/main.c

commit 37e33f282b21d18ac935587a8b80c3509c2f0dfa
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-14

    register as cd player

M	data/goobox.desktop.in.in

commit 918699ebe667a3aabc4051982d4ec66ba272c44d
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-14

    allow to change drive

M	src/dlg-preferences.c
M	src/goo-player.c
M	src/goo-player.h
M	src/goo-window.c
M	src/goo-window.h
M	src/main.c
M	src/main.h

commit edd725fb20166a95b9c75a577e4e51e402fcb528
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-14

    make the license translatable

M	src/actions.c

commit 4e6df3c495beba623275d6fe4b0e6f25e5255502
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-14

    added the status icon

M	src/goo-player-info.c
M	src/goo-player-info.h
M	src/goo-window.c
M	src/goo-window.h
M	src/main.c

commit 640d7bedd06a1edb28cb2a43f62129c1424040ae
Author: Daniel Nylander <po@danielnylander.se>
Date:	2009-11-13

    Updated Swedish translation

M	po/sv.po

commit 9b623aff84019c6bb227b3e3edabb0807c00d073
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-13

    ported to modern libraries, removed use of deprecated functions

    huge commit that ports goobox in the modern age.

M	AUTHORS
D	ChangeLog
M	MAINTAINERS
M	Makefile.am
M	autogen.sh
A	configure.ac
D	configure.in
A	copy-n-paste/Makefile.am
A	copy-n-paste/eggdesktopfile.c
A	copy-n-paste/eggdesktopfile.h
A	copy-n-paste/eggsmclient-private.h
A	copy-n-paste/eggsmclient-xsmp.c
A	copy-n-paste/eggsmclient.c
A	copy-n-paste/eggsmclient.h
D	data/GNOME_Goobox.server.in
M	data/Makefile.am
D	data/glade/Makefile.am
D	data/glade/cover_chooser.glade
D	data/glade/extract_dialog.glade
D	data/glade/format_dialog.glade
D	data/glade/preferences.glade
D	data/glade/properties.glade
D	data/glade/ripper_dialog.glade
D	data/goobox.applications
M	data/goobox.schemas.in
R100	data/glade/.cvsignore	data/ui/.cvsignore
A	data/ui/Makefile.am
A	data/ui/cover-chooser.ui
A	data/ui/extract.ui
A	data/ui/format-options.ui
A	data/ui/preferences.ui
A	data/ui/properties.ui
A	data/ui/ripper.ui
M	po/POTFILES.in
A	po/update-potfiles.sh
D	src/GNOME_Goobox.idl
M	src/Makefile.am
M	src/actions.c
M	src/album-info.c
D	src/bacon-cd-selection.c
D	src/bacon-cd-selection.h
D	src/cd-drive.c
D	src/cd-drive.h
M	src/dlg-cover-chooser.c
M	src/dlg-extract.c
M	src/dlg-preferences.c
M	src/dlg-properties.c
M	src/dlg-ripper.c
M	src/dlg-ripper.h
D	src/dvd_plus_rw_utils.cpp
D	src/eggtrayicon.c
D	src/eggtrayicon.h
D	src/file-utils.c
D	src/file-utils.h
M	src/gconf-utils.c
M	src/gconf-utils.h
A	src/gio-utils.c
A	src/gio-utils.h
M	src/glib-utils.c
M	src/glib-utils.h
A	src/gnome-desktop-thumbnail.c
A	src/gnome-desktop-thumbnail.h
A	src/gnome-thumbnail-pixbuf-utils.c
D	src/goo-application.c
D	src/goo-application.h
D	src/goo-cdrom-bsd.c
D	src/goo-cdrom-bsd.h
D	src/goo-cdrom-linux.c
D	src/goo-cdrom-linux.h
D	src/goo-cdrom-solaris.c
D	src/goo-cdrom-solaris.h
D	src/goo-cdrom.c
D	src/goo-cdrom.h
M	src/goo-marshal.list
M	src/goo-player-info.c
M	src/goo-player-info.h
M	src/goo-player.c
M	src/goo-player.h
M	src/goo-stock.c
M	src/goo-volume-tool-button.c
M	src/goo-volume-tool-button.h
M	src/goo-window.c
M	src/goo-window.h
D	src/gth-image-list.c
D	src/gth-image-list.h
A	src/gth-user-dir.c
C061	src/typedefs.h	src/gth-user-dir.h
A	src/gth-window.c
A	src/gth-window.h
D	src/gthumb-marshal.list
D	src/gthumb-slide.c
D	src/gthumb-slide.h
M	src/gtk-file-chooser-preview.c
M	src/gtk-utils.c
M	src/gtk-utils.h
M	src/main.c
M	src/main.h
M	src/preferences.c
M	src/preferences.h
M	src/track-info.c
D	src/transport.hxx
M	src/typedefs.h
M	src/ui.h

commit 0a62f5879047ae1bff107fff197a3dac8fb5fdcf
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-03

    removed executable flag

M	po/ne.po

commit ecde6c1f88599c4d4ed028c4cce430b73e4ca3b0
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-11-03

    fixed plural form

M	po/ko.po

commit 75863eff4fa10acc55edcfbcb7528e3845408539
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-09-28

    updated for version 2.0.1

M	NEWS

commit c7e776bf2c80ae8098f287fd1b2aa58ff5b15de4
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-09-26

    bumped version number

M	configure.in

commit a4becbcb4a36f3964c7f06a065ad62e7cfa81db4
Author: Peter De Wachter <pdewacht@gmail.com>
Date:	2009-09-26

    goobox can't find CD device ("Invalid device")

    [debian bug #547723]

M	src/cd-drive.c

commit 15c4d2f07811c6540a99ff0ac913d289ce57e248
Author: Paolo Bacchilega <paobac@src.gnome.org>
Date:	2009-07-10

    Use git.mk to generate .gitignore files

M	Makefile.am
M	data/Makefile.am
M	data/glade/Makefile.am
M	data/icons/48x48/Makefile.am
M	data/icons/48x48/apps/Makefile.am
M	data/icons/Makefile.am
A	git.mk
M	help/Makefile.am
M	src/Makefile.am
M	src/icons/Makefile.am

commit 87422fd543858d8f426d51b5750fe55aef4d895c
Author: Paolo Bacchilega <paobac@svn.gnome.org>
Date:	2009-04-12

    Fixed bug #573162 – Reports "Invalid" device for all my CD drives
    Patch

    2009-04-12	Paolo Bacchilega  <paobac@svn.gnome.org>

	* src/main.c:

	Fixed bug #573162 – Reports "Invalid" device for all my
	CD drives
	Patch by James Westby

    svn path=/trunk/; revision=376

M	ChangeLog
M	src/main.c

commit aee16cc6538f369c5cf6c4cebe362f7a02830468
Author: Paolo Bacchilega <paobac@svn.gnome.org>
Date:	2009-04-12

    added a format argument.

    2009-04-12	Paolo Bacchilega  <paobac@svn.gnome.org>

	* src/dlg-cover-chooser.c (search_result_saved_cb):
	* src/gconf-utils.c (eel_gconf_handle_error): added a format
	argument.

    2009-04-12	Paolo Bacchilega  <paobac@svn.gnome.org>

	* src/goo-window.c:
	* src/goo-volume-tool-button.c:
	* src/goo-player-info.c:
	* src/goo-player.c:
	* src/goo-cdrom.c:

	Fixed bug #572212 – use type macros to define types
	Patch by Felix Riemann

    svn path=/trunk/; revision=375

M	ChangeLog
M	src/dlg-cover-chooser.c
M	src/gconf-utils.c
M	src/goo-cdrom.c
M	src/goo-player-info.c
M	src/goo-player.c
M	src/goo-volume-tool-button.c
M	src/goo-window.c

commit 752e93aa15da466b472e7defab7f070f80b7a36a
Author: Paolo Bacchilega <paobac@svn.gnome.org>
Date:	2009-04-12

    added AC_PROG_CXX

    2009-04-12	Paolo Bacchilega  <paobac@svn.gnome.org>

	* configure.in: added AC_PROG_CXX

	* src/main.c:

	Fixed bug #571207 – Notification action buttons should be shown
	only if notification daemon supports actions.
	Patch by Cody Russell

    svn path=/trunk/; revision=374

M	ChangeLog
M	INSTALL
M	configure.in
M	src/main.c

commit d97c7e44fa8e321e22d20e03dab37a8ecde10c71
Author: Paolo Bacchilega <paobac@svn.gnome.org>
Date:	2009-02-02

    use gtk_widget_get_action instead of g_object_get_data.

    2009-02-02	Paolo Bacchilega  <paobac@svn.gnome.org>

	* src/goo-window.c: use gtk_widget_get_action instead of
	g_object_get_data.

	Fixes bug #568896 – don't rely on GtkAction implementation
	details

    svn path=/trunk/; revision=373

M	ChangeLog
M	src/goo-window.c

commit 7fb2988d1e9f866ec366c4f4ff07cb61a52978b1
Author: Petr Kovar <pknbe@volny.cz>
Date:	2008-10-26

    Fixed Czech translation by Adrian Gunis (bug #536674).

    2008-10-26	Petr Kovar  <pknbe@volny.cz>

	* cs.po: Fixed Czech translation by Adrian Gunis
	(bug #536674).

    svn path=/trunk/; revision=372

M	po/ChangeLog
M	po/cs.po

commit b7caef40a7153a258500e3227170ed292fa07313
Author: Paolo Bacchilega <paobac@svn.gnome.org>
Date:	2008-10-04

    updated from libegg.

    2008-10-04	Paolo Bacchilega  <paobac@svn.gnome.org>

	* src/eggtrayicon.c: updated from libegg.

	Fixes bug #554876 – support transparent tray icon.

    svn path=/trunk/; revision=371

M	ChangeLog
M	src/eggtrayicon.c

commit 8e1e883bd6fc2c8f00030b3a7a0a07765ba935a9
Author: Paolo Bacchilega <paobac@svn.gnome.org>
Date:	2008-09-26

    removed.

    2008-09-26	Paolo Bacchilega  <paobac@svn.gnome.org>

	* depcomp: removed.

	Fixed bug #553781 – remove depcomp from SVN

    svn path=/trunk/; revision=369

M	ChangeLog
D	depcomp

commit df7174b3d253e46f90cab70320fbae9a61091983
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:	2008-08-26

    Updated Basque translation.

    2008-08-26	Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>

	* eu.po: Updated Basque translation.


    svn path=/trunk/; revision=368

M	po/ChangeLog
M	po/eu.po

commit 5f393ac3326a044074c7373210afd37ddd2db499
Author: Paolo Bacchilega <paobac@svn.gnome.org>
Date:	2008-08-18

    use strcmp to check is scheme is void.

    2008-08-18	Paolo Bacchilega  <paobac@svn.gnome.org>

	* src/dlg-ripper.c: use strcmp to check is scheme is void.

	* src/dlg-preferences.c: update the properties button sensitivity
	before showing the preferences dialog.

	Fixes bug: Debian#495491: goobox: preferences dialog crash.
	Patch by Peter De Wachter.

    svn path=/trunk/; revision=367

M	ChangeLog
M	src/dlg-preferences.c
M	src/dlg-ripper.c

commit 4898864dcd063c2b719d08299f4c574c96fb553e
Author: Jens Seidel <jseidel@src.gnome.org>
Date:	2008-08-13

    Minor correction for de.po by Helge

    svn path=/trunk/; revision=366

M	po/de.po

commit 09874fd4ef19bf35e8c809bff457748e53f93e36
Author: Djihed Afifi <djihed@src.gnome.org>
Date:	2008-07-31

    Updated Arabic Translation by Djihed Afifi.

    svn path=/trunk/; revision=365

M	po/ChangeLog
M	po/ar.po

commit b7c83608f8b22abc92fc21bf0afb02ee9d6d07ff
Author: Leonardo Ferreira Fontenelle <leonardof@gnome.org>
Date:	2008-07-21

    Translation updated by Djavan Fagundes.

    2008-07-21	Leonardo Ferreira Fontenelle  <leonardof@gnome.org>

	* pt_BR.po: Translation updated by Djavan Fagundes.

    svn path=/trunk/; revision=364

M	po/ChangeLog
M	po/pt_BR.po

commit 220470e232ba83a41b41431b996a96f793d5d00e
Author: Jens Seidel <jseidel@src.gnome.org>
Date:	2008-07-18

    Replaced "Titel" by "Stück" for "track" to avoid ambiguities,
    thanks Helge

    svn path=/trunk/; revision=363

M	po/de.po

commit 96bf28191203945437d55f5dc4d91a55b9702557
Author: Jens Seidel <jseidel@src.gnome.org>
Date:	2008-07-08

    Proofreading

    svn path=/trunk/; revision=362

M	po/de.po

commit 30119795e2370d72a0415e6eccdaec1805f087cd
Author: Jens Seidel <jseidel@src.gnome.org>
Date:	2008-07-08

    German translation update, thanks Helge Kreutzmann
    <debian@helgefjell.de>

    svn path=/trunk/; revision=361

M	po/ChangeLog
M	po/de.po

commit 8ca0b305a62430dbc27023abb9484ad6ec2f60f8
Author: Petr Kovář <pmkovar@src.gnome.org>
Date:	2008-06-04

    cs.po: Updated Czech translation by Adrian Gunis (bug #536674).

    svn path=/trunk/; revision=360

M	po/ChangeLog
M	po/cs.po

commit 952d553e370a14855c10173c6cfce61b8bf816eb
Author: Jens Seidel <jseidel@src.gnome.org>
Date:	2008-04-24

    Proofreading

    svn path=/trunk/; revision=359

M	help/de/de.po

commit 9e18d9793171c3fcedea17e9cb5bb54ef9a22894
Author: Jens Seidel <jseidel@src.gnome.org>
Date:	2008-04-24

    Added German help translation, thanks Helge Kreutzmann
    <debian@helgefjell.de>

    svn path=/trunk/; revision=358

M	help/ChangeLog
M	help/Makefile.am
A	help/de/de.po