summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 6df0aee1ad35519ae65b9f5c6cce1cf1fe2a3e91 (plain)
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
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
commit c4e3fd2b67eaf5c76833579424be32bf7ab625fc
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Jan 20 19:31:18 2013 +0100

    clock: Fix mateweather units

 applets/clock/clock.c |   18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

commit a650d5e14b2311bfb813ea34a793bc0eddd73ab4
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Jan 19 19:35:52 2013 +0100

    wncklet: Fix window-list grouping preference
    See https://github.com/mate-desktop/mate-panel/issues/70

 applets/wncklet/window-list.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 46a1fac8c934688032024188b0d58ace98668361
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jan 4 12:04:14 2013 +0100

    Add mateconf-gsettings-data-convert file
    Patch by Yaakov Selkowitz <yselkowitz@users.sourceforge.net>

 data/Makefile.am        |    5 +++++
 data/mate-panel.convert |   15 +++++++++++++++
 2 files changed, 20 insertions(+)

commit ccb01dcefdbe73d0950052ca0592f22b404dc97e
Merge: 49678c6 f0aeb0b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Dec 20 12:30:05 2012 -0800

    Merge pull request #66 from ketheriel/master
    
    Fix null pointer in function

commit f0aeb0b9d42789747546fc9350ea2d0c8c78f568
Author: Nelson Marques <nmo.marques@gmail.com>
Date:   Thu Dec 20 18:23:35 2012 +0000

    Fix missing NULL pointer

 applets/wncklet/window-list.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 49678c6e1d301405d43e77554d9a06ac14717f8a
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Dec 19 23:47:24 2012 +0100

    Bump version to 1.5.3

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0cb02b751bc95014936837441006bbc098d3730c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Dec 18 12:44:02 2012 +0100

    Fix crash on deleting panels
    https://github.com/mate-desktop/mate-panel/issues/65

 mate-panel/panel-profile.c |   10 ++++++++++
 1 file changed, 10 insertions(+)

commit c2ec565b1f6dd95520537482d3d0fd1a4b0e5323
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Dec 13 14:39:55 2012 +0100

    mate-panel: Add a missing g_free

 mate-panel/applet.c |    1 +
 1 file changed, 1 insertion(+)

commit 6c54e8633ccb398d669c20f988dbfc40af4819c1
Merge: 5237036 0ed6744
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Dec 11 13:20:10 2012 -0800

    Merge pull request #63 from cardpuncher/patch-3
    
    Fix the website URL

commit 0ed6744f217864f0a8201c7ca5d7ecd197e089b6
Author: cardpuncher <mauron@vmail.me>
Date:   Tue Dec 11 22:11:33 2012 +0100

    Fix the website URL

 applets/fish/fish.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5237036d40a1ad3d0236711502a7d4a18f58355e
Merge: 6df88f1 08f5ba5
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Nov 23 03:08:02 2012 -0800

    Merge pull request #56 from bhull2010/master
    
    Fix for displaying the Network icon in the places menu

commit 08f5ba581298fa38d633cdd8b260dd5ef5840fcc
Author: Brent Hull <bhull2010@live.com>
Date:   Thu Nov 22 21:46:13 2012 -0500

    Fix network places menu item filename

 mate-panel/panel-menu-items.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6df88f1083d89a62b389d2dbb2f95d2e54f019d6
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sun Nov 18 20:42:35 2012 -0500

    fixed incorrect fsf addresses.

 applets/clock/calendar-window.c                    |    4 ++--
 applets/clock/calendar-window.h                    |    4 ++--
 applets/clock/clock-sunpos.c                       |    4 ++--
 applets/clock/clock-utils.c                        |    4 ++--
 applets/clock/clock-utils.h                        |    4 ++--
 applets/clock/clock.c                              |    4 ++--
 applets/clock/clock.h                              |    4 ++--
 applets/clock/set-timezone.c                       |    2 +-
 applets/clock/set-timezone.h                       |    2 +-
 applets/clock/system-timezone.c                    |    2 +-
 applets/clock/system-timezone.h                    |    2 +-
 applets/clock/test-system-timezone.c               |    2 +-
 applets/fish/fish.c                                |    4 ++--
 applets/notification_area/fixedtip.c               |    4 ++--
 applets/notification_area/fixedtip.h               |    4 ++--
 applets/notification_area/main.c                   |    4 ++--
 applets/notification_area/na-tray-child.c          |    4 ++--
 applets/notification_area/na-tray-child.h          |    4 ++--
 applets/notification_area/na-tray-manager.c        |    4 ++--
 applets/notification_area/na-tray-manager.h        |    4 ++--
 applets/notification_area/na-tray.c                |    4 ++--
 applets/notification_area/na-tray.h                |    4 ++--
 applets/notification_area/testtray.c               |    4 ++--
 applets/wncklet/showdesktop.c                      |    4 ++--
 applets/wncklet/showdesktop.h                      |    4 ++--
 applets/wncklet/window-menu.c                      |    4 ++--
 applets/wncklet/window-menu.h                      |    4 ++--
 applets/wncklet/wncklet.c                          |    4 ++--
 applets/wncklet/wncklet.h                          |    4 ++--
 libmate-panel-applet/mate-panel-applet-factory.c   |    4 ++--
 libmate-panel-applet/mate-panel-applet-factory.h   |    4 ++--
 libmate-panel-applet/mate-panel-applet-gsettings.c |    4 ++--
 libmate-panel-applet/mate-panel-applet-gsettings.h |    4 ++--
 libmate-panel-applet/mate-panel-applet.c           |    4 ++--
 libmate-panel-applet/mate-panel-applet.h           |    4 ++--
 mate-panel/libegg/eggdesktopfile.c                 |    4 ++--
 mate-panel/libegg/eggdesktopfile.h                 |    4 ++--
 mate-panel/libegg/eggsmclient-private.h            |    4 ++--
 mate-panel/libegg/eggsmclient-xsmp.c               |    4 ++--
 mate-panel/libegg/eggsmclient.c                    |    4 ++--
 mate-panel/libegg/eggsmclient.h                    |    4 ++--
 .../mate-panel-applet-container.c                  |    4 ++--
 .../mate-panel-applet-container.h                  |    4 ++--
 .../mate-panel-applet-frame-dbus.c                 |    4 ++--
 .../mate-panel-applet-frame-dbus.h                 |    4 ++--
 .../mate-panel-applets-manager-dbus.c              |    4 ++--
 .../mate-panel-applets-manager-dbus.h              |    4 ++--
 mate-panel/libpanel-util/panel-cleanup.c           |    4 ++--
 mate-panel/libpanel-util/panel-cleanup.h           |    4 ++--
 mate-panel/libpanel-util/panel-dbus-service.c      |    4 ++--
 mate-panel/libpanel-util/panel-dbus-service.h      |    4 ++--
 mate-panel/libpanel-util/panel-dconf.c             |    4 ++--
 mate-panel/libpanel-util/panel-dconf.h             |    4 ++--
 mate-panel/libpanel-util/panel-error.c             |    4 ++--
 mate-panel/libpanel-util/panel-error.h             |    4 ++--
 mate-panel/libpanel-util/panel-glib.c              |    4 ++--
 mate-panel/libpanel-util/panel-glib.h              |    4 ++--
 mate-panel/libpanel-util/panel-gtk.c               |    4 ++--
 mate-panel/libpanel-util/panel-gtk.h               |    4 ++--
 mate-panel/libpanel-util/panel-icon-chooser.c      |    4 ++--
 mate-panel/libpanel-util/panel-icon-chooser.h      |    4 ++--
 mate-panel/libpanel-util/panel-keyfile.c           |    4 ++--
 mate-panel/libpanel-util/panel-keyfile.h           |    4 ++--
 mate-panel/libpanel-util/panel-launch.c            |    4 ++--
 mate-panel/libpanel-util/panel-launch.h            |    4 ++--
 mate-panel/libpanel-util/panel-list.c              |    4 ++--
 mate-panel/libpanel-util/panel-list.h              |    4 ++--
 mate-panel/libpanel-util/panel-session-manager.c   |    4 ++--
 mate-panel/libpanel-util/panel-session-manager.h   |    4 ++--
 mate-panel/libpanel-util/panel-show.c              |    4 ++--
 mate-panel/libpanel-util/panel-show.h              |    4 ++--
 mate-panel/libpanel-util/panel-xdg.c               |    4 ++--
 mate-panel/libpanel-util/panel-xdg.h               |    4 ++--
 mate-panel/mate-panel-applet-frame.c               |    4 ++--
 mate-panel/mate-panel-applet-info.c                |    4 ++--
 mate-panel/mate-panel-applets-manager.c            |    4 ++--
 mate-panel/mate-panel-applets-manager.h            |    4 ++--
 mate-panel/menu.c                                  |    4 ++--
 mate-panel/menu.h                                  |    4 ++--
 mate-panel/panel-a11y.c                            |    2 +-
 mate-panel/panel-a11y.h                            |    2 +-
 mate-panel/panel-action-button.c                   |    4 ++--
 mate-panel/panel-action-button.h                   |    4 ++--
 mate-panel/panel-action-protocol.c                 |    4 ++--
 mate-panel/panel-action-protocol.h                 |    4 ++--
 mate-panel/panel-addto.c                           |    4 ++--
 mate-panel/panel-addto.h                           |    4 ++--
 mate-panel/panel-background-monitor.c              |    4 ++--
 mate-panel/panel-background-monitor.h              |    4 ++--
 mate-panel/panel-background.c                      |    4 ++--
 mate-panel/panel-background.h                      |    4 ++--
 mate-panel/panel-bindings.c                        |    4 ++--
 mate-panel/panel-bindings.h                        |    4 ++--
 mate-panel/panel-config-global.c                   |    4 ++--
 mate-panel/panel-config-global.h                   |    4 ++--
 mate-panel/panel-context-menu.c                    |    4 ++--
 mate-panel/panel-context-menu.h                    |    4 ++--
 mate-panel/panel-ditem-editor.c                    |    4 ++--
 mate-panel/panel-ditem-editor.h                    |    4 ++--
 mate-panel/panel-enums-gsettings.h                 |    4 ++--
 mate-panel/panel-enums.h                           |    4 ++--
 mate-panel/panel-force-quit.c                      |    4 ++--
 mate-panel/panel-force-quit.h                      |    4 ++--
 mate-panel/panel-frame.c                           |    4 ++--
 mate-panel/panel-frame.h                           |    4 ++--
 mate-panel/panel-globals.h                         |    4 ++--
 mate-panel/panel-gsettings.c                       |    4 ++--
 mate-panel/panel-gsettings.h                       |    4 ++--
 mate-panel/panel-layout.c                          |    4 ++--
 mate-panel/panel-layout.h                          |    4 ++--
 mate-panel/panel-lockdown.c                        |    4 ++--
 mate-panel/panel-lockdown.h                        |    4 ++--
 mate-panel/panel-menu-bar.c                        |    4 ++--
 mate-panel/panel-menu-bar.h                        |    4 ++--
 mate-panel/panel-menu-button.c                     |    4 ++--
 mate-panel/panel-menu-button.h                     |    4 ++--
 mate-panel/panel-menu-items.c                      |    4 ++--
 mate-panel/panel-menu-items.h                      |    4 ++--
 mate-panel/panel-modules.c                         |    4 ++--
 mate-panel/panel-modules.h                         |    4 ++--
 mate-panel/panel-multiscreen.c                     |    2 +-
 mate-panel/panel-multiscreen.h                     |    2 +-
 mate-panel/panel-profile.c                         |    4 ++--
 mate-panel/panel-profile.h                         |    4 ++--
 mate-panel/panel-properties-dialog.c               |    4 ++--
 mate-panel/panel-properties-dialog.h               |    4 ++--
 mate-panel/panel-recent.c                          |    4 ++--
 mate-panel/panel-recent.h                          |    4 ++--
 mate-panel/panel-reset.c                           |    4 ++--
 mate-panel/panel-reset.h                           |    4 ++--
 mate-panel/panel-run-dialog.c                      |    4 ++--
 mate-panel/panel-run-dialog.h                      |    4 ++--
 mate-panel/panel-separator.c                       |    4 ++--
 mate-panel/panel-separator.h                       |    4 ++--
 mate-panel/panel-session.c                         |    4 ++--
 mate-panel/panel-session.h                         |    4 ++--
 mate-panel/panel-shell.c                           |    4 ++--
 mate-panel/panel-shell.h                           |    4 ++--
 mate-panel/panel-stock-icons.c                     |    4 ++--
 mate-panel/panel-stock-icons.h                     |    4 ++--
 mate-panel/panel-struts.c                          |    4 ++--
 mate-panel/panel-struts.h                          |    4 ++--
 mate-panel/panel-toplevel.c                        |    4 ++--
 mate-panel/panel-toplevel.h                        |    4 ++--
 mate-panel/panel-xutils.c                          |    4 ++--
 mate-panel/panel-xutils.h                          |    4 ++--
 146 files changed, 283 insertions(+), 283 deletions(-)

