summaryrefslogtreecommitdiff
path: root/NEWS
blob: 984cfeb1a3188ca12d18e1e1bdb8f4cff80ac159 (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
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
gnome-control-center 2.19.4

appearance:
- Fixed leaks (Jens Granseuer)
- Added a parameter to circumvent the internal thumbnail cache to the async
  generator (Jens Granseuer)
- Remove caching from the thumbnailer (Jens Granseuer)
- Fix appearance windows not reacting the GTK+ theme changes (Denis Washington)
- Make it possible to skip engine information (Jens Granseuer)
- Let gnome-appearance-properties handle GTK+ theme changes manually (Denis
  Washington)
- Move theme package MIME type over from the theme-manager (Jens Granseuer)
  (#444336)
- Hook up more of the customization functionality (Jens Granseuer)
- Update for changes in thumbnailer API (Jens Granseuer)
- Add initial lockdown bits from theme-manager (Jens Granseuer)
- Preliminary support for reacting the metatheme changes (Jens Granseuer)
- Add all missing color schemes options (Denis Washington)
- Fix passing and parsing of command line args (Jens Granseuer)
- Disable the 'reset to defaults' button if the theme doesn't support custom
  colors (Jens Granseuer)
- Listen to color scheme changes (Jens Granseuer)
- Add initial support for installing themes (Jens Granseuer)
- Add metadata tooltips in the Background tab (Jens Granseuer)
- Add --show-page option to specify the page with which to start (Jens Granseuer)
- Remove install buttons from individual details pages (Jens Granseuer)

display:
- Don't make the revert dialog transient since it's actually never on screen
  at the same time as the main dialog (Jens Granseuer) (#448160)

keybindings:
- Fix GConf notification (Jens Granseuer)

settings daemon:
- Most modules converted to new loadable architecture (Rodrigo Moya)
- Force launching Nautilus in the home directory (Bastien Nocera) (#356069)
- Plugged memory leaks (Jens Granseuer)

themus:
- Update for changes in thumbnailer API (Jens Granseuer)

typing break:
- Dont use libgnome (Ross Burton) (#443554)
- Use the 2nd-accurate timers instead of the millisecond timers, in an attempt
  to use less processor time (Ross Burton) (#443547)
- USe GOption to parse arguments (Christian Persch) (#444399)

general:
- Require glib >= 2.13 (Ross Burton)

updated translations:
- cs (Jakub Friedl)
- dz (Pema Geyleg)
- es (Jorge Gonzalez)
- sv (Daniel Nylander)
- zh_CN (Funda Wang)
------------------------------------------------------------------------------
gnome-control-center 2.19.3

about-me:
- Use g_file_set_contents instead of a single fwrite (Bastien Nocera)
- Set default permission of ~/.face to 0644 (Bastien Nocera)

accessibility:
- Set button images via code instead of relying on Glade, so they respect
  the gtk-button-images xsetting (Jens Granseuer) (#362880)

appearance:
- New capplet to group appearance Settings (Thomas Wood, Jens Granseuer,
  Denis Washington)

at-properties:
- Fix critical warning (Jens Granseuer)
- Set button images via code instead of relying on Glade, so they respect
  the gtk-button-images xsetting (Jens Granseuer) (#362880)

background:
- After removing a wallpaper, select the next one in the list instead of always
  going to "No Wallpaper" (Jens Granseuer) (#432514)

control center:
- Removed superfluous X-SuSE translate tag (Stanislav Brabec)

display:
- Survive XRandR returning weird results for some dual-screen setups
  (Jens Granseuer) (#356520)

keybindings:
- Add a noarch pkgconfig file to allow apps to know where to add their
  keybindings (Bastien Nocera) (#434591)
- Fix keysdir substitution (Bastien Nocera) (#434591)
- Added g_thread_init as required by glib (Jens Granseuer)

keyboard:
- Set button images via code instead of relying on Glade, so they respect
  the gtk-button-images xsetting (Jens Granseuer)
- Added vendor list to the box, if any (Sergey Udaltsov)
- Make buildable with libxklavier 3.2 (Sergey Udaltsov)

mouse:
- Port from deprecated GtkOptionMenu to GtkComboBox (Jens Granseuer)

settings daemon:
- More refactoring of loadable modules (Rodrigo Moya)
- Use "eject -T" as the default eject command (Jens Granseuer) (#386297)
- Double-check that DBUS really passed an error (Chad Miller) (#439208)
- Sync libegg modules (Jens Granseuer) (#441042)
- Set the device property to the correct value before opening the mixer
  (Jan Arne Petersen) (#441552)

sound:
- Use g_timeout_add/remove instead of deprecated GTK versions (Jens Granseuer)
- Set non-0 pulse step for the progress bar to actually make it move (Jens
  Granseuer) (#441587)

theme switcher:
- Fix memory leaks (Jens Granseuer)

themus:
- Use OnlyShowIn property to not list Themus in the menu editor (Sebastien
  Bacher) (#434956)

general:
- Add GConfPropertyEditor support for GtkComboBox (Jens Granseuer)
- Add support for unsetting GConf values if the conversion handlers return null
  (Jens Granseuer)
- Constify a number of function arguments (Jens Granseuer)
- Add a property editor for GtkTreeView and fix crashes with all peditors if the
  requested key is not available (Jens Granseuer)
- Don't call gconf_value_free with a NULL value (Jens Granseuer)
- Recognize both "gtk-color-scheme" and "gtk_color_scheme" (Jens Granseuer)

updated translations:
- bg (Alexander Shopov)
- cs (Jakub Friedl)
- en_GB (David Lodge)
- es (Jorge Gonzalez)
- et (Priit Laes)
- he (Yair Hershkovitz)
- hu (Gabor Kelemen)
- nb (Kjartan Maraas)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)
- zh_CN (Funda Wang)
------------------------------------------------------------------------------
gnome-control-center 2.19.1

about-me:
- Build fixes (Bastien Nocera)
- Add image filter to file chooser (Kristof Vansant) (#424958)
- Plug memory leaks (Jens Granseuer)

at-properties:
- Don't require GNOME Glade library (Kristof Vansant)

background:
- Don't require GNOME Glade library (Kristof Vansant)
- Don't crash if the GConf schema is missing (Jens Granseuer) (#430253)
- Fix initialization of the secondary colour picker (Jens Granseuer)
- Replace deprecated GtkOptionMenu with GtkComboBox (Priit Laes) (#421199)
- Fix scaling for WPTYPE_ZOOM (Erich Schubert) (#342356)

default applications:
- Added widgets for default media player (Priit Laes) (#362578)
- Don't require GNOME Glade library (Kristof Vansant)
- Added Seamonkey as web browser and mail reader (Rodrigo Moya)
- Added widgets for default accessibility applications (George Kraft IV) (#350263)

display:
- Uppercase the rotation options (Jens Granseuer) (#410959)
- Added 720x576 (PAL) to the list of valid resolutions (Jens Granseuer) (#325548)

fonts:
- Don't require GNOME Glade library (Kristof Vansant)

keybindings:
- Fix the patch from which we'd load the keybindings (Bastien Nocera)
- Prepend the directory name before loading the files (Bastien Nocera) (#420796)
- Remove metacity keybindings definitions (Bastien Nocera)

keyboard:
- Use a radio button instead of a chackbox to indicate the default
  layout (Jns Granseuer) (#389469)
- Use automatic instead of always scrollbar policy (Andreas Koehler) (#345884)
- New version of the layout chooser, comboboxentry-based (Sergey Udaltsov)

mouse:
- Use automatic instead of always scrollbar policy (Andreas Koehler) (#345884)

theme switcher:
- Add filters for theme packages to the file chooser and mark the file chooser
  title for translation (Kristof Vansant) (#424960)
- Use OnlyShowIn=; to hide the theme installer from menus and menu editors
  (Matthias Clasen) (#420154)

windows:
- Use GtkComboBox instead of GtkOptionMenu (Priit Laes) (#421210)

shell:
- Build libslab statically, to avoid conflicts with gnome-main-menu (Rodrigo Moya)

settings daemon:
- Added handler for media keybinding (Priit Laes) (#362578)
- Don't crash if DBus connection is not available (Jens Granseuer) (#411504)
- Don't set Emacs.mode-line.attributeBackground to avoid problems with emacs
  22 (Jens Granseuer) (#416823)
- Rebuild the media window if the state of composite has changed (Jens Granseuer)
  (#408035)
- Fix launch-app-in-terminal support (Priit Laes) (#362578)
- Started refactoring of modules (Rodrigo Moya)
- Also check registered directories for notification (Alexander Larsson)
- Removed all settings not related to colour (Ross Burton) (#428615)
- Try to figure out the DPI value from the X server or the user's GConf
  settings (Federico Mena Quintero) (#217790 and #378338)

general:
- Rename module name to gnome-control-center (Rodrigo Moya)

updated translations:
- ar (Djihed Afifi)
- cs (Jakub Friedl)
- en_GB (David Lodge)
- et (Priit Laes)
- pt_BR (Leonardo Ferreira Fontenelle and Washington Lins)
- sv (Daniel Nylander)
- zh_CN (Funda Wang)
------------------------------------------------------------------------------
gnome-control-center 2.18.1

sound:
- Initialize threads earlier (Christian Persch) (#416239)
- Fix option context translation (Christian Persch)
- Fix button label alignment (Christian Persch) (#416238)
- Ellipsize the device combo box (Matthias Clasen) (#425650)

theme switcher:
- Disable revert button when using theme engine defaults colors
  (Frederic Crozat) (#417423)
- Don't crash if the color string is mangled (Jens Granseuer)
- Close small memory leak (Jens Granseuer)

shell:
- Build libslab statically to avoid conflicts with gnome-main-menu
  (Rodrigo Moya)

settings daemon:
- Fix multimedia window appearing in a different position when shown for the
  first time (Jens Granseuer) (#400915)

updated translations:
- ca (Josep Puigdemont i Casamaj)
- da (Peter Bach)
- dz (Pema Geyleg)
- es (Claudio Saavedra)
- gl (Ignacio Casal Quinteiro)
- it (Alessio Dess)
- mk (Jovan Naumovski)
- nl (Vincent van Adrighem)
- pt_BR (Leonardo Ferreira Fontenelle)
- uk (Maxim Dziumanenko)
------------------------------------------------------------------------------
gnome-control-center 2.18.0

about-me:
- Really fixed #411697 (Jens Granseuer)
- Use proper shadow type for the address fields (Jens Granseuer) (#414061)

background:
- Plug leaks (Jens Granseuer) (#396069)

display:
- Fix double free (Sandino Flores-Moreno) (#413352)

fontilus:
- Fix linker flags (Loic Minier) (#413468)

mouse:
- Add 2 popular cursor sizes to the filter (Thomas Zajic)
- Sort "Pointers" list alphabetically (Thomas Zajic)
- Fix build with gcc2 (Jens Granseuer)

theme-switcher:
- Replace deprecated function (Thomas Wood)
- Remove some bogus old code that caused the current theme to be checked
  instead of the new one (Benjamin Berg)
- Set the gtk-color-scheme even if it is blank and when creating the thumbnail
  (Thomas Wood)
- Search the gtkrc for the color scheme if none was found in the metatheme
  file (Thomas Wood)
- Don't try and open NULL filenames (Thomas Wood)

window:
- Add missing libs to linker args (Jens Granseuer) (#413468)

settings daemon:
- Fix ref counting problems (Jens Granseuer) (#412467)

updated translations:
- cs (Jakub Friedl)
- de (Hendrik Richter, Christian Kintner)
- el (Nikos Charonitakis)
- gu (Ankit Patel)
- hu (Gabor Kelemen)
- ko (Changwoo Ryu)
- ku (Erdal Ronahi)
- lt (Gintautas Miliauskas)
- mk (Jovan Naumovski)
- nl (Vincent van Adrighem)
- pl (Artur Flinta)
- ru (Leonid Kanter)
- sl (Matic Zgur)
- sr (Goran Rakic)
- sr@Latn (Goran Rakic)
- zh_HK (Abel Cheung)
- zh_TW (Abel Cheung)
------------------------------------------------------------------------------
gnome-control-center 2.17.92

about-me:
- Change default dir for the image chooser (Jens Granseuer) (#408305)
- Dont use composite pixbuf to avoid unnecessary clipping (Diego Escalante
  Urrelo) (#380315)
- Prevent child watcher from accessing already released memory (Jens
  Granseuer) (#411697)

default applications:
- Really fix DATADIR (Jens Granseuer) (#407597)
- Dont try reading into invalid territory when the user set a custom command
  without spaces (Jens Granseuer) (#407601)

fontilus:
- Use GOption argument parsing (Christian Persch) (#393394)

keybindings:
- Clear GConf client cache before reloading (Jens Granseuer) (#394776)

keyboard:
- Avoid crashing on NULLs (Jens Granseuer) (#398631)

settings daemon:
- Properly round volumes so that volume-up and -down act symetrically
  (Jens Granseuer) (#389996)
- Dont ignore errors when X refuses to update the pointer mapping
  (Jens Granseuer) (#349538)
- Dont install the same filter twice for the default root window (Jens
  Granseuer) (#408643)
- Correctly pass the function address when setting up the event filter
  (Jens Granseuer)
- Fix warnings (Jens Granseuer)

shell:
- Revert to old menu for 2.18 (Denis Washington)

theme switcher:
- Update selected fg color from the correct slot (Jens Granseuer) (#410764)
- Fix warnings (Jens Granseuer)
- Format guint16 values accordingly (Jens Granseuer) (#398331)

themus:
- Populate the VFS file info fields properly so that Nautilus shows, e.g.,
  read-only emblems in themes:// (Jens Granseuer) (#145175)

windows:
- Remove some long-dead code (Jens Granseuer)
- Dont leak stuff on error (Jens Granseuer)

updated translations:
- ar (Djihed Afifi)
- bg (Alexander Shopov)
- ca (Josep Puigdemont i Casamaj)
- cs (Jakub Friedl)
- en_GB (David Lodge)
- et (Priit Laes)
- fi (Ilkka Tuohela)
- fr (Stphane Raimbault)
- hu (Gabor Kelemen)
- ja (Takeshi AIHANA)
- ko (Changwoo Ryu)
- nb (Kjartan Maraas)
- pt (Duarte Loreto)
- pt_BR (Leonardo Ferreira Fontenelle)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)
- uk (Maxim Dziumanenko)
- vi (Nguyen Thai Ngoc Duy)
- zh_CN (Abel Cheung)
------------------------------------------------------------------------------
gnome-control-center 2.17.91

common:
- Compilation fixes (Kjartan Maraas)
- Fixed localedir defines (Christian Persch) (#395383)
- Use standard installation paths (Christian Persch) (#395383)
- Use capplet name for G_LOG_DOMAIN (Jens Granseuer) (#380991)
- Require GTK+ <= 2.10 (Jens Granseuer) (#358106)

about me:
- Fix build with gcc 2 (Jens Granseuer)
- Fix memory leaks (Jens Granseuer)
- Fix possible crash (Jens Granseuer)

at-properties:
- Fix reference leaks and dont segfault if glade file is not available (Jens Granseuer)

default applications:
- Use specific string as app ID in gnome_program_init (Christian Persch) (#403708)
- Plug memory leaks (Jens Granseuer) (#395212)
- Fix DATADIR define (Jens Granseuer)

keybindings:
- Issue a sensible error message when trying to use unmodified keybindings
  (Jens Granseuer) (#328152)
- Removed leftover call to gnome_theme_init (Jens Granseuer) (#157452)
- Support localised key names (Jens Granseuer) (#145346)
- Clean up sorting to not use an imaginary column (Jens Granseuer)
- Avoid warnings when clearing at exit (Mariano Surez-Alvarez) (#405175)
- Added missing GConf key (Mariano Surez-Alvarez)

mouse:
- Dont crash if the glade file is not available (Jens Granseuer)

network:
- Plug memory leaks (Jens Granseuer) (#395609)

sound:
- Polypaudio->PulseAudio renaming (Gabor Kelemen) (#394003)
- Added a11y label relations for the devices tab (Patrick Wade) (#369302)

theme switcher:
- Fix compiler warnings (Thomas Wood)
- Fixes on the suffix checks (Alberto Ruiz)
- Pass correct order of arguments to gnome_vfs_xfer (Kjartan Maraas)
- Listen for changes in the gtk-color-scheme property of GtkSettings (Thomas Wood)
  (#405210)

typing break:
- Use specific string as app ID in gnome_program_init (Christian Persch) (#403708)
- Use compositing to display the typing break window when available (Christian
  Persch) (#363665)

ui properties:
- Plug memory leaks (Jens Granseuer)
- Change "Editable menu accelerators" to "Editable menu shortcut keys" as per
  the style guide (Jens Granseuer) (#337624)

windows:
- Plug memory leaks (Jens Granseuer)

fontilus:
- Use GOption argument parsing (Christian Persch) (#393994)
- Fixed some leaks (Christian Persch)

themus:
- Port to GOption (Jens Granseuer) (#336286)

settings daemon:
- Prevent crashes/assertion failures trying to set ridiculously high/low
  volumes (Jens Granseuer) (#401376)
- Fixed property names (Jens Granseuer)
- Dont install the same window filter twice (Jens Granseuer) (#382504)
- Make sure we have a key event before treating it as such (Jens Granseuer)
  (#382503)
- Fixed leaks (Jens Granseuer, Paolo Borelli) (#342672)
- Round volume instead of truncating on umute so a simple mute/unmute doesn't
  lower the volume (Jens Granseuer) (#400966)
- Make the new volume overlay window follow the icon and color themes
  (William Jon McCann) (#403320)
- Eat media player keys if someone is listening on the bus interface already
  (Bastien Nocera) (#394313)
- Revert to the old font path if the new one could not be set (Jens Granseuer)
  (#397504)

shell:
- Prevent capplets from being launched twice (Rodrigo Moya)
- Use correct GConf prefix (Rodrigo Moya)
- Added default common tasks (Rodrigo Moya)
- Respect the exit_on_close flag (Scott Reeves)
- Added a flag controlling display of GenericName's (Scott Reeves)
- Fix typo in usage string (Jens Granseuer) (#398361)
- Respect the --disable-schemas-install configure flag (Christian Persch) (#401004)
- Dump remnants of gstreamer-0.8 (Jens Granseuer)
- Use custom gnomecc.menu instead of settings.menu (Denis Washington) (#402797)
- Dont show Help menu if help is not available (Rodrigo Moya)
- Disable package management/main-menu items in the context menu (Rodrigo Moya)
- Use correct text color when highlighting (Rodney Dawes) (#398079)
- Use smaller icons by default (Scott Reeves) (#405078)
- Use G_GNUC_FUNCTION instead of non-portable __FUNCTION__ (Damien Carbery) (#383022)

updated translations:
- ar (Djihed Afifi)
- be (Ihar Hrachyshka)
- bg (Alexander Shopov)
- ca (Jordi Mas and Josep Puigdemont i Casamaj)
- cs (Jakub Friedl)
- en_GB (David Lodge)
- et (Priit Laes)
- fr (Marc Lorber, Robert-Andr Mauchin and Stphane Raimbault
- he (Yair Hershkovitz)
- hu (Gabor Kelemen)
- ja (Takeshi AIHANA)
- ko (Changwoo Ryu)
- mk (Jovan Naumovski)
- nb (Kjartan Maraas)
- pl (Artur Flinta)
- pt_BR (Luiz Fernando S. Armesto)
- ru (Leonid Kanter)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)
------------------------------------------------------------------------------
gnome-control-center 2.17.90

common:
- Removed non-critical g_return_if_fail (Thomas Wood) (#353620)
- Added support for saving and applying the gtk-color-scheme key (Thomas Wood)
- Replaced non-standard categories with X-GNOME... (Denis Washington)
- Check for xf86misc lib in addition to header files (Jens Granseuer) (#397905)

about-me:
- Fixed compilation on Solaris (Brian Cameron) (#356076)
- Made translatable strings more generic (Francisco Javier F. Serrador) (#376079)

a11y:
- Renamed to "Keyboard Accesiblity" in .desktop file (Thomas Wood) (#330697)

background:
- Fixed several compile warnings (David Seseo) (#326022)

default applications:
- Moved capplet from System to Personal category (Thomas Wood)

keyboard:
- Don't crash if default group is not set in GConf (Sergey Udaltsov) (#398631)

keybindings:
- Moved scrolled window calls to their correct place (Rodrigo Moya)
- Fixed leaks (Jens Granseuer) (#394824)
- Corrected .desktop category entry (Thomas Wood)

mouse:
- Fixed memory leaks (Jens Granseuer) (#395539)

sound:
- Added NULL-check (Jan Arne Petersen) (#394736)
- Fixed spacing and build the whole dialog from Glade (Christian Persch) (#394068)
- Show the sound properties view after adding it to the dialog (Christian Persch)
- Fixed label alignments bug caused by Glade-3 #396433 (Christian Persch)
- Set play button insensitive when no sound is selected ((Sylvain Defresne, Thomas
  Wood) (#353828)

theme switcher:
- Fixed build with gcc 2 (Jens Granseuer) (#394707)
- Removed separate color scheme saving UI (Thomas Wood)
- Added support for gtk-color-scheme key in metatheme info (Thomas Wood)
- Added a revert button to the color schemes tab (Thomas Wood)

typing break:
- Set default icon and application name (Andreas Nilsson) (#348641)

windows:
- Fixed leak (Kjartan Maraas) (#382039)

shell:

settings daemon:
- Added missing NULL-check (Jan Arne Petersen) (#395083)
- Removed variable that was never initialized (Jens Granseuer) (#382502)
- Quit application when window is closed (Rodrigo Moya) (#394303)
- Set program name to gnome-control-center (Rodrigo Moya)

updated translations:
- ar (Djihed Afifi)
- ca (Josep Puigdemont i Casamaj)
- cs (Jakub Friedl)
- en_GB (David Lodge)
- et (Priit Laes)
- fi(Ilkka Tuohela)
- hu (Gabor Kelemen)
- lt (Zygimantas Beruka)
- nb (Kjartan Maraas)
- sl (Matic Zgur)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)
------------------------------------------------------------------------------
gnome-control-center 2.17.5

about-me:
- Fix displaying of image selected by the user (Hiroyuki Ikezoe) (#343584)

background:
- Mark message showing background image size and type for translation (Roozbeh
  Pournander) (#341899)
- Switched from popt to GOptionContext (Lucas Rocha) (#336286)
- Fix memory leaks (Jens Granseuer) (#335220)
- Fix crash when changing image name (Jens Granseuer) (#388616)
- Fix ability to change settings after manual change (Jean-Christophe Jaskula)
  (#339404)
- Improve management of background thumbnails (Ray Strode) (#351991)
- Fix compilation on Solaris (Brian Cameron) (#356076)

common:
- Fix leaks (Christian Persch) (#393117)
- Add support for disabling esound (Marc-Andre Lureau) (#392276)

fonts:
- Make 'Font may be too large' dialog cleare (Gabor Kelemen) (#335963)

keybindings:
- Reuse the existing tree model instead of discarding and rebuilding it
  (Jens Granseuer) (#128158)
- Fix leaks (Jens Granseuer)

keyboard:
- Switch from popt to GOptionContext (Lucas Rocha) (#336286)
- Fix typo (Kjartan Maraas)

mouse:
- Switch from popt to GOptionContext (Lucas Rocha) (#336286)

network:
- Add option to use the same proxy for all protocols (Diego Escalante) (#317097)
- Add missing mnemonic (Rodrigo Moya)

sound:
- Mark sound system names translatable (Gabor Kelemen) (#393472)
- Do proper dbus/libhal error handling (Jan Arne Petersen) (#363005)
- Switch from popt to GOptionContext (Lucas Rocha) (#336286)
- Make ESD optional (Marc-Andre Lureau) (#392276)
- Add accelerators to the device tab (Gabor Kelemen) (#350572)
- Spelling fixes (Kjartan Maraas)
- Use GtkAlignment for padding, not GtkHBox+GtkFrame (Thomas Wood) (#143215)
- Make volume up/down keys affect default channel of the applet (Jan Arne Petersen)
  (#173035)

theme-switcher:
- Fix crash on manually changing the icon theme name (Priit Laes) (#349471)
- Fix some HIG issues with strings (Thomas Wood)
- Fix leaks (Christian Persch, Thomas Wood) (#393117, #326337)
- Set minimun size request on the treeview rather than the entire window
  (Thomas Wood) (#393236)
- Fix build with c89 compilers (Thomas Wood) (#382730)
- Avoid markup in translatable messages (Gabor Kelemen) (#360449)
- Enable a message when the current theme does not support colour schemes
  (Thomas Wood)
- Add custom colour scheme saving UI (Thomas Wood)
- Add MIME type for theme packages and support in the GUI (Alberto Ruiz) (#393697)

windows:
- Avoid markup in translatable messages (Elijah Newren) (#360449)

shell:
- Fix build with c89 compilers (Thomas Wood) (#382730)
- Use categories for control center applets (Denis Washington) (#393617)

settings daemon:
- Add DBus methods for media players to grab/release the keys (Jan Arne Petersen)
  (#133815)
- Add support for GConf device and track selection (Jan Arne Petersen) (#173035)

fontilus:
- Add support for specifying string and font-size to use in the thumbnailer (Rob Staudinger)
  (#333557)

themus:
- Fix crash when running from command prompt (Thomas Wood) (#167063)

translations:
- ar (Djihed Afifi)
- bg (Alexander Shopov)
- cs (Jakub Friedl)
- en_GB (David Lodge)
- mk (Jovan Naumovski)
- nb (Kjartan Maraas)
- sl (Matic Zgur)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)
------------------------------------------------------------------------------
gnome-control-center 2.17.4

background:
- Plug a leak (Kjartan Maraas) (#376949)

common:
- Pass NULL to gtk_label_new() to do a bit less work (Kjartan Maraas) (#376949)

default-application:
- Fix a bunch of leaks from gconf_client_get_string() (Kjartan Maraas)
  (#376949)
- add support for Iceweasel and Icedove (Loc Minier) (#379085)
- Fix Thunderbird command line parameter (Luca Cavalli) (#326808)
- add support for Claws Mail (aka Sylpheed-Claws) (Colin Leroy) (#386771)

display:
- Don't leak the resolution. Pass NULL to gtk_label_new to do less work
  (Kjartan Maraas) (#376949)

localization:
- Plug some leaks. (Kjartan Maraas) (#376949)

network:
- Fix a warning about unused result from g_slist_append(). (Kjartan Maraas)

theme-switcher:
- Plug a few leaks. (Kjartan Maraas) (#376949)
- HIG fixes to the color scheme tab, from suggestions in Bug 382517
  (Thomas Wood)
- Rename "Theme Details" button to "Customize (Thomas Wood)

gnome-settings-daemon
- add a new media keys window that takes advantage of 
  compositing when available (William Jon McCann) (#383066)

Translators:
Djihed Afifi (ar)
Francisco Javier F. Serrador (es)
Ivar Smolin (et)
Ilkka Tuohela (fi)
Ankit Patel (gu)
Raivis Dejus (lv)
Jovan Naumovski (mk)
Kjartan Maraas (nb)
Tino Meinen (nl)
Matic gur (sl)
Daniel Nylander (sv)
Theppitak Karoonboonyanan (th)

------------------------------------------------------------------------------
gnome-control-center 2.17.3

common:
- Clean up file transfer dialog (Thomas Wood) (319926)

keyboard:
- Updated to new libgnomekbd API (Sergey Udaltsov)

shell:
- New control-center shell (Scott Reeves, Rodrigo Moya)

theme:
- Fixed crash in D&D of themes (Thomas Wood) (352490)
- Open transfer dialog with transient parent set (Thomas Wood)
- Added a colours tab to change gtk-color scheme setting (Thomas Wood)
- Fixed leak (Thomas Thurman) (378680)
- Cleanup some of the install code (Thomas Wood) (325300)
- Allow installing a theme from a directory (Thomas Wood) (326103)

typing break:
- Fixed redefinition of GNOMELOCALEDIR (Kjartan Maraas)
- Removed use of const char * for allocated strings (Kjartan Maraas)

translations:
- es (Francisco Javier F. Serrador)
- et (Priit Laes)
- fr (Christophe Bliard)
- ja (Satoru SATOH)
- nb (Kjartan Maraas)
- sv (Daniel Nylander)

------------------------------------------------------------------------------
gnome-control-center 2.17.1

control-center:
- Don't install unused GNOME_Control_Center.server.in file (Rodrigo Moya)

default applications:
- Added support for legacy GConf key (Sven Herzberg, Luca Cavalli) (359986)

mouse:
- Reordered widgets for A11Y (Sven Herzberg) (163690)

settings daemon:
- Delay displaying of error dialogs until there is a window manager running
  (Dan Winship)

themus:
- Add a install-theme command line option (Thomas Wood) (354581)

translations:
- bg (Alexander Shopov)
- bn_IN (Runa Bhattacharjee)
- cs (Jakub Friedl)
- et (Priit Laes)
- fi (Ilkka Tuohela)
- it (Luca Ferretti)
- nn (smund Skjveland)

------------------------------------------------------------------------------
gnome-control-center 2.16.2

keyboard:
- Fixed crashes when failed DBUS connection to the server (Sergey Udaltsov)
- Fixed keyboard indicator segfault (Sergey UDaltsov) (351395)

theme-switcher:
- Fixed crash when drag&dropping themes (Thomas Wood) (352490)

translations:
- ar (Djihed Afifi)
- et (Priit Laes)
- it (Luca Ferretti)
- ja (Satoru SATOH)
- pl (Marek Stepien)

------------------------------------------------------------------------------
gnome-control-center 2.16.1

about-me:
- Fixed compilation issues on Sun Studio (Matt Keenan) (349079)

display:
- Never pass negative values for the rates (Brian Cameron) (356075)

keyboard:
- Make sure 'model' is never NULL (Brian Cameron, Rodrigo Moya) (356074)

themus:
- Fixed "Open" icon on button preview (Thomas Wood) (355268)
- Allow the text in the details to ellipsize and set a minimun width for
  the dialog (Thomas Wood) (355269)

translations:
- ar (Wouter Bolsterlee)
- bg (Alexander Shopov)
- bn_IN (Runa Bhattacharjee)
- en_GB (David Lodge)
- et (Priit Laes)
- gl (Ignacio Casal Quinteiro)
- nn (smund Skjveland)

------------------------------------------------------------------------------
gnome-control-center 2.16.0

background:
- avoid excess strduping (Kjartan Maraas) (#352252)

keyboard:
- avoid extra key events processing (Matthias Clasen) (#352776)

settings daemon:
- avoid grabbing all keyboard when the key code cannot be retrieved
  (Andre Klapper) (#170318)

theme-switcher:
- add missing maximize button (Thomas Wood) (#331835)

Translations:
- bg (Alexander Shopov)
- bn_IN (Runa Bhattacharjee)
- el (Kostas Papadimas)
- et (Priit Laes)
- fr (Christophe Merlet)
- hi (Rajesh Ranjan)
- hu (Gabor Kelemen)
- ka (Vladimer Sichinava)
- lt (Gintautas Miliauskas)
- lv (Raivis Dejus)
- mk (Jovan Naumovski)
- ml (Ani Peter)
- mr (Rahul Bhalerao)
- or (Subhransu Behera)
- pt (Duarte Loreto)
- pt_BR (Lucas Rocha)
- ru (Leonid Kanter)
- sv (Daniel Nylander)
- ta (I. Felix)
- th (Theppitak Karoonboonyanan)
- zh_HK (Chao-Hsiung Liao, Abel Cheung)
- zh_TW (Chao-Hsiung Liao, Abel Cheung)

------------------------------------------------------------------------------
gnome-control-center 2.15.92

background:
- fix "Background dialogue resizes when shown" (Rodney Dawes) (#332830)

common:
- fix issues with the themes previews (Benjamin Otte, Thomas Wood) 
  (#351378, #171634)

display:
- free 'resolution' string after using it, not before 
  (Kjartan Maraas, Rodrigo Moya)

mouse:
- also display the default theme (though without a preview 
  for technical reasons) (Sven Herzberg) (#322514)

sound:
- fix memory leak (Christian Persch)(#350566)

theme-switcher:
- patches from "generate visible previews first" (Benjamin Otte) (#351521)

Translators:
Rostislav \"zbrox\" Raykov (bg)
Josep Puigdemont (ca)
Jakub Friedl (cs)
Hendrik Richter (de)
Mindu Dorji (dz)
David Lodge (en_GB)
Ivar Smolin (et)
Ilkka Tuohela (fi)
Alastair McKinstry (ga)
Ignacio Casal Quinteiro (gl)
Ankit Patel (gu)
Rajesh Ranjan (hi)
Mate ORY (hu)
Satoru SATOH (ja)
Changwoo Ryu (ko)
Jovan Naumovski (mk)
Ani Peter (ml)
Badral (mn)
Rahul Bhalerao (mr)
Kjartan Maraas (nb)
Wouter Bolsterlee (nl)
Subhransu Behera (or)
A S Alam (pa)
Evandro Fernandes Giovanini (pt_BR)
Dan Damian (ro)
Leonid Kanter (ru)
Steve Murphy (rw)
Matic gur (sl)
Daniel Nylander (sv)
Theppitak Karoonboonyanan (th)
Maxim V. Dziumanenko (uk)
Clytie Siddall (vi)
Funda Wang (zh_CN)

------------------------------------------------------------------------------
gnome-control-center 2.15.91

misc:
- require libebook-1.2 1.7.90 for the new API (Sebastien Bacher)

about-me:
- fixed build with the new libebook API (Sebastien Bacher) (#348821)

at-properties:
- fixed X-GNOME-Bugzilla fields in .desktop file (Rodrigo Moya) (#348832)
- use orca screenreader when available (Willie Walker) (#348630)

display:
- fix build with gcc-2.95 (Jens Granseuer) (#347611)
	- fixed X-GNOME-Bugzilla fields in .desktop file (Rodrigo Moya) (#348838)

keybindings:
- don't assume defines are contiguous (Gary Coady) (#333576)

keyboard:
- fixed X-GNOME-Bugzilla fields in .desktop file (Rodrigo Moya) (#348847)

libgswitchit:
- using Unicode subscript for repeating descriptions (Sergey Udaltsov)

network:
- set "label for" and "labelled by" properties for the capplet (Willie Walker)
  (#342121)

sound:
- removed unneeded header file (Klaus Pedersen) (#349254)
- only include libhal if HAL is enabled (Ali Akcaagac) (#348755)

theme-switcher:
- added support for locking down theme (Rob Bradford) (#346041)
- don't attempt to load window manager theme name from an unknown window 
  manager (Thomas Wood) (#333276)

typing-break:
- use GtkAboutDialog, not GtkDialog (Vincent Untz) (#348640)
- use GtkStatusIcon instead of libegg (Vincent Untz) (#348639)

ui-properties:
- fixed X-GNOME-Bugzilla fields in .desktop file (Rodrigo Moya) (#348844)

updated translations:
- bg (Alexander Shopov)
- cs (Jakub Friedl)
- es (Francisco Javier F. Serrador)
- fi (Ilkka Tuohela)
- fr (Christophe Merlet)
- gu (Ankit Patel)
- lt (Zygimantas Berucka)
- mk (Jovan Naumovski)
- nb (Kjartan Maraas)
- nl (Vincent van Adrighem)
- th (Theppitak Karoonboonyanan)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)

------------------------------------------------------------------------------
gnome-control-center 2.15.90

misc:
- add an encoding key to some .directory.in (Vincent Fretin) (#338593)
- don't use the Application category for the .desktops, use
  HardwareSettings for some (Vincent Fretin) (#344321)
- made gconf-property-editor.c use GtkColorButton instead of GnomeColorPicker
  (Kevin Bauder) (#171680)

mouse:
- fix the non-xcursor case for solaris (Sven Herzberg, Glynn Foster) (#319125)
- use ngettext() correctly (Sven Herzberg)

theme-switcher:
- fixed messages wording (Thomas Wood) (#167045)
- removed duplicate check for the tar utility (Thomas Wood)

updated translations:
- ca (Josep Puigdemont i Casamaj)
- cs (Jakub Friedl)
- de (endrik Richter)
- dz (Guntupalli Karunakar)
- el (Kostas Papadimas)
- es (Francisco Javier F. Serrador)
- fi (Ilkka Tuohela) 
- fr (Samuel Mutel)
- gu (Ankit Patel)
- id (Ahmad Riza H Nst)
- ja (Satoru SATOH)
- ko (Changwoo Ryu)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)

------------------------------------------------------------------------------
gnome-control-center 2.15.4

background:
- Removed redundant GNOMELOCALEDIR (Sergey Udaltsov) (345178)

display:
- Replaced deprecated GtkOptionMenu with GtkComboBox (Sven Herzberg) (338468)
- Added rotation support (Sven Herzberg) (324125)

keyboard:
- Massive libgswitchit API change (Sergey Udaltsov)
- Made model chooser button more verbose (Sergey Udaltsov) (335833)

sound:
- Fixed build (Sergey Udaltsov)

theme-switcher:
- Fixed strange wording (Thomas Wood) (167045)

settings daemon:
- Activation is now done via DBUS (Sergey Udaltsov)
- Added DBUS interface for keyboard indication (Sergey Udaltsov)

documentation:
- Initial Russian translation (Nickolay V. Shmyrev)

updated translations:
- bn_IN (Runa Bhattacharjee)
- cs (Jakub Friedl)
- de (Hendrik Richter)
- es (Francisco Javier F. Serrador)
- fi (Ilkka Tuohela)
- fr (Benot Dejean)
- gu (Ankit Patel)
- he (Yair Hershkovitz)
- hi (Rajesh Ranjan)
- lv (Raivis Dejus)
- mk (Jovan Naumovski)
- nb (Kjartan Maraas)
- ru (Nickolay V. Shmyrev)
- ta (I. Felix)
- th (Theppitak Karoonboonyanan)
- sv (Daniel Nylander)

------------------------------------------------------------------------------
gnome-control-center 2.15.3

about me:
- Fixed typo (Rodrigo Moya) (324971)
- Fixed compilation issues (Rodrigo Moya) (344468)

default applications:
- Added support for Sylpheed (Luca Cavalli) (332659)
- Removed unnecessary gnome-terminal argument (Luca Cavalli) (336700)

keybindings:
- Removed brightness keybindings, now in gnome-power-manager (Bastien Nocera)
  (339857)

keyboard:
- Save/restore layout preview window geometry (Sergey Udaltsov)

mouse:
- Fixed selection when no cursor font is set in GConf (Darren Kenny) (340003)

sound:
- Added sound device selection (Jrg Billeter) (329112)
- Fixed button strings (Rodrigo Moya) (324971)

theme-switcher:
- Removed drag & drop information text (Thomas Wood) (99535)
- Added Install buttons to each tab in the details window (Thomas Wood)
- Remember last browsed or installed from location (Thomas Wood) (138795)
- Don't allow invalid characters in theme names (Thomas Wood) (139692)
- Don't ask user whether to overwrite or not internal files (Thomas Wood) (317375)
- Allow saving background image for custom themes (Thomas Wood) (330302)
- Fixed UI issues in the save dialog (Thomas Wood) (100622)

settings daemon:
- Fixed libxklavier engine initialization logic (Sergey Udaltsov) (333091)
- Removed references to brightness controls (Bastien Nocera) (339857)
- Fixed leaks (Paolo Borelli) (342568, 342570)

general:
- Updated to new libxklavier API (Sergey Udaltsov)

updated translations:
- bg (Alexander Shopov)
- cs (Miloslav Trmac, Lukas Novotny, Jakub Friedl)
- dz (Pema Geyleg)
- es (Francisco Javier F. Serrador)
- fi (Ilkka Tuohela)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- mg (Simos Xenitellis)
- nb (Kjartan Maraas)
- sq (Laurent Dhima)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)
- vi (Clytie Siddall)
- zh_CN (Funda Wang)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)

------------------------------------------------------------------------------
gnome-control-center 2.14.2

about-me:
- Fixed label alignment (Sebastien Bacher) (343056)

default applications:
- Updated help section name (Daniel Holbach) (340032)

settings daemon:
- Fixed potential overrun (Ray Strode) (338254)
- Fixed 64bit crash (Joe Marcus Clarke) (338849)

updated translations:
- bg (Alexander Shopov)
- cs (Lukas Novotny)
- dz (Pema Geyleg)
- et (Priit Laes)
- eu (Iaki Larraaga)
- fr (Benot Dejean)
- id (Ahmad Riza H Nst)
- sq (Laurent Dhima)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)

------------------------------------------------------------------------------
gnome-control-center 2.14.1

background:
- Fixed crash on startup (Rodney Dawes) (331486)

common:
- Use gtk_dialog_run for running modal error dialogs (Rodrigo Moya)
- Fixed leaks in CORBA activation code (Arjan Timmerman) (334153)

default applications:
- Fixed thunderbird command line parameters (Luca Cavalli) (326808)

fontilus:
- Move .directory files to $datadir/desktop-directories (Glynn Foster)
  (334405)

settings daemon:
- Fixed setting of $DISPLAY environment variable (Rodrigo Moya, Arjan
  Timmerman) (334153)
- Set Ctrl-Atl-l as default keybinding for screen locking (Jaap A. Haitsma)
  (171833)
- Fixed evdev/left handed button mapping (Marien Zwart) (323724)

themus:
- Move .directory files to $datadir/desktop-directories (Glynn Foster)
  (334405)
- Don't allow tab characters in custom theme descriptions (Wouter Bolsterlee)
  (336151)
- Theme chooser main window too wide for 800x600 (Thomas Wood) (314658)

updated translations:
- be (Ales Nyakhaychyk)
- br (Jrmy Ar Floc'h)
- cs (Miloslav Trmac)
- dz (Tommi Vainikainen)
- es (Francisco Javier F. Serrador)
- et (Priit Laes)
- hu (Gabor Kelemen)
- ka (Vladimer SIchinava)
- lt (Zygimantas Berucka)
- nl (Vincent van Adrighem, Wouter Bolsterlee)
- ro (Dan Damian)
- th (Theppitak Karoonboonyanan)
- vi (Clytie Siddall)

------------------------------------------------------------------------------
gnome-control-center 2.14.0

default applications:
- Use correct text domain name (Luca Cavalli) (332833)
- Fixed response to icon theme changes (Luca Cavalli) (330154)
- Compilation fixes (Luca Cavalli) (332973)
- Don't use deprecated gtk_entry_set_editable (Luca Cavalli) (329193)

settings daemon:
- Removed spawning of esd (Rodrigo Moya)
- Register the settings daemon per DISPLAY (Michael Witrant) (94049)

sound:
- Mark missing strings for translation (Rodrigo Moya) (333125)

help:
- Pruned capplets documentation, and link to the user's guide (Joachim Noreiko)
  (332184)

general:
- Fixed compilation with GStreamer 0.8 (Mathis Hasselmann) (333119)

updated translations:
- bg (Alexander Shopov)
- bn (Runa Bhattacharjee)
- ca (Josep Puigdemont i Casamaj)
- cs (Miloslav Trmac)
- cy (Rhys Jones)
- da (Ole Laursen)
- de (Hendrik Richter, Hendrik Brandt)
- el (Simos Xenitellis)
- es (Francisco Javier F. Serrador)
- et (Priit Laes)
- fa (Roozbeh Pournader)
- fi (Ilkka Tuohela)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- hu (Gabor Kelemen)
- it (Luca Ferretti)
- ja (Satoru SATOH)
- lt (Zygimantas Berucka)
- nb (Kjartan Maraas)
- nl (Vincent van Adrighem)
- nn (Kjartan Maraas)
- no (Kjartan Maraas)
- pl (Artur Flinta)
- pt (Duarte Loreto)
- pt_BR (Lucas Rocha)
- ru (Leonid Kanter)
- sq (Laurent Dhima)
- sr (Danilo Segan)
- sr@Latn (Danilo Segan)
- sv (Daniel Nylander)
- th (Theppitak Karoonboonyanan)
- uk (Maxim Dziumanenko)
- vi (Clytie Siddall)
- zh_CN (Funda Wang)

------------------------------------------------------------------------------
gnome-control-center 2.13.93

default applications:
- Fixed hang with multiple windows opened (Luca Cavalli) (328094)
- Fixed Sylpheed claws executable name (Fryderyk Dziarmagowski) (332659)
- Fixed typos (Glynn Foster)

fontilus:
- Fixed crash when changing metacity font (Rodrigo Moya) (327021)

mouse:
- Use "milliseconds" instead of "microseconds" (Anilkumar Bacheli) (330588)

sound:
- Fixed memory leaks (Rodrigo Moya) (332530)

settings daemon:
- C89 compilation fixes (Jens Granseuer) (331168)

updated translations:
- bg (Alexander Shopov)
- ca (Josep Puigdemont i Casamaj)
- cs (Miloslav Trmac and Jakub Friedl)
- cy (Rhys Jones)
- de (Hendrik Richter)
- el (Kostas Papadimas)
- es (Francisco Javier F. Serrador)
- et (Priit Laes)
- eu (Iaki Larraaga)
- fi (Ilkka Tuohela)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- hu (Gabor Kelemen)
- ja (Satoru SATOH and Takeshi AIHANA)
- ka (Alexander Didebulidze)
- lt (Zygimantas Berucka)
- nb (Kjartan Maraas)
- nl (Vincent van Adrighem)
- no (Kjartan Maraas)
- pt (Duarte Loreto)
- pt_BR (Raphael Higino)
- sr (Slobodan D. Sredojevic)
- sr@Latn (Slobodan D. Sredojevic)
- th (Theppitak Karoonboonyanan)
- vi (Clytie Siddall)

------------------------------------------------------------------------------
gnome-control-center 2.13.92

background:
- Re-added instant apply (Rodney Dawes)

default applications:
- Fixed compilation warnings (Luca Cavalli)

settings daemon:
- Only start esd when not running (Rodrigo Moya)

other:
- Removed HAL dependency added by mistake (Rodrigo Moya)
- Depend on glib >= 2.8.0 (Rodrigo Moya)
- Depend on gtk+ >= 2.8.12 for Cairo speed workaround (Rodney Dawes)

updated translations:
- ca (Josep Puigdemont i Casamaj)
- da (Ole Laursen)
- de (Hendrik Richter)
- fi (Ilkka Tuohela)
- gl (Ignacio Casal Quinteiro)
- lt (Zygimantas Berucka)
- nb (Kjartan Maraas)
- nl (Vincent van Adrighem)
- no (Kjartan Maraas)
- th (Theppitak Karoonboonyanan)
- zh_CN (Funda Wang)

------------------------------------------------------------------------------
gnome-control-center 2.13.91

build:
- enable generation of Makefile for spanish docs to fix the build.

------------------------------------------------------------------------------
gnome-control-center 2.13.90

about-me:
- Preserve tab navigation on the dialog (Diego Gonzlez) (317468)
- Fixed crash (Diego Gonzlez) (317315)

background:
- Added apply button (Rodney Dawes) (327335)
- Fixed glib CRITICAL warnings (Rodney Dawes) (327327)

default applications:
- Fixed Thunderbird command line parameters (Luca Cavalli) (326808)
- Update custom command entries also when predefined app is selected
  (Luca Cavalli) (327749)
- Don't set entries' sensitivity, just disable input on them (Rodrigo
  Moya)
- Use better description and arguments for Epiphany (chpe) (327220)

fontilus:
- Added button for document font (Christian Persch) (160454)
- Changed "monospace" to "fixed width" (Christian Persch)
- Fixed font thumbnailing endianness (Ed Catmur) (329043)

keybindings:
- Refuse to bind letter keys without a modifier (Bastien Nocera) (86956)
- Readded the keysim/keycode binding code (Rodrigo Moya)

keyboard:
- Fixed user-visible strings (Rodrigo Moya) (328748)

mouse:
- Fixed a11y problem with gnopernicus screen reader (Anilkumar Bacheli)
  (154769)

network:
- Fixed mnemonic (Crispin Flowerday) (328884)

sound:
- Use correct stock icon for PLAY button (Dennis Cranston)
- Reduced size of the dialog (Rodrigo Moya)
- Fixed compilation warnings (Damien Carbery, Jens Granseuer) (328255)

settings daemon:
- Use verbs for slow/sticky keys dialogs, rather than OK/Cancel (chpe)
  (325686)

help:
- Updated scrollkeeper description (Alessandro Ferrucci) (327784)

other:
- Don't use "capplet" in user-visible strings (Rodrigo Moya) (168790)
- Fixed glib CRITICAL warnings (Thomas Wood)
- Added GTK category to .desktop files (Luca Cavalli) (328028)
- Use "mouse pointer" instead of "cursor" in user-visible strings
  (Scott Bronson) (318056)

updated translations:
- bg (Alexander Shopov)
- ca (Josep Puigdemont i Casamaj)
- da (Lasse Bang Mikkelsen)
- el (Kostas Papadimas)
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- fi (Ilkka Tuohela)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- hu (Gabor Kelemen)
- it (Luca Ferretti)
- ja (Takeshi AIHANA)
- lt (Zygimantas Berucka)
- nb (Kjartan Maraas)
- nl (Vincent van Adrighem)
- no (Kjartan Maraas)
- pt_BR (Evandro Fernandes Giovanini)
- ru (Nickolay V. Shmyrev)
- sr (Slobodan D. Sredojevic)
- sr@Latn (Slobodan D. Sredojevic)
- th (Theppitak Karoonboonyanan)
- vi (Clytie Siddall)
- zh_CN (Funda Wang)

------------------------------------------------------------------------------
gnome-control-center 2.13.5.1

default applications:
- Fixed loading of translations from XML file (Luca Cavalli)

settings daemon:
- Use g_mkdir_with_parents instead of creating all the hierarchy by hand
  (Rodrigo Moya)

other:
- Fixed m4 directory missing (chpe)

updated translations:
- da (Lasse Bang Mikkelsen)
- en_CA (Adam Weinberger)
- gu (Ankit Patel)
- sr (Slobodan D. Sredojevic)

------------------------------------------------------------------------------
gnome-control-center 2.13.5

background:
- Changed main dialog to use explicit apply with OK and cancel buttons
  (Rodney Dawes)
- Added zoom to scale type options (Alan Swanson)

default applications:
- New UI (Luca Cavalli)
- Build and general fixes to the new UI (Sebastian Bacher, Rodrigo Moya)

keybindings:
- Dropped the keysim/keycode binding code (Bastien Nocera) (133815)

keyboard:
- Made window a bit larger (Sergey Udaltsov) (326137)
- Fixed window title capitalization (Sergey Udaltsov) (326275)

mouse:
- Made mouse clock work with both left/right buttons (akmal) (321255)

sound:
- New UI (Scott Reeves)
- HIG fixes to the new UI (Dennis Cranston)
- Translation fixes (Rodrigo Moya) (326635)

themus:
- Fixed usage of head command (Thomas Wood) (316800)

typing break:
- Use gdk_spawn_* functions instead of egg equivalents (Rodrigo Moya) (326141)

settings daemon:
- Cleaned up messages about pmu on powerbook (Jeroen Zwartepoorte) (132655)
- Set Net/FallbackIconTheme XSetting for new versions of gnome-icon-theme
  and gtk+ >= 2.8.10 (Rodney Dawes) (325546)
- Use gstreamer0.10 optionally (Saleem Abdulrasool and Tim-Philip Muller) (326257)

updated translations:
- bg (Alexander Shopov)
- ca (Josep Puigdemont i Casamaj)
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- fi (Ilkka Tuohela)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- hu (Gabor Kelemen)
- ja (Takeshi AIHANA)
- nb (Kjartan Maraas)
- nl (Vincent van Adrighem)
- no (Kjartan Maraas)
- sr (Slobodan D. Sredojevic)
- sr@Latn (Slobodan D. Sredojevic)
- th (Theppitak Karoonboonyanan)
- vi (Clytie Siddall)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)

------------------------------------------------------------------------------
gnome-control-center 2.13.4

default-applications:
- Added Opera to list of default browsers (pholie) (324629)

keyboard:
- Fixed leak on GtkSizeGroup's (Jaap A. Haitsma) (321549)

themus:
- Update the background for metathemes that provide a preferred
  background (Guillaume Desmottes) (147665)
- Fixed typeahead searching in themes list (David Seseo)

windows behavior:
- Fixed mnemonics (Rajan Singh)

settings daemon:
- Restore prelight/active/mouse-over feedback for Tk (jenglish) (130299)
- Made Emacs xsettings mimic better GNOME's look & feel (Lukasz Stelmach)
  (320727)

other:
- Compilation fixes (Jens Granseuer) (321779)
- Removed unused --enable-gconf-source option (Mark McLoughlin)

updated translations:
- ca (Josep Puigdemont i Casamaj)
- fi (Ilkka Tuohela)
- vi (Clytie Siddall)

------------------------------------------------------------------------------
gnome-control-center 2.13.3

about-me:
- Added a preview to the filechooser used for selecting an image (Mathias Clasen)
- Fixed for running in systems with no forkpty (Brian Cameron)

gnome-settings-daemon:
- Added definition of "Gtk/ShowInputMethodMenu"/"Gtk/ShowUnicodeMenu" xsettings
  (Mathias Clasen) (319634)
- C89 compilation fixes (Jens Granseuer) (321778)
- Don't grab keyboard when getting invalid keycodes from GConf (Philippe
  Troin) (323690)

keyboard:
- Small changes in plugin API (Sergey V. Udaltsov)

themus:
- Added removal of themes from the theme selection applet (David Seseo)

typing-break:
- Don't display a dialog when the monitor is already running (Richard Hult) (307425)
- Use stock icons from GTK rather than libgnomeui (Richard Hult) (171664)

other:
- Compilation fixes (Kjartan Maraas)

translations:
- bg (Alexander Shopov)
- cs (Miloslav Trmac)
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- et (Priit Laes)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- ja (Takeshi AIHANA)
- lt (Zygimantas Beruka)
- nb (Kjartan Maraas)
- no (Kjartan Maraas)
- pt_BR (Guilherme de S. Pastore)
- sk (Marcel Telka)
- sq (Laurent Dhima)
- th (Theppitak Karoonboonyanan)
- zh_CN (Funda Wang)

------------------------------------------------------------------------------
gnome-control-center 2.13.2

background:
- Sanity check on GConf string values (Alexis Robert) (320647)

themus:
- 15-20% speedup in theme thumbnailer startup (Sebastien Bacher)

shell:
- Respond correctly to theme changes (Carlos Garnacho)

other:
- Compilation fixes (Kjartan Maraas, Rodrigo Moya)

translations:
- bg (Alexander Shopov)
- cs (Miroslav Trmac)
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- eu (Iaki Larraaga)
- fa (Roozbeh Pournader)
- fi (Ilkka Tuohela)
- ja (Takeshi AIHANA)
- lt (Zygimantas Berucka )
- nl (Vincent van Adrighem)
- ro (Dan Damian)
- sk (Marcel Telka)
- th (Theppitak Karoonboonyanan)

------------------------------------------------------------------------------
gnome-control-center 2.13.1

default-applications:
- Add Sylpheed-Claws to the list of possible mailers (Colin Leroy)

mouse:
- gcc 2.95 compilation fixes (Jens Granseuer) (318746)

themus:
- Allow installation of themes with file:// URIs (Ed Catmur) (319358)

shell:
- Only show one screensaver capplet when both xscreensaver and gnome-screensaver
  are installed (Rodrigo Moya) (315505)
- Fix scrollbar arrows (Carlos Garnacho)
- Calculate text widths instead of forcing them (Carlos Garnacho) (319492)
- Force canvas background to base[GTK_STATE_NORMAL] and remove the need to
  repaint the background, in white (Carlos Garnacho)

typing-break:
- Fix weird spacing between systray icons (Rodrigo Moya) (318231)

other:
- Add schema for remembering NumLock state between sessions (Jrg Billeter)
  (74215)
- Add check for xinput extension (Ray Strode) (314409)
- Update the desktop font in addition to the application font when
  'apply font' in large print themes is selected (Muktha) (123551)
- Reduced amount of xrdb executions (Erwann Chenede) (314774)
- Don't block settings daemon while executing children processes (Rodrigo Moya)
- Lazy load the screensaver and the typing break monitor (Rodrigo Moya)
- Share a single GConfClient in the settings daemon (Rodrigo Moya)
- Execute xrdb with -nocpp switch when possible (Rodrigo Moya)
- Swap buttons on auxiliary mice for left-handed mode (Ray Strode) (314409)

translations:
- bg (Alexander Shopov)
- en_CA (Adam Weinberger)
- et (Priit Laes)
- fi (Ilkka Tuohela)
- pt_BR (Guilherme de S. Pastore)
- sv (Christian Rose)

------------------------------------------------------------------------------
gnome-control-center 2.12.1

background:
- Make sure that the filename is valid utf8 and the file exists with utf8 
  encoding, or fall back to filename encoding as specified by the user 
  with glib's environment variables (Rodney Dawes) (168604)
- Set the style property "action-area-border (Rodney Dawes) (313680)

default-applications:
- List evolution-2.4 binary (Jan de Groot) (#315871)

gnome-settings-daemon:
- Don't leak the cursor theme name (Kjartan Maraas) (#314692)

mouse:
- fix a crasher when the cursor theme has no icon (Sebastien Bacher) (#317749)
- guard against invalid values from the GtkHScale widget (Rodrigo Moya)

themus:
- fix a typo with the StartupNotify option (Vincent Fretin) (#316159)

other:
- if the xcursor extension can't be found just build without xcursor support
  (Brian Cameron) (#316875)
  

translations:
Rostislav \"zbrox\" Raykov (bg)
Progga (bn)
Miloslav Trmac (cs)
Francisco Javier F. Serrador (es)
Ivar Smolin (et)
Iñaki Larrañaga Murgoitio (eu)
Christophe Merlet (RedFox) (fr)
Ignacio Casal Quinteiro (gl)
Erdal Ronahi (ku)
Christian Rose (sv)
Clytie Siddall (vi)
Funda Wang (zh_CN)

------------------------------------------------------------------------------
gnome-control-center 2.12.0

translations:
Jordi Mallach (ca)
Miloslav Trmac (cs)
Rhys Jones (cy)
Hendrik Richter (de)
Francisco Javier F. Serrador (es)
Vincent Untz (fr)
Gabor Kelemen (hu)
Young-Ho Cha (ko)
Reinout van Schouwen (nl)
Gnome PL Team (pl)
Evandro Fernandes Giovanini (pt_BR)
Duarte Loreto (pt)
Leonid Kanter (ru)
Marcel Telka (sk)
Elian Myftiu (sq)
Слободан Д. Средојевић (sr)
Baris Cicek (tr)
Clytie Siddall (vi)

------------------------------------------------------------------------------
gnome-control-center 2.11.92

about-me:
- typo fix (Francisco Javier F. Serrado) (#312845)
- use "wrapped" instead of "one" to handler the case where the passwd command 
  finds the password wrapped. Use a long delay period. 
  (Jaap Hatsima) (#312092)
- use integer to avoid comparison being always true due to limited range
  (Olaf Heiring).

background:

- Enable/disable the style-menu, shading-menu and color-picker buttons 
  w.r.t gconf-keys (Veerapuram Varadhan).
- Replace the changing of some GtkDialog defaults through style properties with
  calls to gtk_widget_ensure_style and gtk_container_set_border_width
  (Rodney Dawes) (#313680)
- If the value for the "picture_options" key is set to "none", don't set the 
  optin menu for the scaling options to tiled (Rodney Dawes) (#313883).

common:
- Get the Example icon that is specified by the icon theme, if it exists, 
  and then fall back through a better list of icons to use (Rodney Dawes).

keyboard:
- don't use a page value, fix the different behaviour between widgets
  (Sebastien Bacher) (#301470).

other:
- configure fixes (Sergey V. Udaltsov, Ray Strode, Christian Persch)
- fix a leak (Rodrigo Moya)

translations:
Jens Seidel (de)
Kostas Papadimas (el)
Francisco Javier F. Serrador (es)
Ivar Smolin (et)
Gabor Kelemen (hu)
Mohammad DAMT (id)
Takeshi AIHANA (ja)
Žygimantas Beručka (lt)
Terance Edward Sola (nb)
Terance Edward Sola (no)
Sebastian Ivan (ro)
Слободан Д. Средојевић (sr)
Baris Cicek (tr)
Maxim V. Dziumanenko (uk)
Funda Wang (zh_CN)
Woodman Tuen (zh_TW)

------------------------------------------------------------------------------
gnome-control-center 2.11.91

about-me:

- fix the crash when closing the password dialog with the windo manager button
  (Diego Gonzalez) (#309736, #312580)
- change signature and handle error conditions from passwd (Diego Gonzalez)
  (#312092)
- handle protocol errors from EDS. (Diego Gonzalez) (#312450)

build:

- fix the build without gstreamer and with alsa (Paul Drain) (#307368)

fontilus:

- follow symlinks when getting info (Paolo Borelli) (#309744)

mouse:

- don't crash if there is no cursor theme installed (Sebastien Bacher) 
  (#311599)
- update dynamically the double click label (Sebastien Bacher) (#166908)
- update of the glade file, no need to restart the session to apply
  the changes with GTK 2.8 (Sebastien Bacher) (#312070)


translations:

Rostislav \"zbrox\" Raykov (bg)
Miloslav Trmac (cs)
Adam Weinberger (en_CA)
Francisco Javier F. Serrador (es)
Ivar Smolin (et)
Ilkka Tuohela (fi)
Ankit Patel (gu)
Yuval Tanny (he)
Gabor Kelemen (hu)
Takeshi AIHANA (ja)
Terance Edward Sola (nb)
Reinout van Schouwen (nl)
Terance Edward Sola (no)
Marcel Telka (sk)
Слободан Д. Средојевић (sr)
Prajasakti Localisation Team (te)
Theppitak Karoonboonyanan (th)
Clytie Siddall (vi)
Funda Wang (zh_CN)

------------------------------------------------------------------------------
gnome-control-center 2.11.90

general:

- change the way XKB GConf preferences are handled so that:
  1) GConf keys are never written unless the user changes the preferences
  2) If the keys are unset, the default XKB settings are used
  (Mark McLoughlin) (#310513)
- remove wm-properties (Mark McLoughlin)
- switch to gnome-doc-utils (Sebastien Bacher)
- set windows' icon for the keyboard dialogs (Jaap A. Haitsma) (#305096)
- set a default icon for the capplets (Jaap A. Haitsma) (#305086)
- try to run gnome-screensaver before xscreensaver (Rodrigo Moya) (#302347)

about-me:

- change the order of the buttons to match the HIG (Denis Cranston) (#309632)

background:

- if xmlParseFile returns NULL, then just return, rather than trying to parse 
  the document (Rodney Dawes) (#310041)
- update menu option when scrolling with the mouse (Sebastien Bacher) (#157396)
- use GtkColorButton instead of GnomeColorPicker (Sebastien Bacher) (#171676)

ui-properties:

- show a label with the "Text beside icons" mode (Sebastien Bacher) (#308845)

translations:

Rostislav \"zbrox\" Raykov (bg)
Miloslav Trmac (cs)
Hendrik Brandt (de)
Kostas Papadimas (el)
Adam Weinberger (en_CA)
Francisco Javier F. Serrador (es)
Priit Laes (et)
Ignacio Casal Quinteiro (gl)
Ankit Patel (gu)
Takeshi AIHANA (ja)
Terance Edward Sola (nb)
Reinout van Schouwen (nl)
Terance Edward Sola (no)
Marcel Telka (sk)
Theppitak Karoonboonyanan (th)
Clytie Siddall (vi)
Funda Wang (zh_CN)

------------------------------------------------------------------------------
gnome-control-center 2.11.6

general:

- expose the cursor theme settings as xsettings (Matthias Clasen) (#308104)
- fix a typo with a .schemas name (Jan Schmidt) (#307388)
- fix the markup usage of the XKB dialog (Sebastien Bacher) (#308279)
- make the copy dialog consistent with nautilus (William Jon McCann) (#309217)
- require libxft 2.1.7 (Christian Lohmaier) (#309558)

about-me:

- fix some typo (Clytie Siddall) (#302614)
- set dialog icon (Jaap A. Haitsma) (#309342)
- HIG fixes (Dennis Cranston) (#309952)
- improve the behaviour of the capplet when using large images (Diego Gonzalez)
- commit the changes so that we don't loose any data (Diego Gonzalez) (#309737)
- fix image loading when draging an image on the image button (Diego Gonzalez)
  (#309628)
- change the maxium width and height permitted on an image (Diego Gonzalez)
  (#309643)

background:

- fixed some leaks (Rodney Dawes, Kjartan Maraas)
- replace GnomeIconTheme by GtkIconTheme (Rodney Dawes, Jan de Groot) (#171677)

mouse:

- new cursor theme manager for the mouse capplet 
  (Sven Herzberg, Matthias Clasen) (#110670)

translators:

Miloslav Trmac (cs)
Adam Weinberger (en_CA)
Francisco Javier F. Serrador (es)
Ivar Smolin (et)
Ignacio Casal Quinteiro (gl)
Terance Edward Sola (nb)
Reinout van Schouwen (nl)
Terance Edward Sola (no)
Marcel Telka (sk)
Theppitak Karoonboonyanan (th)

------------------------------------------------------------------------------
gnome-control-center 2.11.5

- new "about-me" capplet by Diego Gonzalez <diego@pemas.net>

translators:

Hendrik Richter (de)
Adam Weinberger (en_CA)
Ivar Smolin (et)
Meelad Zakaria (fa)
Terance Edward Sola (nb)
Reinout van Schouwen (nl)
Terance Edward Sola (no)
Marcel Telka (sk)
Elian Myftiu (sq)
Christian Rose (sv)
Theppitak Karoonboonyanan (th)
Funda Wang (zh_CN)
Woodman Tuen (zh_TW)

------------------------------------------------------------------------------
gnome-control-center 2.11.4

- fix a crasher with the clipboard manager (Sebastien Bacher)
- fix a crasher when changing the volume with the multimedia keys
  (Christophe Fergeau)
- make the sticky keys and slow keys dialog HIG compliants 
  (Carlos Garnacho Parro)

------------------------------------------------------------------------------
gnome-control-center 2.11.3

- fix mute handling, particularly for devices without hardware mute support 
  or with applications that use volume=0 for mute (Ronald S. Bultje)
- clipboard manager (Anders Carlsson)
- canvas a11y support (Carlos Garnacho Parro)
- name and description to the object information (Rodrigo Moya)


translator:

Vladimir Petkov (bg)
Miloslav Trmac (cs)
Rhys Jones (cy)
Martin Willemoes Hansen (da)
Adam Weinberger (en_CA)
Alessio Dessì (it)
Takeshi AIHANA (ja)
Kjartan Maraas (nb)
Kjartan Maraas (no)
Elian Myftiu (sq)
Theppitak Karoonboonyanan (th)

------------------------------------------------------------------------------
gnome-control-center 2.11.1

- allow to configure the menubar shortcut (Sebastien Bacher)
- new shell layout code (Carlos Garnacho Parro)
- port of the font capplet to gtk_font_button and some cleanup (Paolo Borelli)
- make proxy settings HIG compliant (Jorn Baayen)
- lot of cleanups (Kjartan Maraas)
- don't list themes using the Hidden property (Shakti Sen).
- fix the theme preview crasher with xorg/composite (Colin Gibbs)

translators:

Vladimir Petkov (bg)
Miloslav Trmac (cs)
Kostas Papadimas (el)
Adam Weinberger (en_CA)
Ivar Smolin (et)
Iñaki Larrañaga Murgoitio (eu)
Gabor Kelemen (hu)
Elian Myftiu (sq)
Maxim Dziumanenko (uk)
Canonical Ltd (xh)

------------------------------------------------------------------------------
gnome-control-center 2.10.0

background:
- fix the crashes with non-UTF8 names (Rodney Dawes)

general:
- do not warn vnc users that their XKB does not work.  We already know.
  (Jody Goldberg)

translators:

Vladimir Petkov (bg)
Jordi Mallach (ca)
Miloslav Trmac (cs)
Martin Willemoes Hansen (da)
Frank Arnold (de)
Kostas Papadimas (el)
Adam Weinberger (en_CA)
David Lodge (en_GB)
Francisco Javier F. Serrador (es)
Priit Laes (et)
Pauli Virtanen (fi)
Simon Manlay (fr)
Ankit Patel (gu)
Gabor Kelemen (hu)
Alessio Dessì (it)
Takeshi AIHANA (ja)
Changwoo Ryu (ko)
Žygimantas Beručka (lt)
Kjartan Maraas (nb)
Reinout van Schouwen (nl)
Kjartan Maraas (no)
Gnome PL Team (pl)
Raphael Higino (pt_BR)
Duarte Loreto (pt)
Dan Damian (ro)
Leonid Kanter (ru)
Marcel Telka (sk)
Elian Myftiu (sq)
Veljko M. Stanojevic (sr)
Christian Rose (sv)
Theppitak Karoonboonyanan (th)
Maxim Dziumanenko (uk)
Woodman Tuen (zh_TW)

------------------------------------------------------------------------------
gnome-control-center 2.9.91

general:
- check for xmodmap files, and offer to load them (#143487)
- changing the default value for "handleIndicators" to false (#161343) 
  (Sergey V. Udaltsov)
- check for screensaver functionality in libXext.so also when deciding 
  to build typing-break (#155461) (Leena Gunda)
- providing ability to suppress the "x sysconfig changed" warning message
  (#150435) (Sergey V. Udaltsov).
- handle the modmap settings (#143487) (Shakti Sen)
- fix number of leaks (Kjartan Maraas)

background:
- use the boolean argument to specify if we want to update gconf or not.
  Always get the colors for both primary and secondary and update the thumbnail
  (#166486) (Rodney Dawes)
- force using the GTK backend (#154978) (Rodney Dawes)

common:
- leak fixes, use GtkIconTheme (#166267) (Kjartan Maraas)

network:
- adding/removing the host name instantly to/from gconf (#166233) (Shakti Sen)

theme-switcher:
- new install procedure (#102216) (David Sedeño)
- some string fixes (#166550) (David Lodge)
- remove a load of leaks and make sure newly installed themes show up in the 
  relevant lists without having to close/open the dialog again (#166267)
  (Kjartan Maraas)
- fix an infinite loop that was bringing single-CPU systems to their
  knees (#160803) (Elijah Newren).

Translators:

Vladimir Petkov (bg)
Miloslav Trmac (cs)
Frank Arnold (de)
Nikos Charonitakis (el)
Adam Weinberger (en_CA)
David Lodge (en_GB)
Francisco Javier F. Serrador (es)
Ivar Smolin (et)
Pauli Virtanen (fi)
Alessio Dessì (it)
Takeshi AIHANA (ja)
Changwoo Ryu (ko)
Žygimantas Beručka (lt)
Kjartan Maraas (nb)
rajeev shrestha (ne)
Åsmund Skjæveland (nn)
Kjartan Maraas (no)
Raphael Higino (pt_BR)
Duarte Loreto (pt)
Leonid Kanter (ru)
Elian Myftiu (sq)
Christian Rose (sv)
Theppitak Karoonboonyanan (th)
Baris Cicek (tr)
Funda Wang (zh_CN)

------------------------------------------------------------------------------
gnome-control-center 2.9.4

- fix the build out of the source dir (Closes: #158333).
- don't set "close" as the default button for the differents capplets 
  (Closes: #98202).
- use a temporary filename to not overwrite existant files in ~/.themes
  (Closes: #97180).
- theme-thumbnailer doesn't require an absolute path (Closes: #153203).
- use ~/ instead of / as working directory for programs launched with the
  multimedia keys (Closes: #162069).
- fixed the "locate pointer" feature (Closes: #149383).
- load the translated descriptions in the backgrounds capplet 
  (Closes: # 160700)
- add a preview in the backgrounds fileselector (Closes: #139714).
- add a proxy exclusion list configuration in the network capplet 
  (Closes: #147666).
- some bugs and leaks fixed.

 Translators:

Vladimir Petkov (bg)
Miloslav Trmac (cs)
Kostas Papadimas (el)
Adam Weinberger (en_CA)
Francisco Javier F. Serrador (es)
Takeshi AIHANA (ja)
Žygimantas Beručka (lt)
Kjartan Maraas (nb)
rajeev shrestha (ne)
Kjartan Maraas (no)
Leonid Kanter (ru)
Elian Myftiu (sq)
Christian Rose (sv)


gnome-control-center 2.9.3

- Add a button to turn off a sound event (#14272).
- Allow to use themes with the ".tgz" extension (#148895).
- Don't nuke .Xdefaults when restarting g-s-d (#127050).
- Fix the themes installation with the non GNU versions of tar (#114553).
- Mask the "Text Editor" tab since the new mime system doesn't use this 
  setting.
- Updated the tooltips to respect the HIG.
- Updated to use libnautilus-extensions.
- Updated the menu entries for the new gnome-menus system.

gnome-control-center 2.8.1

- Some tweaking of the available default applications
- Background capplet fixes (#154003)
- keyboard patchs (#144490) (#153866)
- Patch leak in XKB code
- update translations

------------------------------------------------------------------------------
gnome-control-center 2.8.0

Jody Goldberg
 * Fixed float/int mismatch in peditor

Jonathan Blandford
 * Fix docs link for at-properties capplet.

Pierre Ossman
 * display the volume dialog in the correct place

Sergey V. Udaltsov
 * default switchcut (Alt*2) is introduced

Translations:
 * All translations updated

------------------------------------------------------------------------------
gnome-control-center 2.7.1

Translations:
 * Bosnian translation added.

Frederic Crozat:
 * Use themed icon for windows

Rodney Dawes:
 * Add "W x H pixels" to description, and remove file size for bg capplet

Sergey:
 * Fixes to keybinding capplet

Kjartan Maraas:
 * text cleanup

Jeroen Zwartepoorte:
 * Use the parent type in the G_DEFINE_TYPE

------------------------------------------------------------------------------
gnome-control-center 2.7.0
    * No NEWS file updates this time due to time pressures.  2.7.1
    should have a full change.

------------------------------------------------------------------------------
gnome-control-center 2.6.1

Jody:
    * Add the ximian shell to the tarball and polish it up a bit

Michael Terry:
    * Fix ui-review comments for keybinding capplet

Sergey:
    * Add a hook to libgswitchit to notify when xkb is reloaded

Shailesh Mittal:
    http://bugzilla.gnome.org/show_bug.cgi?id=114832
    * IPV6 support in the file types capplet

Sergey V. Udaltsov:
    * Merged the keyboard preview branch. The keyboard capplet got another tab.

------------------------------------------------------------------------------
gnome-control-center 2.6.1

Alex Larsson:
    https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=119494
    * Fix reverting a size change.

Chris Lahey:
    * Fix ordering of themes in theme manager
    * Fix sizing of svg backgrounds

Glynn:
    * Toplevel window icons should use the icon themes

Jody:
    http://bugzilla.gnome.org/show_bug.cgi?id=139190
    * Fix uniqueness test for binding special keys with no name
    * Fix theme manager selection when not running metacity
    http://bugzilla.gnome.org/show_bug.cgi?id=139605
    * Mouse buttons are not valid modifiers for keybindings
    * Force libxklavier 1.0.2 so that we can work with x.org and xfree86
    * Match nautilus' interpretation of icons in desktop files

Padraig O'Briain:
    http://bugzilla.gnome.org/show_bug.cgi?id=131538.

------------------------------------------------------------------------------
gnome-control-center 2.6.0.3

Jody:
    http://bugzilla.gnome.org/show_bug.cgi?id=138701
    * Fix typo
    * Fix uniqueness test for keybindings
    * Merge in some build fixes for sun's forte and Irix

------------------------------------------------------------------------------
gnome-control-center 2.5.4

Dennis Cranston :
    http://bugzilla.gnome.org/show_bug.cgi?id=133715
    * Improve layout of display capplet

Alexander Winston :
	http://bugzilla.gnome.org/show_bug.cgi?id=133214
	* quote the AC_DEFUN properly

Jody :
	http://bugzilla.gnome.org/show_bug.cgi?id=124064
	* Add a test for ngettext
	* Delete some of the unused file cluttering the tree
	http://bugzilla.gnome.org/show_bug.cgi?id=134446
	* Trivial string consistency adjustment
	http://bugzilla.gnome.org/show_bug.cgi?id=128164
	* Handle sorted trees
	* Fix incorrect string in gnome-settings-daemon

Muktha Narayan :
	http://bugzilla.gnome.org/show_bug.cgi?id=124032
	* Do not popup the logout dialog when the close button (X)

Jan Arne Petersen :
	* Move a few capplets to the new file selector

Padraig O'Briain :
	* Fix the ATK relations for the file-type capplet

Julio M. Merino Vidal :
	* Make fontilus and themus respect the gconf install settings

Rodney Dawes:
	http://bugzilla.gnome.org/show_bug.cgi?id=134171
	* Fix transtions for titles of colour pickers.

Kaushal Kumar:
	http://bugzilla.gnome.org/show_bug.cgi?id=109091
	* Warn before deleting a type

Richard Hult:
	* Improve Dr Wright.

msuarezalvarez@arnet.com.ar :
	http://bugzilla.gnome.org/show_bug.cgi?id=134699
	* Another typo in the new a11y settings daemon extensions

------------------------------------------------------------------------------
gnome-control-center 2.5.1

Jody:
    http://bugzilla.gnome.org/show_bug.cgi?id=125899
    http://bugzilla.gnome.org/show_bug.cgi?id=125970
    * Fix the build and configure on older X servers.
    * Use icon themes

Sergey:
    * Merge gswitchit into gnome-settings-daemon and keyboard capplet

------------------------------------------------------------------------------
gnome-control-center 2.5.0

Jody:
    * Add libxklavier and prep for inclusion of gswitchit's
      xkb-properties-capplet
    * http://bugzilla.gnome.org/show_bug.cgi?id=120842	[HIGification broke accessx]
    * http://bugzilla.gnome.org/show_bug.cgi?id=106489	[protect against gconf failure]
    * http://bugzilla.gnome.org/show_bug.cgi?id=124513	[Handle TruColor Displays]
    * http://bugzilla.gnome.org/show_bug.cgi?id=116710	[smarter maximum dpi]

------------------------------------------------------------------------------

gnome-control-center 2.1.6

Jody:
	* gnome-keyboard-properties.c (accessibility_button_clicked) : fix
          minor typo that disables the error dialog in the event of failure.

Jonathan:
	* gnome-theme-info.c : Rewrite.  Now working
	* gnome-theme-manager : Fix lots of bugs.  Use the rewrite.

gnome-control-center 2.1.0.2

Jody:
	http://bugzilla.gnome.org/show_bug.cgi?id=93211
	* disable edit button when selecting mime catagory
	* Tidy labels and accelerators in file-type edit dialogs

Michael:
	http://bugzilla.gnome.org/show_bug.cgi?id=91535
	* Don't start esd just to stop it

Iain Holmes:
	* Add an image size label for background capplet.

------------------------------------------------------------------------------
gnome-control-center 2.1.0.1

Jody:
	* Some minor ui tweaks for accessx.
	* Some aix portabiltiy patches
	* fix accelerators for ui-properties capplet.

------------------------------------------------------------------------------
gnome-control-center 2.0.1

Chema:
	http://bugzilla.gnome.org/show_bug.cgi?id=86018
	* Only assign the filename to the label if the file is valid.

GMan:
	* Fix titles to use 'preferences' rather than 'properties'

Jody:
	* Clean up the handling of custom applications in mime type capplet.
	* Supply some decent defaults for new mime types.
	* Implement Background capplet UI recommendations.
	* Implement Font capplet UI recommendations.
	* Reorganize the AccessX UI.
	* Fix cmd line args for file-type capplet.

	http://bugzilla.gnome.org/show_bug.cgi?id=84014
	* Handle Drag-n-Drop of uris with escaped characters.

------------------------------------------------------------------------------
First split version of this package