commit 24ac184b8026e9628f8589938399c703101b6276
Merge: cc96150 b94aaf8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Nov 12 07:03:23 2012 -0800

    Merge pull request #52 from sbalneav/master
    
    Updates to mate-panel

commit b94aaf81d04f87cfcfde76b68876fbc0d27a8deb
Author: Scott Balneaves <sbalneav@alburg.net>
Date:   Mon Nov 12 08:54:33 2012 -0600

    Code audit: fix compile warnings, uninitialized pointer problems

 applets/wncklet/window-list.c           |    3 ++-
 mate-panel/libpanel-util/panel-launch.c |   17 ++++++++------
 mate-panel/libpanel-util/panel-show.c   |    4 ++--
 mate-panel/panel-layout.c               |    2 +-
 mate-panel/panel-profile.c              |   38 +++++++++++++++++--------------
 mate-panel/panel-profile.h              |    2 +-
 mate-panel/panel-reset.c                |    3 ++-
 mate-panel/panel-toplevel.c             |    2 ++
 mate-panel/panel-util.c                 |    2 +-
 9 files changed, 42 insertions(+), 31 deletions(-)

commit cc9615065c128be5924a12df50abfda0c6b74a3a
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Oct 21 18:25:14 2012 +0200

    add MATE developers in panel about window

 mate-panel/panel-context-menu.c |    5 +++++
 1 file changed, 5 insertions(+)

commit 917457d02dd5288d42b9f0f7b735eb0ac5eb9405
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 19 14:43:30 2012 +0200

    bump minimum glib version to 2.26
    g_settings_new_with_path is since that version

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e73116a9ea9bafa856a38601cfe90a1bf12e3628
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 19 14:31:30 2012 +0200

    fix load background type at panel start
    close https://github.com/mate-desktop/mate-panel/issues/49

 mate-panel/panel-profile.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 2c90f2b9d59544411a1f95f5f623ea6e75184c57
Author: Nelson Marques <nmo.marques@gmail.com>
Date:   Thu Oct 18 16:26:47 2012 +0100

    remove MATE from Categories in .desktop file

 mate-panel/mate-panel.desktop.in.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6c0aab96aa634383b3e01ce94304194b8a05cfd3
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Oct 16 23:53:34 2012 +0200

    bump version to 1.5.2

 NEWS         |    3 +++
 configure.ac |    2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit b6c3c38db9d4c0abb201f2f8a109c69b575db6e9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Oct 16 23:53:09 2012 +0200

    add --run-dialog option to open run dialog

 mate-panel/main.c             |   19 +++++++++++++++++++
 mate-panel/panel-profile.c    |    8 +++++++-
 mate-panel/panel-profile.h    |    1 +
 mate-panel/panel-run-dialog.c |   10 ++++++++++
 mate-panel/panel-run-dialog.h |    2 ++
 5 files changed, 39 insertions(+), 1 deletion(-)

commit 2b3a21fb01f6a198642218c744541814f5a7152b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 13 09:46:13 2012 +0200

    fix build with dconf >= 0.13

 mate-panel/libpanel-util/panel-dconf.c |    4 ++++
 1 file changed, 4 insertions(+)

commit 9a359133358ae402c98a7c90ac5b8de1f5706b02
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 12 18:16:51 2012 +0200

    bump version in configure.ac

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3aa881b8b74b72fd2840fc641a51801b390b044e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 12 17:56:34 2012 +0200

    fix dconf requirements

 configure.ac           |    3 +++
 mate-panel/Makefile.am |    6 +++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 8230a10b97810451abe1b3283f5adf627f33a8b1
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 12 17:56:17 2012 +0200

    fix mate-panel-applet-gsettings.c

 libmate-panel-applet/mate-panel-applet-gsettings.c |   24 ++++++++------------
 1 file changed, 10 insertions(+), 14 deletions(-)

commit c049c82bbdda4c016f5ee28bce86918b60315dd2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 12 17:55:09 2012 +0200

    fix 64bit-portability-issue

 applets/wncklet/window-list.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 2f38f0be5c92d7239ccc5f1690174a6440c4dca5
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 17:57:18 2012 +0200

    fix some warnings

 mate-panel/panel-profile.c      |    2 +-
 mate-panel/panel-test-applets.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 0ffeaf53e92e366947ebb5424a5b15c1a8f39a5f
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 17:56:57 2012 +0200

    fix dconf requirements

 configure.ac                         |   13 +++++++------
 mate-panel/libpanel-util/Makefile.am |    1 +
 2 files changed, 8 insertions(+), 6 deletions(-)

commit 718cd95fd268e87370aa4a4d8953dfe7d6291a94
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 12:59:50 2012 +0200

    add info for default panel layout

 NEWS |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit ff3c509ce0be53367ebd9dc6e047a1b5f6ed1d7e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:08:57 2012 +0200

    add wncklet schemas

 ...rg.mate.panel.applet.window-list.gschema.xml.in |   24 ++++++++++++++++++++
 ....panel.applet.workspace-switcher.gschema.xml.in |   19 ++++++++++++++++
 2 files changed, 43 insertions(+)

commit b9c880c58aba32356ee1a4f1e5f45defd5dfb895
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:08:04 2012 +0200

    update notification_area

 Makefile.am                                   |    5 +-
 NEWS                                          |    7 +-
 applets/notification_area/Makefile.am         |    2 +-
 applets/notification_area/main.c              |    1 -
 applets/notification_area/na-tray.c           |    1 -
 applets/wncklet/Makefile.am                   |   29 +---
 applets/wncklet/window-list.c                 |  196 ++++++-------------------
 applets/wncklet/window-list.schemas.in        |   77 ----------
 applets/wncklet/workspace-switcher.c          |  160 +++++++-------------
 applets/wncklet/workspace-switcher.schemas.in |   52 -------
 configure.ac                                  |  120 ++-------------
 po/POTFILES.in                                |    4 -
 12 files changed, 125 insertions(+), 529 deletions(-)

commit 7a578190a730ddef00cfe770aa67608eb07213b5
Merge: 665d1cb 18e3ea9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:05:38 2012 +0200

    Merge branch 'master' of github.com:mate-desktop/mate-panel

commit 665d1cb131007c871431f1f8531dc13bb0d06a82
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:05:23 2012 +0200

    migrate fish applet to gsettings

 applets/fish/Makefile.am                           |   29 +-
 applets/fish/fish.c                                |  353 +++++++-------------
 applets/fish/fish.schemas.in                       |   91 -----
 .../fish/org.mate.panel.applet.fish.gschema.xml.in |   34 ++
 4 files changed, 161 insertions(+), 346 deletions(-)

commit cf41dc3d28c3daa30f04962718b468cf46830828
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:04:50 2012 +0200

    migrate clock applet to gsettings
    remove evolution code

 applets/clock/Makefile.am                          |   39 +-
 applets/clock/calendar-client.c                    | 2171 --------------------
 applets/clock/calendar-client.h                    |  153 --
 applets/clock/calendar-debug.h                     |   56 -
 applets/clock/calendar-sources.c                   |  658 ------
 applets/clock/calendar-sources.h                   |   70 -
 applets/clock/calendar-window.c                    | 1616 +--------------
 applets/clock/clock-face.c                         |    2 +-
 applets/clock/clock-location.c                     |    8 +-
 applets/clock/clock.c                              |  823 ++------
 applets/clock/clock.h                              |    2 +-
 applets/clock/clock.schemas.in                     |  313 ---
 .../org.mate.panel.applet.clock.gschema.xml.in     |   88 +
 13 files changed, 307 insertions(+), 5692 deletions(-)

commit 5052d39d3d10a57b2fe0e15b2e7833ef207d3a48
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:02:36 2012 +0200

    remove old mateconf doc

 ...nel-applet-Panel-Applet-MateConf-Utilities.html |  655 --------------------
 .../tmpl/mate-panel-applet-mateconf.sgml           |  263 --------
 2 files changed, 918 deletions(-)

commit 8d773c5db915bc75cc450db2216dee54f71b92c2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:02:07 2012 +0200

    migrate libmate-panel-applet to gsettings

 libmate-panel-applet/Makefile.am                   |   46 +-
 .../libmatepanelapplet-3.0-uninstalled.pc.in       |   11 -
 libmate-panel-applet/libmatepanelapplet-3.0.pc.in  |   11 -
 .../libmatepanelapplet-4.0-uninstalled.pc.in       |   11 +
 libmate-panel-applet/libmatepanelapplet-4.0.pc.in  |   11 +
 libmate-panel-applet/mate-panel-applet-gsettings.c |  108 +++++
 libmate-panel-applet/mate-panel-applet-gsettings.h |   45 ++
 libmate-panel-applet/mate-panel-applet-mateconf.c  |  457 --------------------
 libmate-panel-applet/mate-panel-applet-mateconf.h  |   90 ----
 libmate-panel-applet/mate-panel-applet.c           |  211 ++-------
 libmate-panel-applet/mate-panel-applet.h           |    4 +-
 11 files changed, 227 insertions(+), 778 deletions(-)

commit 876f39364e2106c8cb96fa4a9067359e5a350583
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:01:30 2012 +0200

    migrate mate-panel to gsettings

 mate-panel/Makefile.am                             |   44 +-
 mate-panel/applet.c                                |  125 +-
 mate-panel/applet.h                                |    4 +-
 mate-panel/button-widget.c                         |    2 +
 mate-panel/drawer.c                                |  194 +-
 mate-panel/drawer.h                                |    6 +-
 mate-panel/launcher.c                              |   59 +-
 mate-panel/launcher.h                              |   10 +-
 .../mate-panel-applet-container.c                  |    2 +-
 .../mate-panel-applet-frame-dbus.c                 |    2 +-
 mate-panel/libpanel-util/Makefile.am               |    2 +
 mate-panel/libpanel-util/panel-dconf.c             |  109 +
 mate-panel/libpanel-util/panel-dconf.h             |   44 +
 mate-panel/main.c                                  |   10 -
 mate-panel/mate-desktop-item-edit.c                |    2 -
 mate-panel/mate-panel-applet-frame.c               |   36 +-
 mate-panel/mate-panel-applet-frame.h               |    2 +-
 mate-panel/menu.c                                  |    9 +-
 mate-panel/panel-action-button.c                   |  245 +--
 mate-panel/panel-action-button.h                   |    9 +-
 mate-panel/panel-addto.c                           |   50 +-
 mate-panel/panel-bindings.c                        |  138 +-
 mate-panel/panel-compatibility.c                   | 1167 -----------
 mate-panel/panel-compatibility.h                   |   48 -
 mate-panel/panel-compatibility.schemas             |  546 -----
 mate-panel/panel-config-global.c                   |   68 +-
 mate-panel/panel-default-setup.entries             |  657 ------
 mate-panel/panel-enums-gsettings.h                 |   79 +
 mate-panel/panel-enums.h                           |   62 +-
 mate-panel/panel-general.schemas.in                |  127 --
 mate-panel/panel-global.schemas.in                 |  276 ---
 mate-panel/panel-gsettings.c                       |  178 ++
 mate-panel/panel-gsettings.h                       |   53 +
 mate-panel/panel-layout.c                          |  353 ++++
 mate-panel/panel-layout.h                          |   38 +
 mate-panel/panel-lockdown.c                        |  251 +--
 mate-panel/panel-mateconf.c                        |  351 ----
 mate-panel/panel-mateconf.h                        |   76 -
 mate-panel/panel-menu-bar.c                        |    4 +-
 mate-panel/panel-menu-bar.h                        |    2 +-
 mate-panel/panel-menu-button.c                     |  203 +-
 mate-panel/panel-menu-button.h                     |    4 +-
 mate-panel/panel-menu-items.c                      |   84 +-
 mate-panel/panel-object.schemas.in                 |  263 ---
 mate-panel/panel-profile.c                         | 2116 ++++++--------------
 mate-panel/panel-profile.h                         |   62 +-
 mate-panel/panel-properties-dialog.c               |  202 +-
 mate-panel/panel-reset.c                           |   21 +-
 mate-panel/panel-run-dialog.c                      |   91 +-
 mate-panel/panel-schemas.h                         |   90 +
 mate-panel/panel-separator.c                       |    4 +-
 mate-panel/panel-separator.h                       |    2 +-
 mate-panel/panel-test-applets.c                    |   56 +-
 mate-panel/panel-test-applets.ui                   |    6 +-
 mate-panel/panel-toplevel.c                        |   44 +-
 mate-panel/panel-toplevel.h                        |    5 +
 mate-panel/panel-toplevel.schemas.in               |  434 ----
 mate-panel/panel-util.c                            |   19 +-
 mate-panel/panel.c                                 |   12 +-
 59 files changed, 2411 insertions(+), 6747 deletions(-)

commit 66916b20f16f9f0aad4c527519b70ac3a72bbec7
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Oct 10 23:57:56 2012 +0200

    add gsettings schemas

 data/Makefile.am                            |   14 +++
 data/org.mate.panel.gschema.xml.in          |   78 +++++++++++++++
 data/org.mate.panel.object.gschema.xml.in   |   79 +++++++++++++++
 data/org.mate.panel.toplevel.gschema.xml.in |  142 +++++++++++++++++++++++++++
 data/panel-default-layout.mate              |   53 ++++++++++
 5 files changed, 366 insertions(+)

commit 604337540f95368056cca6eb9d808ef4fcc19765
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Oct 10 23:56:54 2012 +0200

    remove matecomponent

 matecomponent/Makefile.am                          |    3 -
 matecomponent/idl/MATE_Panel.idl                   |   51 -
 matecomponent/idl/Makefile.am                      |    6 -
 .../MATE_Panel_TestApplet.server.in                |   31 -
 matecomponent/libmate-panel-applet/Makefile.am     |  129 --
 matecomponent/libmate-panel-applet/TODO            |   14 -
 .../libmatepanelapplet-2.0-uninstalled.pc.in       |   11 -
 .../libmatepanelapplet-2.0.pc.in                   |   11 -
 .../mate-panel-applet-marshal.list                 |    5 -
 .../mate-panel-applet-mateconf.c                   |  458 -----
 .../mate-panel-applet-mateconf.h                   |   90 -
 .../mate-panel-applet-private.h                    |   40 -
 .../libmate-panel-applet/mate-panel-applet-shell.c |  105 --
 .../libmate-panel-applet/mate-panel-applet-shell.h |   62 -
 .../libmate-panel-applet/mate-panel-applet.c       | 1830 --------------------
 .../libmate-panel-applet/mate-panel-applet.h       |  226 ---
 .../panel-test-applets-matecomponent.c             |  349 ----
 .../panel-test-applets-matecomponent.ui            |  203 ---
 .../test-matecomponent-applet.c                    |  204 ---
 matecomponent/panel-module/MATE_Panel_Popup.xml    |   20 -
 matecomponent/panel-module/Makefile.am             |   51 -
 .../mate-panel-applet-frame-matecomponent.c        |  759 --------
 .../mate-panel-applet-frame-matecomponent.h        |   65 -
 .../mate-panel-applets-manager-matecomponent.c     |  250 ---
 .../mate-panel-applets-manager-matecomponent.h     |   59 -
 .../mate-panel-applets-matecomponent-module.c      |   48 -
 26 files changed, 5080 deletions(-)

commit 18e3ea919cad33bf2048d42fa81e90cc91cb3b52
Merge: 1b3eed0 5494eac
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Oct 9 12:30:15 2012 -0700

    Merge pull request #46 from cardpuncher/patch-2
    
    Update applets/fish/fish.c

commit 5494eacad9ca1903c733450008bf686514976fde
Author: cardpuncher <mauron@vmail.me>
Date:   Tue Oct 9 22:01:36 2012 +0300

    Update applets/fish/fish.c
    
    Fix a typo in the documentation credits for Wanda. Now I guess I can start seeking psychiatric evaluation as advised in the about box :)

 applets/fish/fish.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1b3eed07158197bf0de4e4689c08a6f09070d17a
Merge: 497b587 0d83e96
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Oct 8 15:47:23 2012 -0700

    Merge pull request #45 from cardpuncher/patch-1
    
    Fix web site URL

commit 0d83e96b30f0b20c6f86a08031d92de9e4e43c6f
Author: cardpuncher <mauron@vmail.me>
Date:   Mon Oct 8 23:28:14 2012 +0300

    Fix web site URL
    
    The former URL was matsusoft.com.ar, if my understanding is correct mate-desktop.org is now the ONE TRUE URL :p

 applets/clock/clock.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 497b58752b465146c5890624fd1609de10ec0136
Merge: 167cc3f 67d8e6c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Sep 6 03:02:04 2012 -0700

    Merge pull request #40 from mrpdaemon/compile-fix
    
    Fix compile error

commit 67d8e6c9dd804498044cc16ce8d31c28ecc59643
Author: Mark Pariente <markpariente@gmail.com>
Date:   Wed Sep 5 21:48:43 2012 -0700

    Fix compile error
    
    applets/clock/calendar-client.c references MateConfClient without
    including mateconf-client.h which caused a compile error on my
    setup.

 applets/clock/calendar-client.c |    2 ++
 1 file changed, 2 insertions(+)

commit 167cc3f3c0464fd7e1a90f2135efe05ebf532e1b
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Mon Aug 6 17:16:58 2012 -0400

    Removed nyan.png from fish applet.

 applets/fish/Makefile.am |    3 +--
 applets/fish/nyan.png    |  Bin 1211 -> 0 bytes
 2 files changed, 1 insertion(+), 2 deletions(-)

commit 1e0ea2d78f879c85942ae7f6e081cb953961dc2d
Merge: f716b5e 15d4a83
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu Jul 26 17:45:47 2012 -0700

    Merge pull request #34 from NiceandGently/master
    
    incorrect-fsf-address and others

commit 15d4a835a59f72f06bb7f48e93115bcc87a98242
Author: Nice&Gently <chat-to-me@raveit.de>
Date:   Thu Jul 26 19:23:58 2012 +0200

    fix incorrect-fsf-address

 mate-panel/mate-panel-add.in         |    2 +-
 mate-panel/mate-panel-applet-frame.h |    5 ++---
 mate-panel/mate-panel-applet-info.h  |    4 ++--
 3 files changed, 5 insertions(+), 6 deletions(-)

commit f716b5e9b60d37bbbc83c20906e2dfe3bf203577
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Tue Jul 10 21:55:31 2012 -0400

    Preparing for 1.4 release.

 ChangeLog |   28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

commit 97dbdf6c937f1221e7fc35e8f658bd07c9aa001b
Merge: 4ac3c7f e72f974
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 6 00:52:03 2012 -0700

    Merge pull request #30 from Gymnasiast/master
    
    Fix for clock in mate-panel skipping seconds

commit 4ac3c7f9f81501f753c31962407280481477fc20
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu Jul 5 14:26:19 2012 -0400

    Preparing for 1.4 release.

 ChangeLog    | 1316 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 configure.ac |    2 +-
 2 files changed, 1315 insertions(+), 3 deletions(-)

commit 1a88770385c3b71a423ee7ee620a252e0d6e8908
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jul 4 16:25:18 2012 +0200

    sync translations with transifex

 po/af.po  | 2704 +++++++++-------------------
 po/ar.po  | 1729 +++++++-----------
 po/ast.po | 2596 ++++++++++++---------------
 po/ca.po  | 5842 +++++--------------------------------------------------------
 po/cs.po  | 1098 +++++-------
 po/eo.po  | 1287 +++++---------
 po/es.po  | 1865 +++++++-------------
 po/eu.po  | 1706 ++++++++----------
 po/fr.po  | 1257 +++++--------
 po/he.po  | 1696 +++++++-----------
 po/nl.po  |    8 +-
 po/pl.po  |    9 +-
 po/ru.po  | 1048 ++++++-----
 po/sl.po  | 1061 ++++++-----
 po/tr.po  |   15 +-
 po/uk.po  | 1684 ++++++++----------
 16 files changed, 8248 insertions(+), 17357 deletions(-)

commit 8234ff98dfc1ee9cf3fb0fd0c722256ea3c48034
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jul 4 16:12:47 2012 +0200

    add po gnome copyrights file

 po/gnome-copyrights.txt | 1443 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 1443 insertions(+)

commit e72f97458561206f5b2732919dc37ca81ba2ed92
Author: Michael Steenbeek <michael@AUGUSTUS.(none)>
Date:   Mon Jun 25 11:20:52 2012 +0200

    Fix clock seconds

 applets/clock/clock.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 765098c3b9d988f4ae690eebd38e559352fa5320
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 20 12:55:14 2012 +0200

    fix "ngome" occurence
    thanks to nmarques

 mate-panel/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9624cc67fbe896f5d2a25843e17d107028663f1d
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 20 09:33:10 2012 +0200

    prepare 1.3.2

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 433b732669ea1accb0fbc79bce6c39f416ea5234
Merge: 6b4bc7a bf0d96e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Jun 19 15:37:13 2012 -0700

    Merge pull request #28 from ketheriel/master
    
    libpanel-applet: Use on_bus_acquired instead of on_name_acquired

commit bf0d96ed544a2a50ad7ca350baf75aab3d77622c
Author: Nelson Marques <nmo.marques@gmail.com>
Date:   Tue Jun 19 23:46:42 2012 +0200

    libpanel-applet: Use on_bus_acquired instead of on_name_acquired
    
    Prevent race conditions when the session starts (panel is displayed instantly); This is well documented in the gdbus documentation: https://bugzilla.gnome.org/show_bug.cgi?id=654843

 libmate-panel-applet/mate-panel-applet-factory.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6b4bc7a4e45fec8a17c9be53338cfdca5eb4cc24
Merge: 32879f4 13d4184
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jun 15 05:46:08 2012 -0700

    Merge pull request #23 from MDykstra/master
    
    now linking under up-to-date Arch Linux system

commit 32879f4b29b115387255580aede2269eb8f818d3
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 13 10:53:29 2012 +0200

    Use right GdkScreen for focus request and menu
    http://bugzilla-attachments.gnome.org/attachment.cgi?id=179797
    
    Calling gtk_widget_get_screen() on a widget embedded in a plug doesn't
    necessarily return what you expect (because of
    gtk_widget_get_toplevel()).
    
    Instead, call gtk_window_get_screen() on the plug.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=632369

 libmate-panel-applet/mate-panel-applet.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit bd86f8daead7479405667acb84d4b976301641b2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 6 17:33:00 2012 +0200

    switch to libmatewnck

 applets/notification_area/na-tray-child.c |    4 +-
 applets/wncklet/showdesktop.c             |   38 ++++++-------
 applets/wncklet/window-list.c             |   50 ++++++++---------
 applets/wncklet/window-list.h             |    2 +-
 applets/wncklet/window-menu.c             |   10 ++--
 applets/wncklet/wncklet.c                 |   12 ++--
 applets/wncklet/wncklet.h                 |    5 +-
 applets/wncklet/workspace-switcher.c      |   86 ++++++++++++++---------------
 applets/wncklet/workspace-switcher.h      |    2 +-
 configure.ac                              |    6 +-
 distro/archlinux/PKGBUILD                 |    2 +-
 11 files changed, 104 insertions(+), 113 deletions(-)

commit 55d552d3f66f6730e195fbb3f25c415161f6b3f0
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 6 10:30:24 2012 +0200

    removed distro/ubuntu folder

 distro/ubuntu/build    |   31 -------------------------------
 distro/ubuntu/postinst |   15 ---------------
 distro/ubuntu/postrm   |    8 --------
 distro/ubuntu/preinst  |    7 -------
 distro/ubuntu/prerm    |   16 ----------------
 5 files changed, 77 deletions(-)

commit 8b37f5bb6c8bd04dcde7edd66a366ba5c1eb3834
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed May 23 17:14:21 2012 +0200

    fix some things for MATE in wncklet applet

 applets/wncklet/showdesktop.c          |    8 +-
 applets/wncklet/window-list.c          |   17 ++---
 applets/wncklet/window-list.schemas.in |    8 +-
 applets/wncklet/window-list.ui         |  130 --------------------------------
 applets/wncklet/window-menu.c          |    8 +-
 applets/wncklet/workspace-switcher.c   |   10 ++-
 6 files changed, 30 insertions(+), 151 deletions(-)

commit 13d41840ccb39bebe44b52653ba8d59b0c4985a0
Merge: d3b927a 9af851f
Author: Marcel Dijkstra <marcel.dykstra@gmail.com>
Date:   Wed May 23 02:33:19 2012 +0200

    Merge remote-tracking branch 'upstream/master' into slave

commit 9af851f0c4f0296eb5654233b9fc251e9377c8b9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon May 21 21:22:01 2012 +0200

    start 1.3

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d3b927a321242e36abdb1e4acc488cde7899800e
Author: Marcel Dijkstra <marcel.dykstra@gmail.com>
Date:   Wed May 16 04:03:15 2012 +0200

    only depend on gmodule-2.0 if it exists

 configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 656540dac716816bbc906b373d6ff6e488e536bd
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun May 13 19:09:31 2012 +0200

    add option to hide arrow in menu button
    https://github.com/mate-desktop/mate-panel/issues/24
    https://bugzilla.gnome.org/show_bug.cgi?id=598196
    patch by Damir Gilyazov

 mate-panel/panel-menu-button.c     |    8 +++++++-
 mate-panel/panel-object.schemas.in |   14 ++++++++++++++
 2 files changed, 21 insertions(+), 1 deletion(-)

commit 69769af51fe3f072bfd2612a27afc095eb67384f
Merge: 9639e4e 4cd1138
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu May 10 12:59:42 2012 -0700

    Merge pull request #18 from benpicco/upstream
    
    pull in upstream changes & fixes

commit b3fabe6bbdf380e7d3202677c1d0899b47cbff8e
Author: Marcel Dijkstra <marcel.dykstra@gmail.com>
Date:   Thu Apr 26 23:13:42 2012 +0200

    linker now requires gmodule-2.0 in mate-panel

 configure.ac |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9639e4e9ccdbf44e8a4a29a57c23cc7c4cf05253
Merge: 36f6cbe ef01aab
Author: Perberos <perberos@gmail.com>
Date:   Mon Apr 23 05:39:12 2012 -0300

    Merge branch 'master' of github.com:mate-desktop/mate-panel

commit 36f6cbeb068f46ebf165e718005699979acaa36f
Author: Perberos <perberos@gmail.com>
Date:   Mon Apr 23 05:37:29 2012 -0300

    adding an item for system monitors on the windows list applet

 applets/wncklet/window-list-menu.xml |    2 +
 applets/wncklet/window-list.c        |   69 ++++++++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

commit ef01aabe2567bda92e02c62f2f07d95b47e92cc9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Apr 6 10:02:57 2012 +0200

    update translations (pl, tr)

 po/pl.po | 1119 +++++++++++++-------------------
 po/tr.po | 2196 ++++++++++++++++++++++++--------------------------------------
 2 files changed, 1290 insertions(+), 2025 deletions(-)

commit ebb303b9ebc2f42289f69d48a70b00de61f06852
Merge: f83141e 69f2936
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Apr 6 00:12:41 2012 -0700

    Merge pull request #19 from haxar/69f29364bbbe1d1772cf0ce5e4efe0af1beccd42
    
    g-ir-scanner: fix build when configure prefix != /usr

commit f83141e3dc98adb70870bbf920453397951b70fd
Merge: 5b2e509 f27accd
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Apr 6 00:12:24 2012 -0700

    Merge pull request #20 from haxar/clock-applet-map
    
    clock-applet: keep locations map expanded state

commit f27accd68a9abec65c702fa430562ee545f0d096
Author: haxar <grezski@gmail.com>
Date:   Thu Apr 5 20:23:40 2012 -0700

    clock-applet: use mateconf client to get and set KEY_LOCATIONS_EXPANDED key when HAVE_LIBECAL is not defined

 applets/clock/calendar-window.c |   12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

commit 69f29364bbbe1d1772cf0ce5e4efe0af1beccd42
Author: haxar <grezski@gmail.com>
Date:   Thu Apr 5 20:23:29 2012 -0700

    g-ir-scanner: when configure prefix != /usr, add prefix to scanner include paths

 libmate-panel-applet/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4cd113800b89a73dfa77ed4081811055a4cbe23e
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Fri Jul 10 14:24:56 2009 +0200

    lockdown locks the menu editor entry too
    
    Bug: http://bugzilla.gnome.org/show_bug.cgi?id=499148
    Bug-Ubuntu: https://bugs.launchpad.net/bugs/4712

 mate-panel/panel-menu-bar.c    |    2 +-
 mate-panel/panel-menu-button.c |    5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 8c25e1bdd328a8712735c0b00cf4aede7993da1d
Author: Oliver Grawert <ogra@ubuntu.com>
Date:   Mon Oct 13 16:53:28 2008 +0200

    Suppress the shutdown option in the panel if LTSP_CLIENT is set

 mate-panel/panel-menu-items.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e0d316abc53e6858814ccc83cb42b3e541e72977
Author: Jorge Bernal "Koke <koke@amedias.org>
Date:   Wed Mar 23 03:20:01 2005 +0100

    Show a default icon for .desktop files that don't have one
    
    Bug: https://bugzilla.gnome.org/show_bug.cgi?id=76495

 mate-panel/menu.c              |    2 +-
 mate-panel/panel-stock-icons.h |    2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 68ec89213e4d7c23cb681016b0b627e39fae9e4f
Author: Marcel Stimberg <stimb@cs.tu-berlin.de>
Date:   Sun Aug 23 20:40:16 2009 +0000

    When using Drag'n'Drop from Places menu, install a link launcher (.desktop file) instead of copying the entire directory.
    
    Bug: https://bugzilla.gnome.org/show_bug.cgi?id=357934
    Bug-Ubuntu: https://launchpad.net/bugs/62529

 mate-panel/menu.c             |    5 +++--
 mate-panel/menu.h             |    3 ++-
 mate-panel/panel-menu-items.c |    5 +++--
 3 files changed, 8 insertions(+), 5 deletions(-)

commit ab55bf3e46ccab95d268bf0e10dce2e15294cabf
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Feb 17 12:47:25 2011 +0100

    matecomponent: Remove API to build matecomponent applet as shared library
    
    Yes, it's bad, it breaks API and ABI. In a stable branch. But it's the
    matecomponent compatibility module. And it's a rather important fix.
    
    We can't have matecomponent applets as shared libraries since both matecomponent
    applets and dbus applets are sharing the MatePanelApplet type name, and they
    will conflict in the same process. Since we know we want to allow dbus
    in-process applets, it means we have to disallow matecomponent in-process
    applets. Hence this change.

 .../libmate-panel-applet/mate-panel-applet.c       |   49 --------------------
 .../libmate-panel-applet/mate-panel-applet.h       |   32 -------------
 2 files changed, 81 deletions(-)

commit 065282bda1caacc9891c4f0c5411f03f17dc5555
Author: Germán Póo-Caamaño <gpoo@gnome.org>
Date:   Sat Jan 29 22:08:32 2011 -0800

    mate-panel-desktop: Fix the Categories key
    
    mate-panel is not an utility, it is part of the core.  Hence,
    the Categories reflects panel is part of System.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640690
    
    Signed-off-by: Germán Póo-Caamaño <gpoo@gnome.org>

 mate-panel/mate-panel.desktop.in.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 92ba1e2db39b69340462ce0570bb971154ecdf2d
Author: Vincent Untz <vuntz@gnome.org>
Date:   Fri Jan 7 17:42:43 2011 -0800

    Change references from matecomponent-applet to external-applet in mateconf
    
    Signed-off-by: Germán Póo-Caamaño <gpoo@gnome.org>

 mate-panel/mate-panel-add.in           |    2 +-
 mate-panel/panel-default-setup.entries |   12 ++++++------
 mate-panel/panel-object.schemas.in     |    6 ++++--
 mate-panel/panel-profile.c             |    4 +++-
 4 files changed, 14 insertions(+), 10 deletions(-)

commit 5b2e5096babd9008c9f29836a93302816e15b68f
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Mar 11 21:23:05 2012 +0100

    1.2.1 release

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 340a69c6f3a0d27a4d127d337a3933e01162ab7c
Author: Perberos <perberos@gmail.com>
Date:   Wed Mar 7 10:13:20 2012 -0300

    http://bugzilla-attachments.gnome.org/attachment.cgi?id=201328

 libmate-panel-applet/mate-panel-applet-factory.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 57923befd804306ffc51c897e74449cbb62dd669
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Feb 29 23:20:33 2012 +0100

    fix mate-autogen rename

 autogen.sh |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit cdabbca548fbe1d695b698c9b419a21188247553
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Feb 29 21:48:47 2012 +0100

    fix for 1.2 release

 MAINTAINERS  |   18 ------------------
 configure.ac |    2 +-
 2 files changed, 1 insertion(+), 19 deletions(-)

commit 95478d54ab1c61549f76639203c969c6be9dfd99
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Feb 29 19:34:49 2012 +0100

    update translations

 po/et.po    | 1468 ++++++++++++++++++++++++++++++++++--------------------
 po/nl.po    | 1579 +++++++++++++++++------------------------------------------
 po/pt_BR.po | 1501 +++++++++++++++++---------------------------------------
 3 files changed, 1813 insertions(+), 2735 deletions(-)

commit a863fa94d275584bdd7daf4de463323fde4b91c8
Merge: d785147 5fcd54e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Feb 27 08:49:53 2012 -0800

    Merge pull request #10 from brianjmurrell/master
    
    Fix for mate-panel issue #9

commit 5fcd54e8b74acf364cc348850f69a1a416b89692
Author: Brian J. Murrell <brian@interlinx.bc.ca>
Date:   Thu Feb 23 20:49:54 2012 -0500

    fix for GNOME bug 632369

 .../mate-panel-applet-container.c                  |   12 ++++++++----
 .../mate-panel-applet-container.h                  |    1 +
 .../mate-panel-applet-frame-dbus.c                 |    4 +++-
 mate-panel/mate-panel-applet-frame.c               |    6 ++++++
 mate-panel/mate-panel-applet-frame.h               |    2 ++
 mate-panel/panel-test-applets.c                    |    1 +
 6 files changed, 21 insertions(+), 5 deletions(-)

commit d7851474e28e1aa65cbdabe0d3b4032afc7d40f3
Author: Perberos <perberos@gmail.com>
Date:   Mon Jan 30 13:12:30 2012 -0300

    g_get_user_config_dir() would be better (https://github.com/mate-desktop/mate-panel/issues/8)

 mate-panel/panel-util.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 1016505cc78a6dfe385c935ab17bf458f0ba2de3
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:16:21 2012 -0300

    ~/.mate2/ moved to ~/.config/mate/

 mate-panel/panel-util.c |    8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit 8821addfd919b8ab42e7f8462ae78315d116f74c
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:12:03 2012 -0300

    website info redundancy, refer to mate-about

 mate-panel/panel-context-menu.c |  423 +++++++++++++++++++--------------------
 1 file changed, 211 insertions(+), 212 deletions(-)

commit 190debbe91a21932a637989a5d1659c866c0ec30
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:11:32 2012 -0300

    removing extra spaces

 mate-panel/Makefile.am |  320 ++++++++++++++++++++++++------------------------
 1 file changed, 160 insertions(+), 160 deletions(-)

commit 19bfea3a8d5f2d20c3ad927b729fb04ba3ceef8f
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:10:25 2012 -0300

    website info redundancy, refer to mate-about

 applets/notification_area/main.c |    1 -
 1 file changed, 1 deletion(-)

commit 16659f4b196ce57bfc76ff51e85e9dc4417b2527
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:08:00 2012 -0300

    changing pkgbuild source method

 distro/archlinux/PKGBUILD |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit ea9dffce8aa379670e983669562b00435f8316ba
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:04:25 2012 -0300

    removing autogenerated files

 applets/Makefile.in                                |  677 ------
 applets/clock/Makefile.in                          | 1595 --------------
 applets/clock/pixmaps/Makefile.in                  |  537 -----
 applets/notification_area/Makefile.in              |  964 ---------
 applets/wncklet/Makefile.in                        | 1075 ----------
 doc/Makefile.in                                    |  676 ------
 doc/reference/Makefile.in                          |  672 ------
 doc/reference/mate-panel-applet/Makefile.in        |  804 -------
 help/Makefile.in                                   |  672 ------
 help/clock/Makefile.in                             | 1030 ---------
 help/fish/Makefile.in                              | 1030 ---------
 icons/16x16/Makefile.in                            |  564 -----
 icons/22x22/Makefile.in                            |  564 -----
 icons/24x24/Makefile.in                            |  550 -----
 icons/32x32/Makefile.in                            |  564 -----
 icons/48x48/Makefile.in                            |  544 -----
 icons/Makefile.in                                  |  725 -------
 icons/scalable/Makefile.in                         |  550 -----
 libmate-panel-applet/Makefile.in                   |  921 --------
 man/Makefile.in                                    |  553 -----
 mate-panel/Makefile.in                             | 2222 --------------------
 mate-panel/libegg/Makefile.in                      |  622 ------
 .../libmate-panel-applet-private/Makefile.in       |  644 ------
 mate-panel/libpanel-util/Makefile.in               |  647 ------
 mate-panel/mate-panel-add.in                       |    3 +-
 matecomponent/Makefile.in                          |  672 ------
 matecomponent/idl/Makefile.in                      |  520 -----
 matecomponent/libmate-panel-applet/Makefile.in     |  952 ---------
 matecomponent/panel-module/Makefile.in             |  786 -------
 po/Makefile.in.in                                  |  217 --
 30 files changed, 2 insertions(+), 22550 deletions(-)

commit e0a48baf161a51e7a61ffdf61e8c60050c9472f5
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 19 13:36:31 2012 +0100

    alacarte -> mozo (thanks to benpicco for the tip)

 mate-panel/panel-menu-bar.c    |    4 ++--
 mate-panel/panel-menu-button.c |    6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

commit 60fe93f5130407c3e02748341affbce360606c53
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 19 11:48:30 2012 +0100

    1.1.1 release

 AUTHORS                   |   15 +++++++++++----
 HACKING                   |   20 ++++----------------
 README                    |   13 +++----------
 configure.ac              |    5 +++--
 distro/archlinux/PKGBUILD |    2 +-
 distro/ubuntu/build       |    2 +-
 6 files changed, 23 insertions(+), 34 deletions(-)

commit 40dd3d1c879d031e128c521a409007acf0051b25
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Wed Jan 18 21:38:02 2012 -0500

    Fixed mate-desktop URL

 applets/notification_area/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c8123c706d8c463e216c35aa41c53cf03ae3a695
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Fri Jan 13 19:58:46 2012 -0500

    Added mate-desktop.org to about window.

 mate-panel/panel-context-menu.c |  423 ++++++++++++++++++++-------------------
 1 file changed, 212 insertions(+), 211 deletions(-)

commit 4b0e0770aaa3d58e89ab0bd77799c8d162a6dbc1
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Tue Jan 10 14:26:02 2012 -0500

    Changed mate.gr.jp to gnome.gr.jp as requested in Issue #86

 po/ja.po |   22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

commit 4b23e8a1c2ddd97c200197abd10e7a6604643469
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 5 16:29:12 2012 +0100

    libmate-panel-applet: Add introspection annotations
    mate_panel_applet_factory_main was being generated with introspectable="0" because of missing annotations
    http://git.gnome.org/browse/gnome-panel/commit/?h=gnome-2-32&id=9cbae555115013bc7946e2ce3584d40639248f14

 libmate-panel-applet/mate-panel-applet.c |   10 ++++++++++
 1 file changed, 10 insertions(+)

commit eb26152358112a7a289c51f8100a8975f532df54
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 5 16:21:29 2012 +0100

    updated de translation

 po/de.po | 1298 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 586 insertions(+), 712 deletions(-)

commit 6b4c95bf8f8dc8254bb14bd9e72b25e96f99a5f2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 5 16:17:00 2012 +0100

    increased items number in bookmarks menu (same as debian&ubuntu gnome-panel)

 mate-panel/panel-menu-items.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bf0701223a05c06e154c6ed81664363a6f8a81bb
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 5 15:58:35 2012 +0100

    renamed gettext package name

 configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f7d562381383c00e9ff0ac3b02557836a06b3c97
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Jan 2 16:33:08 2012 +0100

    updated it translation

 po/it.po |  935 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 429 insertions(+), 506 deletions(-)

commit ea5dba1a995c3643e1e01dcca148a7986ed89e8a
Author: Perberos <perberos@gmail.com>
Date:   Tue Dec 13 13:53:58 2011 -0200

    adding missing ld flags

 mate-panel/Makefile.am |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 3f01e0e02e559f9e3e632596dd8097b689b174c4
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Fri Dec 9 23:32:44 2011 -0500

    updated version

 configure.ac              |   18 +++++++++---------
 distro/archlinux/PKGBUILD |    2 +-
 distro/ubuntu/build       |    2 +-
 3 files changed, 11 insertions(+), 11 deletions(-)

commit dab51c76bea31b0bb8b79119de2f6a68f4fff489
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Fri Dec 2 20:15:54 2011 -0500

    Changed version to 2011.12.01

 configure.ac              |    2 +-
 distro/archlinux/PKGBUILD |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit c51ef797a707f4e2c6f9688d4378f2b0e9898a66
Author: Perberos <perberos@gmail.com>
Date:   Thu Dec 1 22:56:10 2011 -0300

    moving from https://github.com/perberos/mate-desktop-environment

 AUTHORS                                            |   52 +
 COPYING                                            |  339 +
 COPYING-DOCS                                       |  355 +
 COPYING.LIB                                        |  481 ++
 ChangeLog                                          |    3 +
 HACKING                                            |   31 +
 MAINTAINERS                                        |   18 +
 Makefile.am                                        |   53 +
 NEWS                                               |    3 +
 README                                             |   49 +
 applets/Makefile.am                                |    7 +
 applets/Makefile.in                                |  677 ++
 applets/clock/Makefile.am                          |  205 +
 applets/clock/Makefile.in                          | 1595 ++++
 applets/clock/calendar-client.c                    | 2169 ++++++
 applets/clock/calendar-client.h                    |  153 +
 applets/clock/calendar-debug.h                     |   56 +
 applets/clock/calendar-sources.c                   |  658 ++
 applets/clock/calendar-sources.h                   |   70 +
 applets/clock/calendar-window.c                    | 2125 ++++++
 applets/clock/calendar-window.h                    |   84 +
 applets/clock/clock-face.c                         |  462 ++
 applets/clock/clock-face.h                         |   64 +
 applets/clock/clock-location-tile.c                |  728 ++
 applets/clock/clock-location-tile.h                |   51 +
 applets/clock/clock-location.c                     |  894 +++
 applets/clock/clock-location.h                     |   87 +
 applets/clock/clock-map.c                          |  700 ++
 applets/clock/clock-map.h                          |   43 +
 applets/clock/clock-marshallers.list               |    3 +
 applets/clock/clock-menu.xml                       |    8 +
 applets/clock/clock-sunpos.c                       |  197 +
 applets/clock/clock-sunpos.h                       |    8 +
 applets/clock/clock-utils.c                        |  127 +
 applets/clock/clock-utils.h                        |   57 +
 applets/clock/clock.c                              | 3745 +++++++++
 applets/clock/clock.h                              |   41 +
 applets/clock/clock.schemas.in                     |  313 +
 applets/clock/clock.ui                             | 1136 +++
 ....mate.panel.ClockApplet.mate-panel-applet.in.in |   18 +
 ...mate.panel.applet.ClockAppletFactory.service.in |    3 +
 applets/clock/pixmaps/Makefile.am                  |   21 +
 applets/clock/pixmaps/Makefile.in                  |  537 ++
 applets/clock/pixmaps/clock-calendar-icon.png      |  Bin 0 -> 653 bytes
 applets/clock/pixmaps/clock-face-large.svg         |  291 +
 applets/clock/pixmaps/clock-face-small-day.svg     |  290 +
 applets/clock/pixmaps/clock-face-small-evening.svg |  290 +
 applets/clock/pixmaps/clock-face-small-morning.svg |  290 +
 applets/clock/pixmaps/clock-face-small-night.svg   |  291 +
 applets/clock/pixmaps/clock-face-small.svg         |  290 +
 .../clock/pixmaps/clock-map-location-current.png   |  Bin 0 -> 379 bytes
 .../clock/pixmaps/clock-map-location-hilight.png   |  Bin 0 -> 346 bytes
 .../clock/pixmaps/clock-map-location-marker.png    |  Bin 0 -> 283 bytes
 applets/clock/pixmaps/clock-map.png                |  Bin 0 -> 25244 bytes
 applets/clock/pixmaps/clock-map.svg                |  755 ++
 applets/clock/set-timezone.c                       |  291 +
 applets/clock/set-timezone.h                       |   40 +
 applets/clock/system-timezone.c                    | 1048 +++
 applets/clock/system-timezone.h                    |   87 +
 applets/clock/test-system-timezone.c               |  122 +
 applets/fish/Makefile.am                           |  111 +
 applets/fish/fish-menu.xml                         |    4 +
 applets/fish/fish.c                                | 2012 +++++
 applets/fish/fish.schemas.in                       |   91 +
 applets/fish/fish.ui                               |  444 ++
 applets/fish/fishanim.png                          |  Bin 0 -> 4859 bytes
 applets/fish/footguy.png                           |  Bin 0 -> 176 bytes
 applets/fish/monkey.png                            |  Bin 0 -> 5063 bytes
 applets/fish/nyan.png                              |  Bin 0 -> 1211 bytes
 applets/fish/oldwanda.png                          |  Bin 0 -> 12996 bytes
 ...g.mate.panel.FishApplet.mate-panel-applet.in.in |   17 +
 ....mate.panel.applet.FishAppletFactory.service.in |    3 +
 applets/fish/wanda.png                             |  Bin 0 -> 13683 bytes
 applets/fish/wanda.svg                             | 3724 +++++++++
 applets/notification_area/Makefile.am              |  112 +
 applets/notification_area/Makefile.in              |  964 +++
 applets/notification_area/fixedtip.c               |  269 +
 applets/notification_area/fixedtip.h               |   72 +
 applets/notification_area/main.c                   |  267 +
 applets/notification_area/na-marshal.c             |  167 +
 applets/notification_area/na-marshal.h             |   36 +
 applets/notification_area/na-marshal.list          |    3 +
 applets/notification_area/na-tray-child.c          |  539 ++
 applets/notification_area/na-tray-child.h          |   75 +
 applets/notification_area/na-tray-manager.c        |  859 +++
 applets/notification_area/na-tray-manager.h        |  101 +
 applets/notification_area/na-tray.c                |  837 ++
 applets/notification_area/na-tray.h                |   71 +
 .../notification_area/notification-area-menu.xml   |    3 +
 ....NotificationAreaApplet.mate-panel-applet.in.in |   17 +
 ...applet.NotificationAreaAppletFactory.service.in |    3 +
 applets/notification_area/testtray.c               |  220 +
 applets/wncklet/Makefile.am                        |  115 +
 applets/wncklet/Makefile.in                        | 1075 +++
 .../org.mate.panel.Wncklet.mate-panel-applet.in.in |   50 +
 ...org.mate.panel.applet.WnckletFactory.service.in |    3 +
 applets/wncklet/showdesktop-menu.xml               |    3 +
 applets/wncklet/showdesktop.c                      |  533 ++
 applets/wncklet/showdesktop.h                      |   42 +
 applets/wncklet/window-list-menu.xml               |    4 +
 applets/wncklet/window-list.c                      |  749 ++
 applets/wncklet/window-list.h                      |   25 +
 applets/wncklet/window-list.schemas.in             |   77 +
 applets/wncklet/window-list.ui                     |  443 ++
 applets/wncklet/window-menu-menu.xml               |    3 +
 applets/wncklet/window-menu.c                      |  269 +
 applets/wncklet/window-menu.h                      |   45 +
 applets/wncklet/wncklet.c                          |  144 +
 applets/wncklet/wncklet.h                          |   48 +
 applets/wncklet/workspace-switcher-menu.xml        |    6 +
 applets/wncklet/workspace-switcher.c               |  932 +++
 applets/wncklet/workspace-switcher.h               |   25 +
 applets/wncklet/workspace-switcher.schemas.in      |   52 +
 applets/wncklet/workspace-switcher.ui              |  323 +
 autogen.sh                                         |   25 +
 configure.ac                                       |  445 ++
 distro/archlinux/PKGBUILD                          |   39 +
 distro/archlinux/mate-panel.install                |   31 +
 distro/ubuntu/build                                |   31 +
 distro/ubuntu/postinst                             |   15 +
 distro/ubuntu/postrm                               |    8 +
 distro/ubuntu/preinst                              |    7 +
 distro/ubuntu/prerm                                |   16 +
 doc/Makefile.am                                    |    7 +
 doc/Makefile.in                                    |  676 ++
 doc/panel-keynav.txt                               |   84 +
 doc/panel-session-handling.txt                     |  250 +
 doc/reference/Makefile.am                          |    3 +
 doc/reference/Makefile.in                          |  672 ++
 doc/reference/mate-panel-applet/Makefile.am        |   68 +
 doc/reference/mate-panel-applet/Makefile.in        |  804 ++
 .../mate-panel-applet/html/applet-popups.html      |   31 +
 .../mate-panel-applet/html/applet-porting.html     |  207 +
 .../mate-panel-applet/html/applet-writing.html     |   93 +
 doc/reference/mate-panel-applet/html/home.png      |  Bin 0 -> 654 bytes
 doc/reference/mate-panel-applet/html/index.html    |   64 +
 doc/reference/mate-panel-applet/html/index.sgml    |   69 +
 doc/reference/mate-panel-applet/html/left.png      |  Bin 0 -> 459 bytes
 ...nel-applet-Panel-Applet-MateConf-Utilities.html |  655 ++
 .../html/mate-panel-applet-mate-panel-applet.html  |  948 +++
 .../html/mate-panel-applet.devhelp                 |   68 +
 .../html/mate-panel-applet.devhelp2                |   75 +
 .../mate-panel-applet/html/mate-panel-applet.html  |   38 +
 .../mate-panel-applet/html/multi-applets.html      |   31 +
 .../mate-panel-applet/html/panel-signals.html      |   31 +
 doc/reference/mate-panel-applet/html/right.png     |  Bin 0 -> 472 bytes
 .../mate-panel-applet/html/server-files.html       |   67 +
 .../mate-panel-applet/html/session-saving.html     |   31 +
 doc/reference/mate-panel-applet/html/style.css     |  265 +
 doc/reference/mate-panel-applet/html/up.png        |  Bin 0 -> 406 bytes
 .../mate-panel-applet/mate-panel-applet-docs.sgml  |  385 +
 .../mate-panel-applet-sections.txt                 |   67 +
 .../mate-panel-applet/mate-panel-applet.types      |    3 +
 .../tmpl/mate-panel-applet-mateconf.sgml           |  263 +
 .../tmpl/mate-panel-applet-unused.sgml             |  109 +
 .../mate-panel-applet/tmpl/mate-panel-applet.sgml  |  393 +
 help/Makefile.am                                   |    3 +
 help/Makefile.in                                   |  672 ++
 help/clock/C/figures/clock_applet.png              |  Bin 0 -> 406 bytes
 help/clock/C/legal.xml                             |   64 +
 help/clock/C/mate-applet-clock.xml                 |  466 ++
 help/clock/Makefile.am                             |    9 +
 help/clock/Makefile.in                             | 1030 +++
 help/clock/ar/ar.po                                |  377 +
 help/clock/ar/figures/clock_applet.png             |  Bin 0 -> 2312 bytes
 help/clock/ca/ca.po                                |  373 +
 help/clock/ca/figures/clock_applet.png             |  Bin 0 -> 1207 bytes
 help/clock/cs/cs.po                                |  672 ++
 help/clock/cs/figures/clock_applet.png             |  Bin 0 -> 879 bytes
 help/clock/da/da.po                                |  716 ++
 help/clock/de/de.po                                |  694 ++
 help/clock/de/figures/clock_applet.png             |  Bin 0 -> 1398 bytes
 help/clock/el/el.po                                |  597 ++
 help/clock/el/figures/clock_applet.png             |  Bin 0 -> 2160 bytes
 help/clock/en_GB/en_GB.po                          |  541 ++
 help/clock/es/es.po                                |  742 ++
 help/clock/es/figures/clock_applet.png             |  Bin 0 -> 1795 bytes
 help/clock/eu/eu.po                                |  375 +
 help/clock/eu/figures/clock_applet.png             |  Bin 0 -> 1274 bytes
 help/clock/fi/fi.po                                |  420 ++
 help/clock/fr/figures/clock_applet.png             |  Bin 0 -> 1341 bytes
 help/clock/fr/fr.po                                |  685 ++
 help/clock/it/figures/clock_applet.png             |  Bin 0 -> 1574 bytes
 help/clock/it/it.po                                |  374 +
 help/clock/ja/figures/clock_applet.png             |  Bin 0 -> 1589 bytes
 help/clock/ja/ja.po                                |  696 ++
 help/clock/ko/figures/clock_applet.png             |  Bin 0 -> 418 bytes
 help/clock/ko/ko.po                                |  529 ++
 help/clock/mate-applet-clock.omf.in                |   11 +
 help/clock/nl/figures/clock_applet.png             |  Bin 0 -> 406 bytes
 help/clock/nl/nl.po                                |  957 +++
 help/clock/oc/oc.po                                |  466 ++
 help/clock/pa/pa.po                                |  486 ++
 help/clock/pt/pt.po                                |  547 ++
 help/clock/pt_BR/pt_BR.po                          |  545 ++
 help/clock/ru/ru.po                                |  427 ++
 help/clock/sr/figures/clock_applet.png             |  Bin 0 -> 1058 bytes
 help/clock/sr/sr.po                                |  539 ++
 help/clock/sv/figures/clock_applet.png             |  Bin 0 -> 399 bytes
 help/clock/sv/sv.po                                |  394 +
 help/clock/th/figures/clock_applet.png             |  Bin 0 -> 1235 bytes
 help/clock/th/th.po                                |  414 +
 help/clock/uk/figures/clock_applet.png             |  Bin 0 -> 1923 bytes
 help/clock/uk/uk.po                                |  538 ++
 help/clock/zh_CN/figures/clock_applet.png          |  Bin 0 -> 1444 bytes
 help/clock/zh_CN/zh_CN.po                          |  676 ++
 help/clock/zh_HK/zh_HK.po                          |  659 ++
 help/clock/zh_TW/figures/clock_applet.png          |  Bin 0 -> 429 bytes
 help/clock/zh_TW/zh_TW.po                          |  702 ++
 help/fish/C/figures/fish_applet.png                |  Bin 0 -> 5818 bytes
 help/fish/C/legal.xml                              |   76 +
 help/fish/C/mate-applet-fish.xml                   |  265 +
 help/fish/Makefile.am                              |    9 +
 help/fish/Makefile.in                              | 1030 +++
 help/fish/ca/ca.po                                 |  269 +
 help/fish/cs/cs.po                                 |  453 ++
 help/fish/de/de.po                                 |  463 ++
 help/fish/el/el.po                                 |  364 +
 help/fish/en_GB/en_GB.po                           |  409 +
 help/fish/es/es.po                                 |  464 ++
 help/fish/eu/eu.po                                 |  271 +
 help/fish/fi/fi.po                                 |  316 +
 help/fish/fr/fr.po                                 |  446 ++
 help/fish/it/it.po                                 |  457 ++
 help/fish/ja/ja.po                                 |  433 ++
 help/fish/ko/figures/fish_applet.png               |  Bin 0 -> 5818 bytes
 help/fish/ko/ko.po                                 |  396 +
 help/fish/mate-applet-fish.omf.in                  |   11 +
 help/fish/oc/oc.po                                 |  348 +
 help/fish/ru/ru.po                                 |  405 +
 help/fish/sv/sv.po                                 |  284 +
 help/fish/th/th.po                                 |  394 +
 help/fish/uk/figures/fish_applet.png               |  Bin 0 -> 5818 bytes
 help/fish/uk/uk.po                                 |  405 +
 help/fish/zh_CN/zh_CN.po                           |  421 ++
 icons/16x16/Makefile.am                            |   48 +
 icons/16x16/Makefile.in                            |  564 ++
 icons/16x16/mate-panel-clock.png                   |  Bin 0 -> 887 bytes
 icons/16x16/mate-panel-clock.xcf.bz2               |  Bin 0 -> 1399 bytes
 icons/16x16/mate-panel-drawer.png                  |  Bin 0 -> 444 bytes
 icons/16x16/mate-panel-drawer.svg                  |  297 +
 icons/16x16/mate-panel-fish.png                    |  Bin 0 -> 740 bytes
 icons/16x16/mate-panel-fish.xcf.bz2                |  Bin 0 -> 1450 bytes
 icons/16x16/mate-panel-force-quit.png              |  Bin 0 -> 711 bytes
 icons/16x16/mate-panel-force-quit.svg              |  144 +
 icons/16x16/mate-panel-launcher.png                |  Bin 0 -> 571 bytes
 icons/16x16/mate-panel-launcher.svg                |  488 ++
 icons/16x16/mate-panel-notification-area.png       |  Bin 0 -> 812 bytes
 icons/16x16/mate-panel-notification-area.svg       |  285 +
 icons/16x16/mate-panel-separator.png               |  Bin 0 -> 160 bytes
 icons/16x16/mate-panel-separator.svg               |  105 +
 icons/16x16/mate-panel-window-list.png             |  Bin 0 -> 390 bytes
 icons/16x16/mate-panel-window-list.xcf.bz2         |  Bin 0 -> 657 bytes
 icons/16x16/mate-panel-window-menu.png             |  Bin 0 -> 545 bytes
 icons/16x16/mate-panel-window-menu.xcf.bz2         |  Bin 0 -> 900 bytes
 icons/16x16/mate-panel-workspace-switcher.png      |  Bin 0 -> 400 bytes
 icons/16x16/mate-panel-workspace-switcher.svg      |  186 +
 icons/16x16/mate-panel.png                         |  Bin 0 -> 354 bytes
 icons/16x16/mate-panel.svg                         |  231 +
 icons/22x22/Makefile.am                            |   48 +
 icons/22x22/Makefile.in                            |  564 ++
 icons/22x22/mate-panel-clock.png                   |  Bin 0 -> 1459 bytes
 icons/22x22/mate-panel-clock.svg                   |  268 +
 icons/22x22/mate-panel-drawer.png                  |  Bin 0 -> 718 bytes
 icons/22x22/mate-panel-drawer.svg                  |  352 +
 icons/22x22/mate-panel-fish.png                    |  Bin 0 -> 1461 bytes
 icons/22x22/mate-panel-fish.xcf.bz2                |  Bin 0 -> 2617 bytes
 icons/22x22/mate-panel-force-quit.png              |  Bin 0 -> 1018 bytes
 icons/22x22/mate-panel-force-quit.xcf.bz2          |  Bin 0 -> 1598 bytes
 icons/22x22/mate-panel-launcher.png                |  Bin 0 -> 955 bytes
 icons/22x22/mate-panel-launcher.svg                |  788 ++
 icons/22x22/mate-panel-notification-area.png       |  Bin 0 -> 1267 bytes
 icons/22x22/mate-panel-notification-area.svg       |  292 +
 icons/22x22/mate-panel-separator.png               |  Bin 0 -> 165 bytes
 icons/22x22/mate-panel-separator.svg               |  105 +
 icons/22x22/mate-panel-window-list.png             |  Bin 0 -> 609 bytes
 icons/22x22/mate-panel-window-list.xcf.bz2         |  Bin 0 -> 1174 bytes
 icons/22x22/mate-panel-window-menu.png             |  Bin 0 -> 701 bytes
 icons/22x22/mate-panel-window-menu.xcf.bz2         |  Bin 0 -> 1485 bytes
 icons/22x22/mate-panel-workspace-switcher.png      |  Bin 0 -> 537 bytes
 icons/22x22/mate-panel-workspace-switcher.svg      |  186 +
 icons/22x22/mate-panel.png                         |  Bin 0 -> 394 bytes
 icons/22x22/mate-panel.svg                         |  230 +
 icons/24x24/Makefile.am                            |   34 +
 icons/24x24/Makefile.in                            |  550 ++
 icons/24x24/mate-panel-clock.png                   |  Bin 0 -> 1510 bytes
 icons/24x24/mate-panel-drawer.png                  |  Bin 0 -> 715 bytes
 icons/24x24/mate-panel-fish.png                    |  Bin 0 -> 1475 bytes
 icons/24x24/mate-panel-force-quit.png              |  Bin 0 -> 1045 bytes
 icons/24x24/mate-panel-launcher.png                |  Bin 0 -> 1023 bytes
 icons/24x24/mate-panel-notification-area.png       |  Bin 0 -> 1318 bytes
 icons/24x24/mate-panel-separator.png               |  Bin 0 -> 191 bytes
 icons/24x24/mate-panel-window-list.png             |  Bin 0 -> 649 bytes
 icons/24x24/mate-panel-window-menu.png             |  Bin 0 -> 733 bytes
 icons/24x24/mate-panel-workspace-switcher.png      |  Bin 0 -> 560 bytes
 icons/24x24/mate-panel.png                         |  Bin 0 -> 430 bytes
 icons/32x32/Makefile.am                            |   48 +
 icons/32x32/Makefile.in                            |  564 ++
 icons/32x32/mate-panel-clock.png                   |  Bin 0 -> 2177 bytes
 icons/32x32/mate-panel-clock.svg                   |  291 +
 icons/32x32/mate-panel-drawer.png                  |  Bin 0 -> 865 bytes
 icons/32x32/mate-panel-drawer.svg                  |  486 ++
 icons/32x32/mate-panel-fish.png                    |  Bin 0 -> 1785 bytes
 icons/32x32/mate-panel-fish.svg                    |  656 ++
 icons/32x32/mate-panel-force-quit.png              |  Bin 0 -> 1588 bytes
 icons/32x32/mate-panel-force-quit.svg              |  362 +
 icons/32x32/mate-panel-launcher.png                |  Bin 0 -> 1777 bytes
 icons/32x32/mate-panel-launcher.svg                |  710 ++
 icons/32x32/mate-panel-notification-area.png       |  Bin 0 -> 1712 bytes
 icons/32x32/mate-panel-notification-area.svg       |  291 +
 icons/32x32/mate-panel-separator.png               |  Bin 0 -> 176 bytes
 icons/32x32/mate-panel-separator.svg               |  105 +
 icons/32x32/mate-panel-window-list.png             |  Bin 0 -> 723 bytes
 icons/32x32/mate-panel-window-list.svg             |  170 +
 icons/32x32/mate-panel-window-menu.png             |  Bin 0 -> 830 bytes
 icons/32x32/mate-panel-window-menu.svg             |  368 +
 icons/32x32/mate-panel-workspace-switcher.png      |  Bin 0 -> 706 bytes
 icons/32x32/mate-panel-workspace-switcher.svg      |  452 ++
 icons/32x32/mate-panel.png                         |  Bin 0 -> 1070 bytes
 icons/32x32/mate-panel.svg                         |  202 +
 icons/48x48/Makefile.am                            |   28 +
 icons/48x48/Makefile.in                            |  544 ++
 icons/48x48/mate-panel.png                         |  Bin 0 -> 1523 bytes
 icons/48x48/mate-panel.svg                         |  274 +
 icons/Makefile.am                                  |   10 +
 icons/Makefile.in                                  |  725 ++
 icons/mate-gegl2-2.png                             |  Bin 0 -> 10394 bytes
 icons/mate-gegl2.png                               |  Bin 0 -> 8359 bytes
 icons/scalable/Makefile.am                         |   34 +
 icons/scalable/Makefile.in                         |  550 ++
 icons/scalable/mate-panel-clock.svg                |  450 ++
 icons/scalable/mate-panel-drawer.svg               |  819 ++
 icons/scalable/mate-panel-fish.svg                 |  658 ++
 icons/scalable/mate-panel-force-quit.svg           |  347 +
 icons/scalable/mate-panel-launcher.svg             |  724 ++
 icons/scalable/mate-panel-notification-area.svg    |  289 +
 icons/scalable/mate-panel-separator.svg            |  105 +
 icons/scalable/mate-panel-window-list.svg          |  324 +
 icons/scalable/mate-panel-window-menu.svg          |  371 +
 icons/scalable/mate-panel-workspace-switcher.svg   |  361 +
 icons/scalable/mate-panel.svg                      |  274 +
 libmate-panel-applet/Makefile.am                   |  143 +
 libmate-panel-applet/Makefile.in                   |  921 +++
 libmate-panel-applet/TODO                          |   14 +
 .../libmatepanelapplet-3.0-uninstalled.pc.in       |   11 +
 libmate-panel-applet/libmatepanelapplet-3.0.pc.in  |   11 +
 libmate-panel-applet/mate-panel-applet-factory.c   |  263 +
 libmate-panel-applet/mate-panel-applet-factory.h   |   57 +
 .../mate-panel-applet-marshal.list                 |    5 +
 libmate-panel-applet/mate-panel-applet-mateconf.c  |  457 ++
 libmate-panel-applet/mate-panel-applet-mateconf.h  |   90 +
 libmate-panel-applet/mate-panel-applet.c           | 2315 ++++++
 libmate-panel-applet/mate-panel-applet.h           |  184 +
 .../org.mate.panel.TestApplet.mate-panel-applet.in |   10 +
 libmate-panel-applet/test-dbus-applet.c            |  211 +
 m4/d-type.m4                                       |   49 +
 man/Makefile.am                                    |    5 +
 man/Makefile.in                                    |  553 ++
 man/mate-panel.1                                   |   27 +
 mate-panel/Makefile.am                             |  290 +
 mate-panel/Makefile.in                             | 2222 ++++++
 mate-panel/applet.c                                | 1449 ++++
 mate-panel/applet.h                                |  119 +
 mate-panel/button-widget.c                         |  902 +++
 mate-panel/button-widget.h                         |   60 +
 mate-panel/drawer.c                                |  806 ++
 mate-panel/drawer.h                                |   52 +
 mate-panel/launcher.c                              | 1114 +++
 mate-panel/launcher.h                              |   80 +
 mate-panel/libegg/Makefile.am                      |   25 +
 mate-panel/libegg/Makefile.in                      |  622 ++
 mate-panel/libegg/eggdesktopfile.c                 | 1510 ++++
 mate-panel/libegg/eggdesktopfile.h                 |  164 +
 mate-panel/libegg/eggsmclient-private.h            |   57 +
 mate-panel/libegg/eggsmclient-xsmp.c               | 1370 ++++
 mate-panel/libegg/eggsmclient.c                    |  604 ++
 mate-panel/libegg/eggsmclient.h                    |  121 +
 .../libmate-panel-applet-private/Makefile.am       |   34 +
 .../libmate-panel-applet-private/Makefile.in       |  644 ++
 .../mate-panel-applet-container.c                  |  790 ++
 .../mate-panel-applet-container.h                  |  118 +
 .../mate-panel-applet-frame-dbus.c                 |  468 ++
 .../mate-panel-applet-frame-dbus.h                 |   65 +
 .../mate-panel-applet-mini.c                       |    5 +
 .../mate-panel-applets-manager-dbus.c              |  604 ++
 .../mate-panel-applets-manager-dbus.h              |   60 +
 mate-panel/libpanel-util/Makefile.am               |   39 +
 mate-panel/libpanel-util/Makefile.in               |  647 ++
 mate-panel/libpanel-util/panel-cleanup.c           |  110 +
 mate-panel/libpanel-util/panel-cleanup.h           |   51 +
 mate-panel/libpanel-util/panel-dbus-service.c      |  307 +
 mate-panel/libpanel-util/panel-dbus-service.h      |   78 +
 mate-panel/libpanel-util/panel-error.c             |   96 +
 mate-panel/libpanel-util/panel-error.h             |   49 +
 mate-panel/libpanel-util/panel-glib.c              |  164 +
 mate-panel/libpanel-util/panel-glib.h              |   46 +
 mate-panel/libpanel-util/panel-gtk.c               |   83 +
 mate-panel/libpanel-util/panel-gtk.h               |   42 +
 mate-panel/libpanel-util/panel-icon-chooser.c      |  555 ++
 mate-panel/libpanel-util/panel-icon-chooser.h      |   79 +
 mate-panel/libpanel-util/panel-keyfile.c           |  363 +
 mate-panel/libpanel-util/panel-keyfile.h           |   79 +
 mate-panel/libpanel-util/panel-launch.c            |  234 +
 mate-panel/libpanel-util/panel-launch.h            |   65 +
 mate-panel/libpanel-util/panel-list.c              |  212 +
 mate-panel/libpanel-util/panel-list.h              |   56 +
 mate-panel/libpanel-util/panel-session-manager.c   |  192 +
 mate-panel/libpanel-util/panel-session-manager.h   |   75 +
 mate-panel/libpanel-util/panel-show.c              |  283 +
 mate-panel/libpanel-util/panel-show.h              |   54 +
 mate-panel/libpanel-util/panel-xdg.c               |  152 +
 mate-panel/libpanel-util/panel-xdg.h               |   43 +
 mate-panel/main.c                                  |  153 +
 mate-panel/mate-desktop-item-edit.c                |  225 +
 mate-panel/mate-panel-add.in                       |  325 +
 mate-panel/mate-panel-applet-frame.c               | 1002 +++
 mate-panel/mate-panel-applet-frame.h               |  146 +
 mate-panel/mate-panel-applet-info.c                |  113 +
 mate-panel/mate-panel-applet-info.h                |   51 +
 mate-panel/mate-panel-applets-manager.c            |  201 +
 mate-panel/mate-panel-applets-manager.h            |   94 +
 mate-panel/mate-panel.desktop.in.in                |   19 +
 mate-panel/mate-panelrc                            |    4 +
 mate-panel/menu.c                                  | 1914 +++++
 mate-panel/menu.h                                  |   80 +
 mate-panel/nothing.cP                              | 1568 ++++
 mate-panel/nothing.h                               |   22 +
 mate-panel/panel-a11y.c                            |  135 +
 mate-panel/panel-a11y.h                            |   43 +
 mate-panel/panel-action-button.c                   |  907 +++
 mate-panel/panel-action-button.h                   |  103 +
 mate-panel/panel-action-protocol.c                 |  158 +
 mate-panel/panel-action-protocol.h                 |   40 +
 mate-panel/panel-addto.c                           | 1428 ++++
 mate-panel/panel-addto.h                           |   39 +
 mate-panel/panel-background-monitor.c              |  440 ++
 mate-panel/panel-background-monitor.h              |   60 +
 mate-panel/panel-background.c                      | 1156 +++
 mate-panel/panel-background.h                      |  133 +
 mate-panel/panel-bindings.c                        |  303 +
 mate-panel/panel-bindings.h                        |   42 +
 mate-panel/panel-compatibility.c                   | 1167 +++
 mate-panel/panel-compatibility.h                   |   48 +
 mate-panel/panel-compatibility.schemas             |  546 ++
 mate-panel/panel-config-global.c                   |  153 +
 mate-panel/panel-config-global.h                   |   47 +
 mate-panel/panel-context-menu.c                    |  307 +
 mate-panel/panel-context-menu.h                    |   33 +
 mate-panel/panel-default-setup.entries             |  657 ++
 mate-panel/panel-ditem-editor.c                    | 1804 +++++
 mate-panel/panel-ditem-editor.h                    |  115 +
 mate-panel/panel-enums.h                           |  110 +
 mate-panel/panel-force-quit.c                      |  316 +
 mate-panel/panel-force-quit.h                      |   41 +
 mate-panel/panel-frame.c                           |  328 +
 mate-panel/panel-frame.h                           |   69 +
 mate-panel/panel-general.schemas.in                |  127 +
 mate-panel/panel-global.schemas.in                 |  276 +
 mate-panel/panel-globals.h                         |   41 +
 mate-panel/panel-icon-names.h                      |   40 +
 mate-panel/panel-lockdown.c                        |  442 ++
 mate-panel/panel-lockdown.h                        |   55 +
 mate-panel/panel-marshal.list                      |    3 +
 mate-panel/panel-mateconf.c                        |  351 +
 mate-panel/panel-mateconf.h                        |   76 +
 mate-panel/panel-menu-bar.c                        |  474 ++
 mate-panel/panel-menu-bar.h                        |   83 +
 mate-panel/panel-menu-button.c                     | 1194 +++
 mate-panel/panel-menu-button.h                     |   98 +
 mate-panel/panel-menu-items.c                      | 1618 ++++
 mate-panel/panel-menu-items.h                      |   99 +
 mate-panel/panel-modules.c                         |   86 +
 mate-panel/panel-modules.h                         |   30 +
 mate-panel/panel-multiscreen.c                     |  784 ++
 mate-panel/panel-multiscreen.h                     |   58 +
 mate-panel/panel-object.schemas.in                 |  247 +
 mate-panel/panel-profile.c                         | 2647 +++++++
 mate-panel/panel-profile.h                         |  188 +
 mate-panel/panel-properties-dialog.c               |  999 +++
 mate-panel/panel-properties-dialog.h               |   40 +
 mate-panel/panel-properties-dialog.ui              |  769 ++
 mate-panel/panel-recent.c                          |  243 +
 mate-panel/panel-recent.h                          |   41 +
 mate-panel/panel-reset.c                           |   46 +
 mate-panel/panel-reset.h                           |   37 +
 mate-panel/panel-run-dialog.c                      | 2041 +++++
 mate-panel/panel-run-dialog.h                      |   41 +
 mate-panel/panel-run-dialog.ui                     |  270 +
 mate-panel/panel-separator.c                       |  250 +
 mate-panel/panel-separator.h                       |   71 +
 mate-panel/panel-session.c                         |   80 +
 mate-panel/panel-session.h                         |   39 +
 mate-panel/panel-shell.c                           |  164 +
 mate-panel/panel-shell.h                           |   37 +
 mate-panel/panel-stock-icons.c                     |  141 +
 mate-panel/panel-stock-icons.h                     |   60 +
 mate-panel/panel-struts.c                          |  516 ++
 mate-panel/panel-struts.h                          |   56 +
 mate-panel/panel-test-applets.c                    |  388 +
 mate-panel/panel-test-applets.ui                   |  203 +
 mate-panel/panel-toplevel.c                        | 5298 +++++++++++++
 mate-panel/panel-toplevel.h                        |  179 +
 mate-panel/panel-toplevel.schemas.in               |  434 ++
 mate-panel/panel-types.h                           |   19 +
 mate-panel/panel-util.c                            | 1210 +++
 mate-panel/panel-util.h                            |   72 +
 mate-panel/panel-widget.c                          | 3010 ++++++++
 mate-panel/panel-widget.h                          |  242 +
 mate-panel/panel-xutils.c                          |  258 +
 mate-panel/panel-xutils.h                          |   64 +
 mate-panel/panel.c                                 | 1403 ++++
 mate-panel/panel.h                                 |   57 +
 mate-panel/xstuff.c                                |  736 ++
 mate-panel/xstuff.h                                |   39 +
 matecomponent/Makefile.am                          |    3 +
 matecomponent/Makefile.in                          |  672 ++
 matecomponent/idl/MATE_Panel.idl                   |   51 +
 matecomponent/idl/Makefile.am                      |    6 +
 matecomponent/idl/Makefile.in                      |  520 ++
 .../MATE_Panel_TestApplet.server.in                |   31 +
 matecomponent/libmate-panel-applet/Makefile.am     |  129 +
 matecomponent/libmate-panel-applet/Makefile.in     |  952 +++
 matecomponent/libmate-panel-applet/TODO            |   14 +
 .../libmatepanelapplet-2.0-uninstalled.pc.in       |   11 +
 .../libmatepanelapplet-2.0.pc.in                   |   11 +
 .../mate-panel-applet-marshal.list                 |    5 +
 .../mate-panel-applet-mateconf.c                   |  458 ++
 .../mate-panel-applet-mateconf.h                   |   90 +
 .../mate-panel-applet-private.h                    |   40 +
 .../libmate-panel-applet/mate-panel-applet-shell.c |  105 +
 .../libmate-panel-applet/mate-panel-applet-shell.h |   62 +
 .../libmate-panel-applet/mate-panel-applet.c       | 1879 +++++
 .../libmate-panel-applet/mate-panel-applet.h       |  258 +
 .../panel-test-applets-matecomponent.c             |  349 +
 .../panel-test-applets-matecomponent.ui            |  203 +
 .../test-matecomponent-applet.c                    |  204 +
 matecomponent/panel-module/MATE_Panel_Popup.xml    |   20 +
 matecomponent/panel-module/Makefile.am             |   51 +
 matecomponent/panel-module/Makefile.in             |  786 ++
 .../mate-panel-applet-frame-matecomponent.c        |  759 ++
 .../mate-panel-applet-frame-matecomponent.h        |   65 +
 .../mate-panel-applets-manager-matecomponent.c     |  250 +
 .../mate-panel-applets-manager-matecomponent.h     |   59 +
 .../mate-panel-applets-matecomponent-module.c      |   48 +
 po/LINGUAS                                         |  109 +
 po/Makefile.in.in                                  |  217 +
 po/POTFILES.in                                     |   80 +
 po/POTFILES.skip                                   |    7 +
 po/af.po                                           | 4154 ++++++++++
 po/am.po                                           | 3084 ++++++++
 po/ar.po                                           | 3411 +++++++++
 po/as.po                                           | 3490 +++++++++
 po/ast.po                                          | 3438 +++++++++
 po/az.po                                           | 2979 ++++++++
 po/be.po                                           | 3606 +++++++++
 po/be@latin.po                                     | 3531 +++++++++
 po/bg.po                                           | 3289 ++++++++
 po/bn.po                                           | 3320 ++++++++
 po/bn_IN.po                                        | 3264 ++++++++
 po/br.po                                           | 2963 ++++++++
 po/bs.po                                           | 3005 ++++++++
 po/ca.po                                           | 7962 ++++++++++++++++++++
 po/ca@valencia.po                                  | 7944 +++++++++++++++++++
 po/crh.po                                          | 3443 +++++++++
 po/cs.po                                           | 3268 ++++++++
 po/cy.po                                           | 3750 +++++++++
 po/da.po                                           | 5305 +++++++++++++
 po/de.po                                           | 3527 +++++++++
 po/dz.po                                           | 3076 ++++++++
 po/el.po                                           | 3503 +++++++++
 po/en@shaw.po                                      | 3277 ++++++++
 po/en_CA.po                                        | 2854 +++++++
 po/en_GB.po                                        | 3746 +++++++++
 po/eo.po                                           | 3443 +++++++++
 po/es.po                                           | 3605 +++++++++
 po/et.po                                           | 2644 +++++++
 po/eu.po                                           | 3332 ++++++++
 po/fa.po                                           | 3805 ++++++++++
 po/fi.po                                           | 3897 ++++++++++
 po/fr.po                                           | 3365 +++++++++
 po/fur.po                                          | 3385 +++++++++
 po/fy.po                                           | 3059 ++++++++
 po/ga.po                                           | 3054 ++++++++
 po/gl.po                                           | 3340 ++++++++
 po/gu.po                                           | 3246 ++++++++
 po/gv.po                                           | 3395 +++++++++
 po/ha.po                                           | 3544 +++++++++
 po/he.po                                           | 3434 +++++++++
 po/hi.po                                           | 3244 ++++++++
 po/hr.po                                           | 3335 ++++++++
 po/hu.po                                           | 3293 ++++++++
 po/hy.po                                           | 3231 ++++++++
 po/id.po                                           | 3300 ++++++++
 po/ig.po                                           | 3493 +++++++++
 po/is.po                                           | 3332 ++++++++
 po/it.po                                           | 3447 +++++++++
 po/ja.po                                           | 3346 ++++++++
 po/ka.po                                           | 3422 +++++++++
 po/kk.po                                           | 2809 +++++++
 po/kn.po                                           | 3327 ++++++++
 po/ko.po                                           | 3221 ++++++++
 po/ku.po                                           | 2996 ++++++++
 po/ky.po                                           | 2624 +++++++
 po/la.po                                           | 3014 ++++++++
 po/li.po                                           | 4056 ++++++++++
 po/lt.po                                           | 3382 +++++++++
 po/lv.po                                           | 3442 +++++++++
 po/mai.po                                          | 3162 ++++++++
 po/mg.po                                           | 3826 ++++++++++
 po/mi.po                                           | 2506 ++++++
 po/mk.po                                           | 3358 +++++++++
 po/ml.po                                           | 3276 ++++++++
 po/mn.po                                           | 2852 +++++++
 po/mr.po                                           | 3220 ++++++++
 po/ms.po                                           | 3851 ++++++++++
 po/nb.po                                           | 3278 ++++++++
 po/nds.po                                          | 2993 ++++++++
 po/ne.po                                           | 3024 ++++++++
 po/nl.po                                           | 3705 +++++++++
 po/nn.po                                           | 3691 +++++++++
 po/nso.po                                          | 3125 ++++++++
 po/oc.po                                           | 3165 ++++++++
 po/or.po                                           | 3225 ++++++++
 po/pa.po                                           | 3322 ++++++++
 po/pl.po                                           | 3281 ++++++++
 po/ps.po                                           | 3148 ++++++++
 po/pt.po                                           | 4359 +++++++++++
 po/pt_BR.po                                        | 3651 +++++++++
 po/ro.po                                           | 3384 +++++++++
 po/ru.po                                           | 2852 +++++++
 po/rw.po                                           | 3037 ++++++++
 po/si.po                                           | 2717 +++++++
 po/sk.po                                           | 3641 +++++++++
 po/sl.po                                           | 2859 +++++++
 po/sq.po                                           | 3289 ++++++++
 po/sr.po                                           | 4134 ++++++++++
 po/sr@ije.po                                       | 3331 ++++++++
 po/sr@latin.po                                     | 4134 ++++++++++
 po/sv.po                                           | 2906 +++++++
 po/ta.po                                           | 3583 +++++++++
 po/te.po                                           | 3292 ++++++++
 po/th.po                                           | 4245 +++++++++++
 po/tr.po                                           | 3505 +++++++++
 po/ug.po                                           | 3408 +++++++++
 po/uk.po                                           | 3327 ++++++++
 po/uz.po                                           | 2948 ++++++++
 po/uz@cyrillic.po                                  | 2948 ++++++++
 po/vi.po                                           | 2818 +++++++
 po/wa.po                                           | 3731 +++++++++
 po/xh.po                                           | 2834 +++++++
 po/yi.po                                           | 2700 +++++++
 po/yo.po                                           | 3496 +++++++++
 po/zh_CN.po                                        | 3356 +++++++++
 po/zh_HK.po                                        | 3353 +++++++++
 po/zh_TW.po                                        | 3483 +++++++++
 po/zu.po                                           | 3033 ++++++++
 656 files changed, 536681 insertions(+)