~cosmos-door/unity-settings-daemon/lp1514544

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
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
===============
Version 3.8.6.1
===============

- New release for build failures

=============
Version 3.8.6
=============

Housekeeping:
- Optimise for "do nothing" when cleaning thumbnails

Keyboard:
- Don't set the XKB group switching option when not needed

Mouse:
- Fix critical warnings with touchpad settings

Wacom:
- Make OSD work again with newer librsvg

Power:
- Stop X from turning our screen off

XRandR:
- Prevent guint32 overflow

=============
Version 3.8.5
=============

Housekeeping:
- Fixed a bug that would prevent files in the Trash from being purged

Mouse:
- Enable edge scrolling if two-finger scroll is unavailable

Power:
- Fix a crash when hibernating on low power

Printers:
- Translate printer warnings
- Code cleanup
- Do more things asynchronously
- Poll remote CUPS servers for notifications

Screensaver:
- Support KDE variant of interface
- Fix a crash

Updates:
- Fix a crash

=============
Version 3.8.4
=============

- Fix possible crasher on startup
- Fix battery warning notifications not going away after
  plugging the laptop
- Make gnome-shell's monitoring of user-added applications
  faster by creating the directory for them
- Fix possible crash in XRandR with overlapping screens

=============
Version 3.8.3
=============

Media-keys:
- Fix potential crash if gnome-shell crashes while coming up
- Show shell search for search button

Keyboard:
- Remove the input source switcher helper
- Introduce a SetInputSource DBus method

Updates:
- Fix potential crash

=============
Version 3.8.2
=============

Media-keys:
- Don't show a label for "analog-output" ports

Color:
- Remove warning for some laptop docks
- Don't try to parse temporary files we generate

Power:
- Fix brightness not being restored on resume on some systems
- Make "Turn off screen when inactive" switch work

=============
Version 3.8.1
=============

Power:
- Don't change the active state when running in a VM
- Fix compilation on non-Linux platforms

Cursor:
- Fix possible crashes on older versions of X.org

Media-keys:
- Fix race condition with gnome-shell on startup
- Fix broken startup notifications
- Fix possible crash when changing the volume
- Fix crash when the shell vanishes and reappears

Keyboard:
- Cancel outstanding D-Bus operations when stopping
- Enforce the XKB group when changing layouts
- Make sure to add the XKB US layout in GDM on empty configurations

Mouse:
- Enable two-finger scrolling by default

Printers:
- Fix deprecation compile-time warnings

=============
Version 3.8.0
=============

Color:
- Set the default profile locale to be en_US, not EN_us

Power:
- Fix state problems if gnome-shell crashes or is killed within
  the screensaver

Cursor:
- Fix crash with X.org prior to 1.14, requires a matching gnome-desktop
  release as well

- Updated translations

==============
Version 3.7.92
==============

Media keys:
- Remove obsolete check for XInput2
- Use the shell's D-Bus interface to show OSDs
- Fix warnings on startup trying to call gnome-shell

Keyboard:
- Fix extra layouts being forgotten on GDM's second launch
- Fix dead keys and similar features being broken in legacy applications
- Avoid delay switch to IBus input source the first time around

Font:
- Remove reference to font schema

Updates:
- Fix possible crashers on exit

- Updated translations

==============
Version 3.7.91
==============

Media keys:
- Key grabbing is now done in gnome-shell, which fixes problems
  with keybindings not working in certain conditions

Sound:
- Fix possible crashes when starting in a clean home directory

Cursor:
- Disable code to make it popup the On-Screen Keyboard on touchscreens

==============
Version 3.7.90
==============

- Set locale and IBus envvars on startup for our children
- Remove background plugin, as background handling is now
  done in gnome-shell

A11y settings:
- Import GIO instead of GTK+/GDK
- Do enable toolkit accessibility, even if we don't need it,
  for the benefit of third-party/legacy toolkits and apps

Media keys:
- Add other bindings to the whitelist

Cursor:
- Enable the on-screen keyboard when touch is used

Keyboard:
- Adapt to gnome-xkb-info API change

Power:
- Make blanking timeouts match
- Show notifications when about to suspend from idle
- Wake up the display when about to logout
- Adapt to new GnomeIdleMonitor API
- Don't change the brightness on inactive sessions

Remote Display:
- Disable animations on Xvnc as well
- Re-enable animations if Vino is gone

Sound:
- Avoid polling non-existent directories

Updates:
- Fix crasher when firmware updates is disabled

XSettings:
- propagate the remember-recent-files GSetting to XSettings

Wacom:
- Bump req for GDK_FULLSCREEN_ON_ALL_MONITORS

===============
Version 3.7.5.1
===============

Fix keyboard shortcut handling with XI 2.3

=============
Version 3.7.5
=============

A11Y Keyboard:
- Disable everything on exit if no settings changed
- Remove GTK+ fallback dialogues

Color:
- Set the correct metadata on the auto-created EDID profile
- Switching to a new account shouldn't warn

Daemon:
- Also apply LC_PAPER

Media Keys:
- Use D-Bus API to lock the screen
- Use F20 for the temporary mic mute key

Power:
- Add way to disable the backlight helper
- Avoid dead-locking with gnome-shell on startup
- Avoid possible crash when shutting down quickly or at startup
- Drop explicit screen locking on suspend
- Fix incorrect backlight level on restore
- Handle dim idle the same way as other idles
- Lots of test additions
- Wake up the display when unplugging the AC too

Remote DIsplay:
- Detect SPICE sessions as well
- Monitor Vino's Connected status

Screenshot:
- Save to GtkRecentManager on success
- Lots of test additions.

Updates:
- Allow the shell time to initialize before checking for offline update failures

Wacom:
- Use regular fullscreen window for OSD

And updated translations

=============
Version 3.7.4
=============

Updates:
- Support notification filtering

Media-keys:
- Save screenshots without using gnome-screenshot
- Updated design for the on-screen OSD
- Show output device when changing the volume
- Add OSD support for the "Battery" key on certain laptops
- Add support for the microphone mute key on certain keyboards
- Move sound initialisation out of the critical startup path

Color:
- Addition to implement new mockups in gnome-control-center

Housekeeping:
- Fix purging not working

Keyboard:
- Don't migrate ibus xkb engines

Power:
- Add test suite
- Fix Power settings panel not picking up the updated brightness
- Fix dimming of the screen not working, and don't dim when inhibited
- Fix timeouts being longer than configured in some cases
- Aggressively blank the screen when the shield is down
- Update idle configuration when plugging or unplugging the mains
- Really turn off the screen on suspend for MacBook laptops
- Allow overriding VM detection with the gnome.is_vm=[01] kernel command-line parameter

Wacom:
- Fix problems resetting touch buttons on 64-bit systems
- Allow switching modes while OSD is active

XRandR:
- use default-monitors-setup for autoconfiguration even after boot

=============
Version 3.7.3
=============

- Add implementation for Freedesktop.org ScreenSaver inhibition API
- Disable animations on slow links (VNC for example)
- Remove fallback mode handling code
- Disable the smartcard plugin for now

Daemon:
- Many plugins ordering bug fixes
- Use gnome-session properties instead of libsystemd-login
- Allow whitelisting plugins, to make it easier for gdm to catch up
- Install all the schemas, even the ones for which the plugins aren't
  installed
- Add a way to replace the daemon
- exit gracefully if the session name is already taken

Power:
- Remove unused settings keys
- Do not attempt to suspend, dim or blank if running inside a VM
- Port to GnomeIdleMonitor from gnome-desktop
- Adjust sleep timer to blank timer in some cases
- Check if action is available before taking action
- Hide critical battery warning when power is plugged
- Fix possible race with gnome-shell on startup

Sound:
- Fix sound plugin never working properly

Media-keys:
- Use the shared libgnome-volume-control code
- Support launching gnome-calculator instead of gcalctool
- Add default shortcuts for the magnifier
- Add repeat to the brightness keys

Keyboard:
- Fix build without IBus
- Fix potential infinite loop due to num-lock handling
- Don't print warnings when calls are cancelled
- Handle keyboard shortcuts with Caps Lock for switching inputs

Mouse:
- Fix natural horizontal scroll

XRandR:
- Add new follow-lid behavior and tie gsd-power lid-close to XRandR
- Avoid crasher if XRandR calls fail on startup
- Fix the "rotate" button not working
- Swap axes for some (non-Wacom) tablets as well

Wacom:
- Avoid infinite recursion with a non-Wacom display
- Fix handling of Cintiq 24HD mode-switch buttons
- Mode switch LED fixes for some tablets
- Add OSD help window (see gnome-control-center for how to launch it)

Cursor:
- Only show the cursor when the mouse gets used

Housekeeping:
- Implement automatic purging of trash, along with a D-Bus interface for it

Print-notifications:
- Don't show strange notifications when printing

Updates:
- Fix warning on startup with PackageKit < 0.8.1

=============
Version 3.7.1
=============

Daemon:
- Provide a singleton SessionManager proxy object
- Ensure session registration happens before other idles
- Use logind for suspending and rebooting the system
- Require logind for session tracking

Input:
- Clarify hotplug command exit value handling
- Add trackball detection

Keyboard:
- Add default ibus engine for Indic locales
- Don't apply global settings for every keyboard

Mouse:
- Re-enable touchpad when mouse isn't present

Power:
- Fix "no devices" error path in gsd-backlight-helper
- Add a watchdog to keep X's builtin screen saver disabled
- Fix a number of possible crashers

Wacom:
- Add support for touchstrips and touchrings without a modeswitch

XSettings:
- Optimise xsettings changes

=============
Version 3.6.1
=============

Keyboard:
- Allow grabbing the Menu key
- Apply XKB variants and options for each IBus engine
- Don't setup legacy toolkits if IBus is missing
- Add default setup for some particular languages
- Convert old libgnomekbd and IBus configurations
- Add support for more modifiers only combinations
- Fix input switching eating the modifiers keys in some cases

Mouse:
- Fix "Locate Pointer" eating the Ctrl key
- Fix "Locate Pointer" animation showing when the Ctrl key has been used

Updates:
- Never show the user a message about cancelled transactions

Wacom:
- Fix LEDs switching for some tablet models

Housekeeping:
- Fix possible crashers on exit

Color:
- Fix possible crashers on exit

=============
Version 3.6.0
=============

Keyboard:
- Create sources from the X layouts if the configuration is empty
- Always do that in GDM, so system-wide layouts work
- Add modifiers-only shortcuts to switch input sources

==============
Version 3.5.92
==============

Keyboard:
- Don't block getting the IBus global engine
- Don't touch the XKB layout if no input sources were configured
- Fix gtk+ IM module getting set to IBus for XKB sources

Media keys:
- Make "toggle brightness" work

Color:
- Don't warn about non-existent DMI file

Power:
- Fix some instances where an external screen would turn off

Wacom:
- Require wacom 0.6 to fix bugs with some tablets

==============
Version 3.5.91
==============

Mouse:
- Fix natural-scroll not working until switched off and on again

Keyboard:
- Don't handle IBus for fallback, it will use the same UI it always did
- Hook IBus support for legacy applications

Power:
- Do not attempt to change the brightness of an output that was disabled
- Fix idle blank and sleep timeout

==============
Version 3.5.90
==============

Power:
- Fix D-Bus path of the screensaver

Mouse:
- Add support for natural scroll for touchpads

Keyboard:
- Apply XKB options

Wacom:
- Implement the "switch monitor" combination

And updated translations

=============
Version 3.5.6
=============

Build:
- Add optional man page
- List plugin schemas as children of the main schema

Updates:
- Remove unused code
- Avoid compilation warnings due to PackageKit API changes

Mouse:
- If one device was ignored, we would ignore all the devices

Smartcard:
- Don't try to use smartcard drivers that didn't load

Keyboard:
- Require ibus 1.4.99 for ibus support

Wacom:
- Avoid a warning at login

=============
Version 3.5.5
=============

* Add test applications for a number of plugins

Color:
- Fix notification-related memory leaks

Keyboard:
- Add support for switching to IBus input methods

Wacom:
- Fix crasher related to screen tablets
- Do not rotate "pad" devices
- Apply display rotation to device that's mapped to it
- Make shortcuts that require Shift work as expected
- Re-apply calibration and aspect-ratio when the screen changes
  but don't apply it to touch devices

Housekeeping:
- Fix notification-related memory leaks

Updates:
- Remove unused settings
- Remove a number of unused notifications
- Don't ever live-update packages in the session
- Fix a number of memory leaks
- Prevent crash if a device that requires a firmware is removed before the
  firmware search completes

=============
Version 3.5.4
=============

Wacom:
- Fix crasher related to screen matching (Olivier Fourdan)

Printers:
- Don't block the session with unreachable printers

=============
Version 3.5.3
=============

Keyboard A11y:
- Don't crash when changing large print in fallback mode
- Link to an existing help page

Housekeeping:
- Support new XDG thumbnail directory locations

Keyboard:
- Don't crash if LANG is empty

Media-keys:
- Make <Super> keyboard shortcuts work again
- Use systemd to shutdown or suspend if available

Mouse:
- Only inhibits mouse clicks and scrolls with syndaemon

Power:
- End the lid-close safety timer when the lid gets opened
- Update fallback status icon on icon state change
- Don't leak notifications
- Avoid duplicate translations
- Use systemd to shutdown or suspend if available
- Don't enable backlight helper if GUdev is not available

Updates:
- Adapt to new upstream property name
- Add a notification for offline updates

Wacom:
- Update display mapping on monitor changes
- Flag unknown devices created from fallback
- Add keep aspect ratio option
- Use GnomeRROutput instead of GnomeRROutputInfo
- Match built-in monitor

XRandr:
- Explicitly set clone state variable when generating monitor configs

=============
Version 3.5.2
=============

- Remove ability to D-Bus activate (Ray Strode)

Media-keys:
- Get proper gnome-keyring environment (Bastien Nocera)
- Simplify the OSD code (Bastien)
- Add keybindings to switch input sources (Rui Matos)

Mouse:
- Fix applying settings to newly added touchpads (Owen Taylor)
- Reduce default touchpad deactivation to 1s (Nicolas Dufresne)

Housekeeping:
- Split out 'ingnore unix mount' code (Bastien)

Keyboard:
- Always apply xmodmap (Sergey V. Udaltsov)
- Lots of cleanups (Bastien)
- Apply XKB layouts ourselfs and stop relying on libgnomekbd (Rui Matos)

Power:
- Disconnect from upower signals when needed (Richard Hughes)
- Add org.gnome.settings-daemon.plugins.power.lid-close-suspend-with-extrnal-monitors
  key to allow forcing suspend on lid close (Paolo Bonzini)

Print:
- Fix setting of default media size (Marek Kasik)
- Don't create an unused proxy object (Matthias Clasen)
- Speed up initialization (Matthias)

Updates:
- Automatically download updates rather than installing them (Richard)

Wacom:
- Disable wacom support on s390 (Dan Horák)
- Disable wacom support on non-linux (Antoine Jacoutot)
- Don't put touchscreens in relative mode (Timo Aaltonen)
- Make tablet configuration per-machine (Bastien)

Color:
- Be quiet about unloadable profiles (Richard)

Translations:
- Catalan
- Crimean Tatar
- Dutch
- Galician
- German
- Hebrew
- Italian
- Kannada
- Norwegian bokmål
- Slovenian
- Swedish

=============
Version 3.4.0
=============

Wacom:
- Check if the "last-stylus" property has been set (Olivier Fourdan)

Translations:
- Simplified Chinese (zh_CN) (YunQiang Su)
- Hindi (Chandan Kumar)
- Belarusian (Ihar Hrachyshka)
- Brazilian Portuguese (Jonh Wendell)
- French (Bruno Brouard)
- Hebrew (Yaron Shahrabani)
- Lithuanian (Žygimantas Beručka)
- Portuguese (Duarte Loreto)
- Telugu (Sasi Bhushan)
- Traditional Chinese (Chao-Hsiung Liao)
- Vietnamese (Nguyễn Thái Ngọc Duy)
- Ukranian (Daniel Korostil)

==============
Version 3.3.92
==============

Color:
- Apply the color profile even if the device has an invalid EDID (Richard Hughes)
- Create a color device even if the device has an invalid EDID (Richard Hughes)
- Don't use the username in the profile ID, it's optional and not-required (Richard Hughes)

Common:
- Add hint on how to set the script path (Bastien Nocera)
- Fix library linkage on Mageia (Jani Välimaa)
- Support explicitly setting G_MESSAGES_DEBUG (Martin Pitt)

Media Keys:
- Avoid hard-coded shortcuts not working (Bastien Nocera)
- Call Shutdown for the logout action (Bastien Nocera)

Mouse:
- Stop syndaemon when settings-daemon dies (Martin Pitt)

Power:
- Do not emit DBus interface change signals when doing the idle dim (Richard Hughes)
- Don't print a message when no backlights are detected (Richard Hughes)
- Failing to clear DPMS timeouts should not be fatal (Alexandre Rostovtsev)
- Fix broken abs_to_percentage() logic (Cosimo Cecchi)
- Lazily connect to gnome-screensaver (Martin Pitt)
- Lock the screensaver if the lid is closed and lock is enabled (Richard Hughes)
- Make the idle dim time 90 seconds to match OSX (Richard Hughes)

Print Notifications:
- Add test tool (Lars Uebernickel)
- Don't unref floating GVariant (Marek Kasik)

Wacom:
- Add README about configuration storage (Bastien Nocera)

XRandR:
- Fix the rotate display button not working (Sjoerd Simons)
- List external display only before internal only (Bastien Nocera)

XSettings:
- Add README.xsettings about overrides (Ryan Lortie)
- Add test-xsettings program (Ryan Lortie)
- Add xsettings_setting_get() accessor (Ryan Lortie)
- Add XSETTINGS_VARIANT_TYPE_COLOR macro (Ryan Lortie)
- Always call xsettings_setting_set() (Ryan Lortie)
- Don't return XSettingsResult codes (Ryan Lortie)
- Introduce 'tiers' of XSettings (Ryan Lortie)
- Load overrides on startup (Ryan Lortie)
- Remove global 'settings' list (Ryan Lortie)
- Switch manager to GLib memory functions (Ryan Lortie)
- Switch to GVariant for value storage (Ryan Lortie)
- Use GHashTable in the xsettings manager (Ryan Lortie)
- Wire overrides into GSettings (Ryan Lortie)

Translations:
- Belarusian (Ihar Hrachyshka, Kasia Bondarava)
- British English (Bruce Cowan)
- Bulgarian (Alexander Shopov)
- Catalan (Joan Duran)
- Catalan (Valencian) (Carles Ferrando)
- Czech (Adam Matoušek, Marek Černocký)
- Finnish (Timo Jyrinki)
- Galician (Fran Diéguez)
- Gujarati (Sweta Kothari)
- Hungarian (Gabor Kelemen)
- Korean (Changwoo Ryu)
- Latvian (Anita Reitere)
- Norwegian bokmål (Kjartan Maraas)
- Russian (Yuri Myasoedov)
- Serbian (Мирослав Николић)
- Slovenian (Matej Urbančič)
- Traditional Chinese (Cheng-Chia Tseng)
- Vietnamese (Nguyễn Thái Ngọc Duy)
- Punjabi (A S Alam)
- Ukranian (Daniel Korostil)

==============
Version 3.3.91
==============

Color:
- Fix warning with non-present devices
- Make displays without EDID data use the correct device ID
- Create the correct device ID for EDIDs with no text data
- Fix EDID checksum generation

Power:
- Emit a Changed() signal when the backlight changes
- Don't overflow when pressing the keyboard brightness button

Media-keys:
- Make Alt+Print appear as Alt+Print not Alt+SysRq

Wacom:
- Add support for mode switch buttons, touchrings, touchstrips,
  and light up the LEDs appropriately
- Add support for current tool ID from Wacom driver
- Fix possible crasher setting pressure curve or display area
- Force touchpads to use relative mode and ignore mode changes
- Fix double-event generation
- Fix installation problems with libexecdir == libdir
- Make monitor == -1 reset the display configuration

================
Version 3.3.90.1
================

Build:
- Fix build with --enable-systemd

==============
Version 3.3.90
==============

Build:
- Remove last requirement for dbus-glib
- Remove use of deprecated g_thread_init()
- Fix linking with -Bsymbolic

Wacom:
- Add tablet button listing and settings
- Add display mapping

Keyboard:
- Fix blinking num-lock in some circumstances

Color:
- Set _ICC_PROFILE correctly when there is no primary device specified

Power:
- Fix possible crasher in backlight helper on error

=============
Version 3.3.5
=============

Build:
- Remove unused date & time mechanism. gnome-control-center
  uses a different API, provided by systemd on some systems.

A11y keyboard:
- Reduce the number of settings updates on startup

Power:
- Require a newer upower
- Optionally use systemd to shutdown when power is low
- Use GDBusProxy-compatible PropertiesChanged signal
- Fix "<br>" appearing in notification popups

Wacom:
- Add a way to get/set the screen associated with a tablet
- Don't crash when using a generic tablet
- Add support for the puck and touch device types
- Add support for enumerating tablet buttons

Printers:
- Also notify for unknown error reasons
- Unify printer name usage

Color:
- Set the brightness of the display if it was saved as
  metadata in the color profile

Media keys, XSettings, Updates:
- Fix possible crashes on exit

Housekeeping, Wacom, XSettings:
- Fix memory leaks

Media keys:
- Add screenshot keyboard shortcuts

Keyboard:
- Don't save num-lock state when caps-lock changes

Automounter:
- Optionally use systemd to check for active seat

=============
Version 3.3.4
=============

Build:
- Fix distribution of a pre-processed desktop file

Daemon:
- Fix --debug not working
- Remove gnome_settings_session_get_screen() and
  gnome_settings_session_get_upower_client(), as
  the underlying functions return singletons

Color:
- Fix some screen setups not being color corrected

XRandR:
- Better handling of docking stations and plugging of
  external monitors (for suspend, and turning off monitors
  to work as designed)

Wacom:
- Fix loading of the plugin
- Fix GSettings read/write for per-tablet/per-styli configs
- Export more tablet and stylus metadata

===============
Version 3.3.3.1
===============

Wacom:
- Fix referenced module name (Frederic Peters)

=============
Version 3.3.3
=============

Build:
- Require GTK+ 3.3.4 (for key accel parsing)
- Require XI2 (for wacom support)

Common:
- Remove unused X key event code (Bastien)

Wacom:
- Lots of infrastructure buildup that I can't really
  summarize here (Bastien Nocera)
- Rename plugin to avoid name clash with libwacom (Bastien)
- Use libwacom to get tablet metadata (Bastien)
- Implement per-device and per-stylus settings (Bastien)

Power:
- Add the vendor name to the battery recall
  warning (Dominique Leuenberger) (#664418)
- Add automatic dimming of keyboard backlight (Alex Murray)
Print:
- Prevent crashes when cups sends malformed
  D-Bus signals (Lars Uebernickel) (#665689)

XSettings:
- Set GtkShellShowsAppMenu xsetting when the shell is running (Colin Walters)


Translations:
 Hebrew
 Norwegian bokmål
 Romanian
 Spanish

=============
Version 3.3.2
=============

Common:
- Remove left-over debug (Bastien Nocera) (#660073)
- Fix handling of <Primary> (Bastien Nocera)
- Update required gnome-desktop version (Bastien Nocera)
- Return opcode when detecting XInput2 (Bastien Nocera)
- Add helper to get the input device node (Bastien Nocera)
- Use XInput2 to capture and match keys (Bastien Nocera)
- Use GTK+ functions instead of own impl (Bastien Nocera) (#663343)
- Fix small memleak (Bastien Nocera)
- Allow to grab 'Print' without modifiers (Florian Müllner) (#663623)
- Require gsettings-desktop-schemas 3.3.0 (Bastien Nocera)

A11y keyboard:
- Port to GSettings (Bastien Nocera) (#631502)

Automount:
- Call bind_textdomain_codeset() (Bastien Nocera)

Color:
- Do not load all the color devices twice at startup (Richard Hughes)
- Don't assign the same device more than once at startup (Richard Hughes)
- Fix a crash if ~/.local is deleted at runtime (Richard Hughes) (#660664)
- Simplify gcm_profile_store_mkdir_with_parents() (Bastien Nocera)
- Cancel any in-progress directory searching on plugin unload (Richard Hughes)
- Do not check for directory presence sync (Richard Hughes)
- Fix critical warning if the user disables the internal LCD screen (Richard Hughes)
- Reset the gamma tables when the screen configuration changes (Richard Hughes) (#660164)
- Unbreak loading profiles at startup (Cosimo Cecchi) (#660790)
- Do not prefix the EDID profile title with 'Default' (Richard Hughes)
- Set model and vendor to 'unknown' if not specified or unavailable (Richard Hughes)

Daemon:
- Create a reference to a GnomePnpIds object to speed up loading (Richard Hughes)

Datetime:
- Fix build requirements (Bastien Nocera)

Media keys:
- Use a GCancellable for g_bus_get calls so that they can be cancelled (Rodrigo Moya)
- Don't assert if the user sets the 'button-power' action to 'shutdown' (Richard Hughes)
- Don't assert if the user sets the 'button-power' action to 'nothing' (Richard Hughes)
- Only ever send signals to specific apps (Bastien Nocera)
- Document the MediaPlayerKeyPressed signal (Bastien Nocera)
- Add some D-Bus API documentation (Bastien Nocera)
- Fix OSD touchpad icon names (Bastien Nocera) (#661179)
- Fix suspend button not locking the screen (Bastien Nocera) (#660267)
- Fix the suspend key not working (Bastien Nocera) (#660267)
- Remove unused allowed-keys entry (Bastien Nocera)
- Cache the volume change event sound (Bastien Nocera)
- Update for GVC API (Bastien Nocera)
- Print warning for real errors (Bastien Nocera)
- Apply volume on the device the key came from (Bastien Nocera) (#340720)
- Add custom shortcut type (Bastien Nocera)
- Implement GConf keyboard shortcuts (Bastien Nocera) (#625228)
- Redraw volume OSD when not composited (Marien Zwart) (#660990)
- Update for gsd-keygrab API change (Bastien Nocera) (#663343)
- Move some metacity shortcuts into g-s-d (Florian Müllner) (#663623)
- Port custom keybindings to GSettings (Florian Müllner) (#631502)

Power:
- Use a GCancellable for g_bus_get calls so that they can be cancelled (Rodrigo Moya)
- Do not revert to the pre-idle brightness if idle dimming is disabled (Richard Hughes) (#660434)
- Remove some unused schema for enabling the sleep-inactive actions (Richard Hughes) (#660395)
- Clarify what a value of 0 is for sleep-inactive-x-timeout (Richard Hughes)
- Do not sleep-on-idle by default (Richard Hughes)
- Simplify hiding/showing the status icon (Bastien Nocera)
- Ensure the DPMS state is 'on' at startup (Richard Hughes) (#660482)
- Close low-battery notification when plugged in (Florian Müllner) (#660942)
- Remove the window filter when the plugin is unloaded (Richard Hughes)
- Don't crash when setting the dim timeout when using NX (Richard Hughes) (#661000)
- Call XSyncInitialize() in case GTK+ wasn't compiled with XSync support (Richard Hughes)
- Emit 'Changed' signal to all listeners (Gary Ching-Pang Lin)
- Fix "undefined symbol: WEXITSTATUS" error (Richard Hughes) (#662020)
- Make non-urgent notifications transient (Florian Müllner) (#662711)

Printers:
- Fix build on systems without LC_PAPER (Bastien Nocera) (#660626)
- Call setlocale() (Bastien Nocera) (#660632)
- Exit gsd-printer when session ends (Marek Kasik) (#660158)
- Correct signature when calling PrinterAddOptionDefault (Marek Kasik)
- Don't show "Not connected?" when not needed (Marek Kasik)
- Unown name on the system bus when session goes idle (Marek Kasik) (#660158)
- Set requesting-user-name when getting job info (Marek Kasik)
- Show printer-state-reasons only when printing my jobs (Marek Kasik)
- Don't allow "/" in printer name (Marek Kasik) (#661774)
- Make notifications resident (Marek Kasik)
- Fix a leak (Marek Kasik)

Smartcard:
- Remove unnecessary translations (Bastien Nocera)

Xrandr:
- Use a GCancellable for g_bus_get calls so that they can be cancelled (Rodrigo Moya)

Xsettings:
- Remove workaround to deal with g-s-d not exiting correctly (Rodrigo Moya)
- Plug mem leaks (Christian Persch) (#663239)

Wacom:
- Fix possible crasher (Bastien Nocera) (#661170)
- Set cursor devices to be in relative mode by default (Jason Gerecke) (#662977)
- Add classes to manage settings and properties (Bastien Nocera)

Translations:
- ast (Xandru Armesto)
- de (Mario Blättermann)
- eo (Kristjan SCHMIDT)
- es (Daniel Mustieles, Jorge González)
- gl (Fran Dieguez)
- lt (Algimantas Margevičius)
- nb (Kjartan Maraas)
- nl (Redmar, Wouter Bolsterlee)
- or (Manoj Kumar Giri)
- sl (Matej Urbančič)
- sv (Daniel Nylander)
- te (krishnababu k)
- uk (Daniel Korostil)
- vi (Nguyễn Thái Ngọc Duy)

=============
Version 3.2.0
=============

Power:
- Correctly put the screen and computer to sleep when idle (Richard Hughes) (#659066)

Translations:
- ca (Joan Duran, Gil Forcada)
- ca@valencia (Carles Ferrando)
- da (Flemming Christensen)
- eu (Inaki Larranaga Murgoitio)
- hu (Gabor Kelemen)
- ja (OKANO Takayoshi)
- ko (Changwoo Ryu)
- or (Manoj Kumar Giri)
- ru (Alexandre Prokoudine, Yuri Myasoedov)

==============
Version 3.1.92
==============

A11Y keyboard:
- Show the a11y dialogue on right-click (Bastien Nocera) (#564171)

Color:
- Be less chatty when creating duplicate profiles (Richard Hughes)
- Do not segfault when doing fast-user-switching into a new account (Richard Hughes) (#736846)
- Use a username suffix on the profile ID (Richard Hughes) (#736846)
- Do not show a warning when switching to a new user account (Richard Hughes)
- Use the correct profiles when fast user switching (Richard Hughes)
- Fix linking (Matthias Clasen) (#659086)

Common:
- Add helper to list disabled devices (Bastien Nocera)
- Clean up X11 library dependencies (Bastien Nocera) (#657178)
- Bump colord dependency (Rodrigo Moya)

Datetime:
- Allow chrony to be used on Fedora (Tomas Bzatek) (#655119)
- Add NTP support for SUSE variants (Vincent Untz) (#654970)

GConf:
- Plug some memory leaks (Rodrigo Moya)
- Disconnect callbacks when cleaning up (Rodrigo Moya)

Keyboard:
- Remember and apply NumLock status (Bastien Nocera) (#631989)

Media keys:
- Don't show a level when muted (Bastien Nocera) (#644537)
- Fix keyboard brightness (Alex Murray) (#658689)
- Use the same "Music" mime-type as g-c-c (Bastien Nocera)
- There's no Beagle anymore (Bastien Nocera)
- Use gtk_show_uri() to launch nautilus (Bastien Nocera)
- Clean up app launching (Bastien Nocera) (#141379)
- Clean up upower req (Bastien Nocera)
- Remove unused empty LIBS linkage (Bastien Nocera)
- Fix compile-time warning (Bastien Nocera)
- Move keyboard brightness icon here (Bastien Nocera)
- Remove OSD icons (Bastien Nocera)

Mouse:
- Add more debug for "touchpad disabled" (Bastien Nocera)
- Try harder to re-enable devices (Bastien Nocera) (#656397)

Power:
- Make ABS_TO_PERCENTAGE warn on invalid input (Bastien Nocera) (#657364)
- Correctly check for helper exit status (Bastien Nocera)
- Avoid warnings without backlights (Bastien Nocera)
- Do not connect to signals if we failed to connect (Richard Hughes)
- Don't crash if we try to calculate the idle state before connected to gnome-session (Richard Hughes) (#657917)
- Be less chatty when optional hardware is not attached (Richard Hughes) (#658613)
- Fix a critical warning when getting the session inhibit state (Richard Hughes)
- Do not handle the idle state transaction when the session is not active (Richard Hughes) (#658568)
- Don't fall through the switch statement when shutting down (Richard Hughes) (#659202)
- Do not leak the icon when getting device status (Richard Hughes) (#659213)
- Protect against a potential SIGFE (Richard Hughes) (#659205)
- Do not emit multiple 'Changed' signals when recalculating (Richard Hughes) (#659204)
- Do not use G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES when we want to read properties (Richard Hughes) (#659066)
- Fix compilation without libcanberra-gtk (Bastien Nocera)

Printers:
- Use the best PPD for new printer (Marek Kasik) (#658544)
- Style fixes (Bastien Nocera)

Updates:
- Ignore virtual mountpoints when looking for external media (Richard Hughes) (#658282)
- Use the correct icons in the notifications (Richard Hughes)

Translations:
- de (Mario Blättermann)
- en_GB (Bruce Cowan)
- es (Jorge González, Daniel Mustieles)
- fi (Timo Jyrinki)
- fr (Bruno Brouard)
- he (Yaron Shahrabani)
- it (Luca Ferretti)
- ja (Jiro Matsuzawa)
- lt (Aurimas Černius)
- lv (Rudolfs Mazurs)
- pl (Piotr Drąg)
- pt (Duarte Loreto)
- sl (Matej Urbančič)
- sr (Мирослав Николић)

==============
Version 3.1.91
==============

Common:
- Don't list XINPUT_LIBS twice, move X11_LIBS from LDFLAGS to LIBADD (Stefan Sauer)

Color:
- Ensure the 'Recalibration required' notification has a custom app name (Richard Hughes)
- Fix a critical warning on startup (Richard Hughes)
- Do not notify to recalibrate on every startup (Richard Hughes)

Daemon:
- Fix possible double-free outside gnome-session (Bastien Nocera)

Gconf:
- Double check stuff we add to the hash table (Rodrigo Moya) (#658055)

Housekeeping:
- NULL-terminate the ignore-paths array (Bastien Nocera) (#657849)

Power:
- Do not exit gnome-settings-daemon if upower fails to load (Richard Hughes)
- Fix impossible to hit error paths (Bastien Nocera) (#657364)
- Fix BRIGHTESS_STEP_AMOUNT calculation macro (Kamal Mostafa)
- Do most of the work in _start () (Bastien Nocera) (#657924)
- Never idle-dim the display to a higher brightness level (Richard Hughes) (#658144)

Printers:
- Remove redundant code (Marek Kasik)

Xsettings:
- Handle rgba-order key (Bastien Nocera) (#657525)
- Don't poke at an empty hashtable (Bastien Nocera) (#657464)
- Fix a stray brace (Owen Taylor)

Translations:
- be (Ihar Hrachyshka)
- cz (Marek Černocký)
- pt_BR (Og B. Maciel)
- ta (Dr.T.Vasudevan)

==============
Version 3.1.90
==============

A11Y-keyboard:
- Use GIO's DBus API instead of dbus-glib's (Rodrigo Moya)

Color:
- Don't use uninitialized GErrors (Matthias Clasen)
- Do not set an age for display and printer profiles (Richard Hughes)
- Remove the ability to disable notifications (Richard Hughes)
- Do not search user-icc directories if they do not exist (Richard Hughes) (#657484)

Daemon:
- Add Unity to OnlyShowIn value for autostart desktop file (Michael Terry) (#654919)

Media keys:
- Don't go up to 11 (Bastien Nocera) (#649411)

Mouse:
- Be more careful to avoid segfaults (Matthias Clasen) (#657462)

Power:
- Ensure the critical battery beep is stopped when the AC is inserted (Richard Hughes)
- Ensure we lock the screen before suspending on lid close (Richard Hughes) (#655924)
- Add mention of bug 652183 (Bastien Nocera)

Smartcard:
- Use GIO's DBus API instead of dbus-glib's (Rodrigo Moya)

Updates:
- Do not log a warning if the firmware-missing file does not exist (Richard Hughes)
- Do not log a warning at startup if getting the upgrade list is not supported (Richard Hughes) (#657483)

Translations:
- bg (Alexander Shopov)
- id (Andika Triwidada)
- pa (A S Alam)
- ta (Dr.T.Vasudevan)
- zh_CN (Aron Xu)

=============
Version 3.1.5
=============

A11y-keyboard:
- Enable plugin by default (Rodrigo Moya) (#656287)

Automount:
- Link against the private profiler library (Cosimo Cecchi)
- Add some missing includes (Cosimo Cecchi)
- Don't ship the .in file, just the .in.in one (Bastien Nocera)
- Silence two trivial -Wformat-security warnings (Richard Hughes)

Color:
- Do not show multiple warnings if colord is not available at runtime (Richard Hughes)
- Fix a potential crash when unloading the color plugin (Richard Hughes)
- Fix a potential crash if creating the per-user ICC directory fails (Richard Hughes)
- Make lcms2 a hard dependency (Richard Hughes)

Housekeeping:
- Use new g_format_size() instead of g_format_size_for_display() (Javier Jardón)

Media keys:
- Don't preserve the path after filling (Cosimo Cecchi)
- Remove the half pixel offset from the progressbar fill (Cosimo Cecchi)
- Always round the render coordinates for media icons (Cosimo Cecchi)

Power:
- Add the idle actions (Richard Hughes)
- Show a status icon when in fallback mode (Richard Hughes)
- Respect the idle-dim-ac and idle-dim-battery configuration keys (Richard Hughes)
- Add a backlight helper, as xbacklight isn't always present (Richard Hughes)
- Fall back to the backlight helper if xbacklight is not available (Richard Hughes)
- Fix a potential crash when unloading the power plugin (Richard Hughes)
- Ensure we return the new percentage when changing the brightness (Richard Hughes)

Updates:
- Do not use deprecated PackageKit #defines (Richard Hughes)

Wacom:
- Invert TPCButton setting (Peter Hutterer) (#656372)

Translations:
- es (Daniel Mustieles)
- fa (Arash Mousavi)
- gl (Fran Dieguez)
- he (Yaron Shahrabani)
- ru (Yuri Kozlov)
- sl (Andrej Žnidaršič)
- sv (Daniel Nylander)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)

=============
Version 3.1.4
=============

A11y-keyboard:
- Do proper cleanup when the plugin is stopped (Rodrigo Moya)

Automount:
- Turn the automount plugin in a separate binary (Cosimo Cecchi) (#653521)
- Fix distcheck of .desktop.in.in file (Rodrigo Moya)

Common:
- Fix grabbing of multimedia keys (Chris Coulson)

Daemon:
- Set locale environment on gnome-session as early as possible (Rodrigo Moya) (#654182)
- Plug memory leak (Rodrigo Moya)

Datetime:
- Use friendlier wording for date & time policykit prompt (Michael Terry) (#645951)

Media keys:
- Add button handling code from gnome-power-manager (Richard Hughes)

Power:
- Add power plugin to replace g-p-m (Richard Hughes)

Translations:
- be (Ihar Hrachyshka)
- cz (Marek Černocký)
- de (Mario Blättermann)
- es (Daniel Mustieles, Jorge González, Sebi Kul, Francisco Molinero)
- gl (Fran Dieguez)
- he (Yaron Shahrabani)
- lt (Aurimas Černius)
- lv (Rudolfs Mazurs)
- nb (Kjartan Maraas)
- pa (A S Alam)
- tr (Muhammet Kara)

=============
Version 3.1.3
=============

Common:
- Use defines instead of variables for ranges (Bastien Nocera)
- Fix function keys not being grabbed (Bastien Nocera) (#649222)
- Allow the "Pause" key to be used (Bastien Nocera) (#653524)

Clipboard:
- Fix incremental sending from the clipboard manager (Cosimo Cecchi) (#652609)

Color:
- Fix a potential buffer-overflow when converting to wide text (Richard Hughes)

Keyboard:
- Use the same kbd layout menu labels as Gnome Shell (Jeremy Bicha) (#652836)
- Add missing "Settings" to the string (Bastien Nocera)
- Fix menu items actions (Bastien Nocera)

Media keys:
- Use constant for icon size in OSD (Bastien Nocera)
- Remove progress bar borders (Bastien Nocera) (#652321)

Mouse:
- Check device is a touchpad before enabling/disabling it (Rodrigo Moya)

Translations:
- be (Ihar Hrachyshka)
- es (Jorge González)
- gl (Fran Diéguez)
- he (Yaron Shahrabani)
- nb (Kjartan Maraas)
- sl (Matej Urbančič)
- sr (Мирослав Николић)

=============
Version 3.1.2
=============

Common:
- Don't try to convert show-keyboard-leds-indicator in gnome-settings-daemon.convert
  (Chris Coulson)
- Add touchscreen detection (Bastien Nocera)
- Add X property setting helper (Bastien Nocera)
- Add code to detect accelerometers (Bastien Nocera)
- Add better error reporting for egg key parsing (Bastien Nocera)
- Add code to allow disabling input devices (Bastien Nocera)

Color:
- Add new color plugin (Richard Hughes)

Cursor:
- Hide cursor on tablets with only a touchscreen (Bastien Nocera) (#650604)
- Show the cursor again on exit (Bastien Nocera)
- Fix XFixes version checking (Bastien Nocera)
- Ignore PS/2 mice as well (Bastien Nocera)
- Fix checking for extension pointer (Bastien Nocera)

Datetime:
- Fix ntp logic on Debian to include ntpdate as well as ntpd (Michael Terry) (#644821)

GConf:
- Add missing schema for org.gnome.settings-daemon.plugins.gconf (Rodrigo Moya) (#652200)

Keybindings:
- Complete update to egg key parsing change (Florian Müllner)

Media keys:
- Only start D-Bus when _start() is called (Bastien Nocera)
- Simplify touchpad OSD (Bastien Nocera)
- Hardcode the "toggle touchpad" button (Bastien Nocera)
- Remove old-style OSD (Bastien Nocera)
- Always use the primary monitor for display (Bastien Nocera) (#650159)
- Make sound changes quiet with Alt (Bastien Nocera) (#651704)

Mouse:
- Use new disable/enable device code (Bastien Nocera)

Orientation:
- Add orientation plugin (Bastien Nocera)

Updates:
- Fix a string that is hard to translate (Richard Hughes) (#645749)

Wacom:
- Enable wacom touch key by default (Peter Hutterer)
- Use property settings helper in common/ (Bastien Nocera)
- Typedef the Wacom device types (Bastien Nocera)

Xrandr:
- Switch touchscreen rotation as wel (Bastien Nocera)
- Fix small memory leak on shutdown (Bastien Nocera)
- Remove the functionality to call gcm-apply when outputs change (Richard Hughes)
- Remove rotation handling for wacom tablets (Bastien Nocera)

Translations:
- bg (Alexander Shopov)
- ca@valencia (Carles Ferrando)
- cz (Marek Černocký)
- de (Mario Blättermann)
- es (Jorge González, Daniel Mustieles)
- fa (Arash Mousavi)
- gl (Fran Diéguez)
- he (Yaron Shahrabani)
- nb (Kjartan Maraas)
- pl (Piotr Drąg)
- sl (Matej Urbančič)

=============
Version 3.1.1
=============

Common:
- Add input-helper test application (Bastien Nocera)
- Fix syndaemon never getting started (Edward Sheldrake) (#648885)
- Add meaningful app names to notifications from plugins (Matthias Clasen) (#648911)

Datetime:
- Simplify NTP handling for distros (Bastien Nocera)
- Fix setting NTP on Fedora 15 (Bastien Nocera)

Media keys:
- Show a popup when no media player is running (Bastien Nocera)
- Use symbolic icon for Eject action (Bastien Nocera) (#649523)

Mouse:
- Clean up error handling (Bastien Nocera)
- Don't crash if mouse has no FeedbackStates (Bastien Nocera) (#649539)

Updates:
- Fix the interface name (Richard Hughes)
- Deal with absence of gnome-session gracefully (Matthias Clasen)

Xrandr:
- Never use a notification for errors (Bastien Nocera) (#648303)

Translations:
- es (Daniel Mustieles)
- he (Yaron Shahrabani)
- ug (Abduxukur Abdurixit)

=============
Version 3.0.3
=============

Common:
- Use defines instead of variables for ranges (Bastien Nocera)
- Fix function keys not being grabbed (Bastien Nocera) (#649222)
- Allow the "Pause" key to be used (Bastien Nocera) (#653524)
- Fix grabbing of multimedia keys (Rodrigo Moya)

Wacom:
- Enable wacom touch key by default (Peter Hutterer) (#651020)

Translations:
- bg (Alexander Shopov)
- ca (Gil Forcada)
- ca@valencia (Carles Ferrando)
- cz (Marek Černocký)
- de (Mario Blättermann)
- es (Daniel Mustieles)
- gl (Fran Diéguez)
- pl (Piotr Drąg)
- sl (Matej Urbančič)
- sr (Мирослав Николић)
- sv (Daniel Nylander)

=============
Version 3.0.2
=============

Common:
- Fix syndaemon never getting started (Edward Sheldrake) (#648885)
- Fix example input device script (Bastien Nocera)
- Don't try to convert show-keyboard-leds-indicator in gnome-settings-daemon.convert (Chris Coulson)

Date & Time:
- Fix setting NTP on Fedora 15 (Bastien Nocera) (#648556)

Media keys:
- Use symbolic icon for Eject action (Bastien Nocera) (#649523)

Mouse:
- Don't pass NULL to device_is_touchpad (Matthias Clasen) (#649214)
- Clean up error handling (Bastien Nocera)
- Don't crash if mouse has no FeedbackStates (Bastien Nocera) (#649539)

XRandr:
- Never use a notification for errors (Bastien Nocera) (#648303)

Translations:
- fa (Arash Mousavi)
- ug (Abduxukur Abdurixit)

=============
Version 3.0.1
=============

Updates: Fix firmware auto-installation
Media-keys: Fix possible crash when sound device is removed

Updated translations

===============
Version 3.0.0.1
===============

Keyboard: Fix crash showing the keyboard layout in fallback mode

Updated translations

=============
Version 3.0.0
=============

Common:
- Change default inactive sleep on battery to suspend (William Jon McCann)

Keyboard:
- Clarify actual units used for repeat rate (Bastien Nocera) (#646241)

Printers:
- Cancel CUPS' subscription policy (Marek Kasik)
- Make CUPS' subscriptions expirable (Marek Kasik)
- Remove old subscriptions (Marek Kasik)

XSettings:
- Try a few times to start the xsettings manager (Rodrigo Moya) (#634988)

Translations:
- bn (Jamil Ahmed)
- ca (Jordi Serratosa)
- cz (Marek Černocký)
- da (Ask H. Larsen)
- de (Christian Kirbach, Wolfgang Stöggl)
- en_GB (Bruce Cowan)
- eu (Iñaki Larrañaga Murgoitio)
- he (Yaron Shahrabani)
- hi (Rajesh Ranjan)
- hu (Gabor Kelemen)
- id (Dirgita)
- ja (Takayuki KUSANO)
- ko (Changwoo Ryu)
- lv (Rudolfs Mazurs)
- ml (Ani Peter)
- nl (Wouter Bolsterlee, Hannie Dumoleyn)
- pl (Piotr Drąg)
- pt_BR (Djavan Fagundes)
- ru (Yuri Myasoedov)
- sr (Miroslav Nikolić)
- sv (Daniel Nylander)
- ta (Dr.T.Vasudevan)
- ug (Abduxukur Abdurixit)
- vi (Nguyễn Thái Ngọc Duy)
- zh_CN (Aron Xu)

===============
Version 2.91.93
===============

Power:
- Don't suspend the computer when idle by default
- Add back "interactive" option

Date & Time:
- Check for the correct PolicyKit action

Accessibility settings:
- Enable plugin by default, so that screen readers and
  on-screen keyboards work out-of-the-box

And loads of translations

===============
Version 2.91.92
===============

Common:
- Update priority of a few plugins (Bastien Nocera)
- gdk_display_get_device_manager() retval handling (Bastien Nocera) (#685020)
- Improve CUPS detection (Saleem Abdulrasool) (#644063)
- Make sure G_LOG_DOMAIN is set to the plugin name for each plugin (Richard Hughes)
- Make sure we mop up stray idle handlers (Bastien Nocera)
- Simplify input helper (Bastien Nocera)
- Launch a custom script on input devices (Peter Hutterer) (#635486)

Daemon:
- Fix possible crasher on exit (Bastien Nocera) (#639347)

Media keys:
- Update gvc copy/paste from control-center (Bastien Nocera)
- Make volume go up to 11 (Bastien Nocera) (#631030)
- Simplify volume keys handling (Sjoerd Simons) (#640963)

Mouse:
- Fix possible memory leak (Bastien Nocera)
- Implement touchpad motion settings (Bastien Nocera) (#642474)
- Fix shape handling in locate-pointer (Gerd Kohlberger) (#645092)
- Handle touchpad handedness changing (Bastien Nocera)
- Don't apply any settings if XInput isn't present (Bastien Nocera)
- Separate device dependent calls (Bastien Nocera)
- Remove duplicated calls on start (Bastien Nocera)
- Remove unused supports_xinput_devices() call (Bastien Nocera)
- Make sure syndaemon is killed when touchpad disappears (Bastien Nocera)
- Hook up input device customisation script (Bastien Nocera)
- Fix double-free when handling one-button touchpad (Bastien Nocera)
- Fix crash in GHashTable usage (Bastien Nocera)

Power:
- Set the default display off time to be same as session idle time (William Jon McCann)

Updates:
- g_get_real_time() returns microseconds, not seconds since the epoch (Richard Hughes)
- Ensure te user gets the updates notification if it's never been shown (Richard Hughes)
- Ensure the user gets notified of normal updates at the correct interval (Richard Hughes)

Translations:
- ar (Khaled Hosny)
- de (Mario Blättermann)
- el (Γιώργος Στεφανάνης)
- et (Mattias Põldaru)
- fr (Cyril Arnaud, Gérard Baylard, Alain Lojewski and Claude Paroz)
- gl (Fran Diéguez)
- he (Yaron Shahrabani)
- hu (Gabor Kelemen)
- lt (Gintautas Miliauskas)
- lv (Rudolfs Mazurs)
- pl (Piotr Drąg)
- ro (Lucian Adrian Grijincu)
- sl (Matej Urbančič, Andrej Žnidaršič)
- sr (Miroslav Nikolić)
- sv (Daniel Nylander)

===============
Version 2.91.91
===============

Automount:
- Fix crash when unlocking the screen saver
- Don't queue volumes when session is inactive

Housekeeping:
- Use nautilus's D-Bus API to empty the trash

Media keys:
- Add magnifier in/out keybindings
- Fix larger text/smaller text keybindings

Mouse:
- Make locate pointer feature work with GTK+ 3

Printers:
- Use new CUPS D-Bus API

Updates:
- Use auto-download updates when possible

XSettings:
- Also accept .gtk-module for GTK+ modules
- Don't set Xft.lcdfilter, it's broken
- Use "text-scaling-factor" key instead of DPI

===============
Version 2.91.90
===============

A11Y Settings:
- Add new plugin (Bastien Nocera)

Automount:
- Look if the session is active before automounting new volumes (Cosimo Cecchi)
- Disable automounting while screen is locked (Martin Pitt, Cosimo Cecchi)

Background:
- Stop pending fades if new ones initiated (Ray Strode)

Date & Time:
- Add Debian support to NTP service activation (Milan Bouchet-Valat) (#641598)
- Fix gsd_datetime_check_tz_name() never working (Bastien Nocera) (#674999)

Keyboard:
- Update for new libgnomekbd API (Sergey V. Udaltsov)
- Match shell behaviour for visibility (Bastien Nocera)
- Explicitly calling gtk_widget_show_all for kbd layout (Sergey V. Udaltsov)

Media keys:
- Fix crash when keybindings change (Bastien Nocera)
- Add more Universal Access keybindings (Bastien Nocera) (#641279)

Mouse:
- Use event driven mode for syndaemon (Pauli Nieminen) (#639623)
- Use syndaemon -K to ignore Ctrl+C and other combos  (Peter Hutterer) (#639487)

Print notification:
- Go back to using name in notifications (William Jon McCann)
- Check that cups is recent enough (Marek Kasik)

Updates:
- Add an updates plugin to integrate with PackageKit (Richard Hughes)

XSettings:
- Fix memleak, using wrong unref function (Bastien Nocera)

Translations:
- ar (Khaled Hosny)
- es (Daniel Mustieles, Jorge González)
- gl (Fran Diéguez)
- he (Yaron Shahrabani)
- it (Luca Ferretti)
- ko (Changwoo Ryu)
- nb (Kjartan Maraas)
- pa (A S Alam)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)

==============
Version 2.91.9
==============

XSettings:
- Initialize gtk-modules setting (Dan Winship)
- Support GTK/AutoMnemonics setting (Matthias Clasen)

Date & Time:
- Use a single polkit action for this (Thomas Wood)

Media keys:
- Prevent volume underflow (Sjoerd Simons, Bastien Nocera)
- Use symbolic icons for OSD (Matthias Clasen, Bastien Nocera)

Keybindings:
- Rename Accessibility keybindings to 'Universal Access' (William Jon McCann)
- Mark Accessibility keybindings as system (William Jon McCann)

Keyboard:
- Don't create kbd indicators in the shell (Sergey V. Udaltsov)
- Remove $GDM_KEYBOARD_LAYOUT handling (Bastien Nocera)
- Fix control-center invocation (Yanko Kaneti)

Housekeeping:
- Fix an untranslatable string (Cosimo Cecchi)

Print notification:
- New plugin for print notifications (Marek Kasik)
- Appearance and wording tweaks (William Jon McCann)

- Translations:
  Arabic
  Estonian
  Galician
  Hebrew
  Italian
  Japanese
  Norwegian bokmål
  Simplified Chinese
  Spanish


==============
Version 2.91.8
==============

- Connect to the right GnomeRRScreen signal

==============
Version 2.91.7
==============

- Adapt to new gnome-desktop API (Giovanni Campagna)
- Remove unused macros (Federico Mena Quintero)
- Translations:
  - de (Paul Seyfert)
  - es (Jorge González)
  - et (Ivar Smolin, Mattias Põldaru)
  - gl (Fran Diéguez)
  - nb (Torstein Adolf Winterseth)
  - pa (A S Alam )
  - sv (Daniel Nylander)
  - vi (Nguyễn Thái, Nguyen Vu Hung)
  - zh_HK (Chao-Hsiung Liao)
  - zh_TW (Chao-Hsiung Liao)

================
Version 2.91.6.2
================

- Fix a crasher with GTK+ 2.91.7 (Cosimo Cecchi)

================
Version 2.91.6.1
================

- Suppress warnings due to gdk_error_trap_pop (Cosimo Cecchi)
- Fix build with GTK+ 2.91.7 (Cosimo Cecchi)

==============
Version 2.91.6
==============

- Port to GtkStyleContext (Bastien Nocera)
- Suspend by default on battery power (Colin Walters)
- Timezone and NTP improvements (Bastien Nocera)
- Port to GtkAppChooserButton (Cosimo Cecchi)
- Port background code to GDBus (Dan Williams)
- Support multiple smartcard drivers (Ray Strode)
- Background plugin misc fixes (Tomas Bzatek, Owen W. Taylor)

================
Version 2.91.5.1
================

- Handle rename of org.gnome.media-handling (Owen W. Taylor)

==============
Version 2.91.5
==============

- Add automount plugin (Tomas Bzatek)
- Don't pass NULL strings to g_variant_new() (Bastien Nocera)
- Properly handle gnome-session EndSession signals (Cosimo Cecchi)

==============
Version 2.91.4
==============

- Add Wacom configuration plugin (Peter Hutterer)
- Add support for the XF86TouchpadOn/Off keys (Bastien Nocera)
- Move some gnome-power-manager settings, so it can
  be used in the control center (Richard Hughes)
- Only ever call g_bus_own_name() once for the main D-Bus name (BN)
- Register with gnome-session to avoid timeouts, and transition
  problems on login (BN)
- Fix possible warnings or crashers when _stop() is called without
  _start() having been completed (William Jon McCann)

==============
Version 2.91.3
==============

- Remove xrdb plugin (Bastien Nocera)
- Remove outdated GConf schemas (BN)
- Handle a11y toggle shortcut keys in media-keys (BN)
- Make volume down work when muted (BN)
- Export the "cursor-blink-timeout" XSetting
- Add test-system-timezone test program
- Fix possible crasher in media-keys (William Jon McCann)
- Make media-keys not crash when there are no listeners (BN)
- Use a notification for the low space waring in housekeeping (WJMcC)
- Make libnotify a hard-dependency (BN)
- Add a real test application for housekeeping (BN)
- Port daemon and xrandr plugin to GDBus (BN)
- Fix possible warnings in keyboard plugin (BN)
- Fix logout key shortcut not asking for a confirmation (BN)
- Don't warn about low space when over 1GB is free (BN)

================
Version 2.91.2.1
================

- Require a newer gnome-desktop with GSettings support for the background plugin
  (Tomas Bzatek)

==============
Version 2.91.2
==============

- Migration to GSettings (Bastien Nocera, Rodrigo Moya, Gerd Kohlberger,
  Carlos García Campos)
- Use MIME types for URL handlers (Rodrigo Moya)
- Fix the GSD_API_VERSION definition in configure.ac (Matthias Clasen)
- Update PolicyKit minimum requirement (Bastien Nocera)
- Remove typing break plugin (Bastien Nocera)
- Update the required version of gnome-desktop3/GTK3 (Bastien Nocera)
- Require libnotify 0.6.0 (William Jon McCann)
- KEY_SCROLL_METHOD is an enum not an int (Alban Browaeys) (#631963)
- Don't use gdk_drawable_get_screen (Alban Browaeys) (#631931)
- Fix version substitution in pkg-config file (Bastien Nocera) (#631866)
- Remove status icon for monitors (Bastien Nocera) (#631995)
- Make XInput a hard requirement (Bastien Nocera)
- Use canberra-gtk for GTK3 (Bastien Nocera)
- More network filesystems not to monitor (Josselin Mouette) (#606421)
- Fix loading plugins information (Bastien Nocera) (#631933)
- For media key, use the default application for audio/ogg (Rodrigo Moya)
- Set priority for plugins based on settings (Bastien Nocera)
- Never daemonise the "daemon" (Bastien Nocera)
- Use Gdk to get events about input devices being added (Bastien Nocera)
- Cleanup macro magic in plugin.h (Paolo Borelli) (#591798)
- Update gnome-media cut'n'paste code (Bastien Nocera) (#612024)
- Add gnome-settings-daemon man page (Joshua Cummings) (#588716)
- Remove horrible xmodmap fallback code (Bastien Nocera) (#150542)
- Remove outdated plugin (Bastien Nocera)
- Use g_timeout_add_seconds (Bastien Nocera) (#582703)
- Keyboard plugin improvements (Sergey V. Udaltsov)
- Don't choke if there are old plugins laying around (William Jon McCann)
- Check for touchpad before running syndaemon (Hernando Torque) (#632122)
- Add icon to the "Keep settings" dialogue (Bastien Nocera) (#579021)
- Add support for the enable-animation setting (Bastien Nocera) (#630535)
- Export Xft.lcdfilter for OO.o's benefit (Chris Coleman) (#631924)
- Remove XFree86 4.3.0 check (Bastien Nocera) (#632569)
- Make fontconfig a hard dependency (Bastien Nocera)
- Add GConf<->GSettings bridge plugin (Rodrigo Moya)
- Show a touchpad-disabled if no touchpad (Bastien Nocera)
- Make the "log out" key really do that (Bastien Nocera)
- If the stored configuration fails at startup, use the fallback configurations
  (Gary Lin)
- Add ability to hard-code media keys (Bastien Nocera) (#623223)
- Use $(sysconfigdir) for .ad files, since they are settings (Rodrigo Moya)
- Enable maintainer mode (Rodrigo Moya)
- Don't display the gnome-settings-daemon autostart in the startup applications
  list (Rodrigo Moya)
- Add settings key for disabling boot time configuration (Martin Pitt, Rodrigo
  Moya) (#631388)
- Don't access free'd memory if a volume is unmounted whilst the dialog is
  running (Rodrigo Moya)
- Port to GDBus (Bastien Nocera)
- Add support for more multimedia keys (Bastien Nocera)
- Handle video out keys in media-keys (Ray Strode) (#623223)
- Use virtual modifier <Super> for the Windows key (Ray Strode)
- Simplify the default XRandR behaviour (Bastien Nocera) (#634092)
- Add middle-button-enabled key (Bastien Nocera) (#633863)
- Prepare for the demise of size_request (Matthias Clasen) (#633320)
- Translations:
  - ca (Carles Ferrando)
  - de (Mario Blättermann)
  - es (Jorge González)
  - gl (Fran Diéguez)
  - he (Yaron Shahrabani)
  - ja (Takayuki KUSANO)
  - ko (Changwoo Ryu)
  - nb (Kjartan Maraas)
  - pa (A S Alam )

==============
Version 2.91.0
==============

- Give a name to the keyboard status icon (Matthias Clasen) (#610319)
- Fix include directory to match API version (Bastien Nocera)
- Add daemon path to pkg-config files (Bastien Nocera)
- Don't switch mouse buttons for XTest devices (Bastien Nocera) (#627084)
- Remove GtkObject usage (Matthias Clasen) (#630678)
- Use gtk3 draw event instead of expose-event (William Jon McCann) (#630975)
- Use gdk-pixbuf header (William Jon McCann) (#630975)
- Don't use GdkColormap (William Jon McCann)
- Use cairo regions to set input shape (William Jon McCann)
- Adapt to GnomeBG API changes (William Jon McCann)
- Use an empty region to ignore events (William Jon McCann)
- Don't destroy the cairo context in draw handler (William Jon McCann)
- Adapt to libgnomekbd API changes (Sergey V. Udaltsov)
- Translations:
  - ar (Khaled Hosny)
  - bg (Damyan Ivanov)
  - ca (Joan Duran)
  - cz (Petr Kovar)
  - gl (Fran Diéguez)

===============
Version 2.90.1
===============

- Apply keyboard a11y settings for newly plugged keyboards
- Loads of compilation fixes for GTK3
- Fix crasher when certain items are copied to the clipboard
- Silent build by default

Display:
  - Don't try to activate display configurations where all the outputs are off
  - Don't cycle through custom display configurations on XF86Display button press
  - Add logging infrastructure

================
Version 2.31.5.1
================

- Include fixes from 2.31.4.2
- Translations:
  - nb (Kjartan Maraas)

==============
Version 2.31.5
==============

- Depend on gnome-desktop-3.0 (Rodrigo Moya)
- Translations:
  - es (Jorge González)
  - gl (Fran Diéguez)
  - he (Yaron Shahrabani)
  - sl (Matej Urbančič)

================
Version 2.31.4.2
================

- Fix the binary name in the datetime DBus .service file (Thomas Wood)
- Translations:
  - gl (Fran Diéguez)
  - he (Yaron Shahrabani)

================
Version 2.31.4.1
================

- Fix the datetime DBus .service file (Thomas Wood)

==============
Version 2.31.4
==============

- Fix build for --disable-smartcard-support (Ray Strode) (#617748)
- Use gtk+-3.0 (Rodrigo Moya)
- Fix launching the display configuration tool (Matthias Clasen)
- Move clock service from gnome-panel (Rodrigo Moya, Thomas Wood)
- Define plugindir in .pc file (Rodrigo Moya)
- Translations:
  - et (Ivar Smolin)
  - lv (Rudols Mazurs)
  - nb (Kjartan Maraas)

==============
Version 2.31.3
==============

- Fixed icon names, prefixed with kbd- (Sergey Udaltsov)
- Use "show layout" dialog from libgnomekbd (Sergey Udaltsov)
- Translations:
  - et (Ivar Smolin)
  - he (Yaron Shahrabani)
  - sl (Matej Urbančič)

==============
Version 2.31.2
==============

- Fix installation of the xrandr helper binary (Jens Granseur) (#617782)
- Always dist smartcard.gnome-settings-plugin (Ray Strode) (#617748)
- Adjust XF86Display timestamps if they are out of order with RANDR
  timestamps (Chase Douglas) (#610482)
- Don't install template files into the icon theme (Matthias Clasen)
- Fix loading OSD icons when there's no SVG version (Bastien Nocera) (#618023)
- Only check for baobob if we're about to show a dialog (Ross Burton)
- Translations:
  - de (Mario Blättermann)
  - en@shaw (Thomas Thurman)
  - es (Jorge González)
  - gl (Fran Diéguez)
  - or (Manoj Kumar Giri)

==============
Version 2.31.1
==============

- Create the directory for the system's RANDR configuration (Federico Mena Quintero)
- Add the logic needed for the "Make Default" button in gnome-display-properties
  (Federico Mena Quintero)
- Use $sysconfdir for /etc installation (Rodrigo Moya)
- Replace deprecated GTK_WIDGET_STATE (Andre Klapper)
- Compile with -DGSEAL_ENABLE (Andre Klapper) (#612588)
- Use Layouts instead of Groups (Sergey Udaltsov) (#553108)
- Add smartcard plugin (Ray Strode)
- Software LED indicators (Sergey Udaltsov) (#616380)
- Use LED icons instead of files (Sergey Udaltsov)
- Translations:
  - de (Mario Blättermann)
  - en_GB (Philip Withnall)
  - es (Jorge Gonzalez)
  - gl (Francisco Diéguez)
  - mr (Sandeep Shedmake)
  - sk (Pavol Šimo)
  - sl (Matej Urbančič)
  - te (krishnababu k)

==============
Version 2.30.1
==============

- Fix keyboard indicator displaying (Martin Pitt) (#613666)
- Default to system settings for handling multiple keyboard layouts (Martin Pitt)
- Introduce gconf key that allows hiding the indicator (Sergey Udaltsov) (#612240)
  (#613666)
- Translations:
  - ca (Jordi Serratosa)
  - ca@valencia (Carles Ferrando)
  - crh (Reşat SABIQ)
  - et (Ivar Smolin)
  - kn (Shankar Prasad)
  - sl (Pavol Šimo)
  - th (Theppitak Karoonboonyanan)

==============
Version 2.30.0
==============

- Protect XInput code by ifdefs if XInput isn't available (Daniel Macks) (#611670)
- Don't play a sound when the volume doesn't change (Bastien Nocera) (#610001)
- Fix linking with pedantic linkers (Bastien Nocera) (#610244)
- Remove unused do_sleep_action function (Bastien Nocera)
- Apply all keyboard settings to new keyboards (Bastien Nocera) (#610245)
- Ensure the window is realized before we invalidate it (Richard Hughes) (#604918)
- Replace "eject" spawn with GIO code (Bastien Nocera) (#580779)
- Don't spawn xrdb (Martin Pitt) (#586276)
- Add translator hint (Jens Granseuer) (#613647)
- Disable font plugin by default (Bastien Nocera) (#613604)
- Translations:
  - bn (Jamil Ahmed)
  - da (Ask H. Larsen)
  - et (Ivar Smolin)
  - eu (Inaki Larranaga Murgoitio)
  - he (Nikos Bakaoukas)
  - hu (Gabor Kelemen)
  - ko (Changwoo Ryu)
  - lt (Gintautas Miliauskas)
  - nl (Hannie Dumoleyn, Reinout van Schouwen)
  - nn (Torstein Adolf Winterseth)
  - pa (A S Alam)
  - pt (Duarte Loreto)
  - ro (Adi Roiban)
  - sl (Pavol Šimo)
  - sr (Miloš Popović)
  - uk (Maxim V. Dziumanenko)

===============
Version 2.29.92
===============

- Translations:
  - bg (Alexander Shopov)
  - ca (Joan Duran)
  - en_GB (Bruce Cowan)
  - fi (Timo Jyrinki)
  - hu (Gabor Kelemen)
  - it (Luca Ferretti)
  - nb (Kjartan Maraas)
  - pt_BR (Antonio Fernandes C. Neto)
  - sv (Daniel Nylander)

===============
Version 2.29.91
===============

- Fn-F8 should disable/enable touch points (Peter Hutterer) (#594831)
- Always set the position of outputs, even if they are already turned on
  (Federico Mena Quintero)
- Apply keyboard settings to newly plugged in devices (Federico Mena Quintero)
  (#610245)
- Translations:
  - de (Jochen Skulj, Mario Blättermann)
  - es (Jorge González)
  - gl (Fran Diéguez)
  - ro (Lucian Adrian Grijincu)
  - sl (Matej Urbančič)
  - ta (vasudeven)
  - ru (Leonid Kanter)
  - zh_CN (Ray Wang)
  - zh_HK & zh_TW (Chao-Hsiung Liao)

===============
Version 2.29.90
===============

- Add gthread-2.0 to required modules for the daemon (Jens Granseuer) (#608217)
- Centralize the use of gnome_rr_config_apply_with_time (Federico Mena Quintero)
- Translations:
  - et (Ivar Smolin)
  - sl (Matej Urbančič)

==============
Version 2.29.6
==============

- Don't allow left-handed setting for single-button touchpads (Peter Hutterer)
- Don't die on X servers without XKB (Matthias Clasen) (#604651)
- Translations:
  - bg (Alexander Shopov)
  - bn (Jamil Ahmed)
  - es (Jorge González)
  - nb (Kjartan Maraas)
  - ta (vasudeven)

==============
Version 2.29.5
==============

- Fix variant handling in $GDM_KEYBOARD_LAYOUT (Martin Pitt) (#596897)
- Tighten check for XInput (Jens Granseuer)
- Fix bluriness in level bar, and popup (Bastien Nocera) (#567249)
- Remove unused variable (Bastien Nocera) (#599904)
- Honour libexecdir when spawning gsd-locate-pointer (Jens Granseuer) (#599209)
- Allow left-handed setting for touchpads (Peter Hutterer)
- Use a rounded instead of curved rectangle (William Jon McCann)
- Improve the media keys overlay design (William Jon McCann) (#596136)
- Add brightness to the media-keys popup (Bastien Nocera) (#599677)
- Fix for GSEAL goal (Bastien Nocera) (#599861)
- Avoid volumes going over 100% (Bastien Nocera) (#600770)
- Make OSD display more generic (Bastien Nocera) (#600951)
- Support loading -rtl and -ltr variants of icons (Bastien Nocera) (#600984)
- Relicense gsd-media-keys-window.[ch] to LGPL (Bastien Nocera) (#600986)
- Hide the status icon before unreffing it (Matthias Clasen) (#601696)
- Make eject behave better on OpenBSD (Jasper Lievisse Adriaanse) (#598573)
- Export libexecdir in .pc file (DJ Lucas) (#596388)
- Run gnome-color-manager apply program when the outputs change
  (Richard Hughes)
- Factor out function to get keycodes from keysym names (Federico Mena Quintero)
- Handle the XF86RotateWindows hotkey by rotating a laptop's display
  (Federico Mena Quintero)
- Respond to monitor configuration changes when in charge (Matthias Clasen)
  (#601203)
- Filter invalid layouts before looking for the index of one passed by gdm
  (Vincent Untz) (#585868)
- Add linsysfs to list of virtual filesystems (Coleman Kane) (#604396)
- Remove sleep keybindings (Bastien Nocera) (#170175)
- Start an on-screen-display window (OSD) (Federico Mena Quintero)
- Split the composited and non-composited code for the expose-event handler
  (Federico Mena Quintero)
- Use a hand-drawn frame instead of a GtkBuilder frame (Federico Mena Quintero)
- Using GkbdStatus for the automatic notification icon (Sergey V. Udaltsov)
- Implement popup menu for the notification icon (Sergey V. Udaltsov)
- Add extra API required by GsdMediaKeysWindow (Federico Mena Quintero)
- Add timed exit option (William Jon McCann)
- Fixes for new libxklavier (Sergey V. Udaltsov)
- Translations:
  - ast (Xandru Armesto Fernandez)
  - en@shaw (Thomas Thurman)
  - es (Jorge González)
  - et (Mattias Põldaru, Ivar Smolin)
  - ja (Takayuki KUSANO)
  - nb (Kjartan Maraas)
  - nds (Nils-Christoph Fiedler)
  - ru (Leonid Kanter)
  - sl (Matej Urbančič)
  - sv (Daniel Nylander)
  - uk (Maxim V. Dziumanenko)
  - vi (Nguyễn Thái Ngọc Duy)
  - zh_CN (Aron Xu)

==============
Version 2.28.1
==============

- Try harder to use the keyboard layout passed by gdm (Vincent Untz)
- Translations:
  - ca (Joan Duran)
  - el (Kostas Papadimas)
  - or (Manoj Kumar Giri)
  - pl (Tomasz Dominikowski)
  - ru (Andrey Grigoriev, Alexandre Prokoudine)
  - sl (Matej Urbančič)
  - zh_HK (Chao-Hsiung Liao)
  - zh_TW (Chao-Hsiung Liao)

==============
Version 2.28.0
==============

- Fix incomplete function declaration (Vincent Untz)
- Don't install the dummy plugin whilst keeping the Makefile.am
  almost intact for copy/paste (Bastien Nocera) (#578538)
- Fix Touchpad left-handed issues (Bastien Nocera) (#594617)
- Add sound effect to volume key handling (Bastien Nocera) (#404683)
- Remove useless custom eject icon (Bastien Nocera)
- Validate xsettings GConf keys read from the configuration (Jens Granseuer)
  (#594821)
- Fix compiler warnings (Jens Granseuer)
- Translations:
  - as (Amitakhya Phukan)
  - cz (Petr Kovar)
  - da (Ask H. Larsen)
  - de (Mario Blättermann)
  - en_GB (Bruce Cowan)
  - hi (Rajesh Ranjan)
  - hu (Gabor Kelemen)
  - it (Luca Ferretti)
  - ja (Takayuki KUSANO)
  - kn (Shankar Prasad)
  - mai (Rajesh Ranjan)
  - ml (Ani)
  - mr (Sandeep Shedmake)
  - or (Manoj Kumar Giri)
  - pa (A S Alam )
  - pl (Piotr Drąg)
  - ro (Adi Roiban, Dumitru Mișu Moldovan)
  - sr (Miloš Popović)
  - te (krishnababu k)
  - uk (Maxim V. Dziumanenko)

===============
Version 2.27.92
===============

- Make 'Locate Pointer a separate process (Matthias Clasen) (#524499)
- Skip button mappings only for core devices (Peter Hutterer)
- Translations:
  - ar (Khaled Hosny)
  - bn (Jamil Ahmed)
  - bn_IN (Runa Bhattacharjee)
  - ca (Gil Forcada)
  - ca@valencia (Carles Ferrando)
  - et (Ivar Smolin)
  - eu (Inaki Larranaga Murgoitio)
  - gu (Sweta Kothari)
  - he (Yaron Shahrabani)
  - kn (Shankar Prasad)
  - lt (Gintautas Miliauskas)
  - nb (Kjartan Maraas)
  - pt (Duarte Loreto)
  - te (krishnababu k)
  - tr (Baris Cicek)

===============
Version 2.27.91
===============

- Update gnome-volume-control code (Bastien Nocera)
- Update cut'n'paste from gnome-media (Bastien Nocera)
- Update volume control code for new API (Bastien Nocera)
- Translations:
  - bg (Alexander Shopov)
  - fi (Tommi Vainikainen)
  - ga (Seán de Búrca)
  - ko (Changwoo Ryu)
  - pt_BR (Henrique P. Machado)

===============
Version 2.27.90
===============

- Update gnome-volume-control from gnome-media (Bastien Nocera) (#589825)
- Fix crash in gvc_mixer_stream_is_running() (Chris Coulson) (#590073)
- Add '-k' option to syndaemon call for 'Disable touchpad while typing'
  (C de-Avillez) (#590588)
- Low disk space warning bug-fixes (Chris Coulson) (#591153)
- Translations:
  - br (Denis Arnaud)
  - es (Jorge González)
  - et (Ivar Smolin, Priit Laes and Mattias Põldaru)
  - fr (Nicolas Repentin and Claude Paroz)
  - gl (Antón Méixome)
  - nb (Kjartan Maraas)
  - or (Manoj Kumar Giri)
  - sv (Daniel Nylander)
  - ta (drtvasudevan)
  - zh_CN (Ray Wang)

==============
Version 2.27.5
==============

- Only use applicable configurations for switching with the XF86Display hotkey
  (Federico Mena Quintero)
- Only use applicable configurations when auto-configuring outputs during hotplug
  (Federico Mena Quintero)
- Really lay out displays from left to right when using the XF86Display hotkey
  (Federico Mena Quintero)
- For the XF86Display hotkey, preserve the cycle order when sanitizing the
  configurations (Federico Mena Quintero)
- Remove last libglade dependency  (Felix Riemann)
- Improved low disk space warning (Chris Coulson) (#573980)
- Fix compiler warnings (Jens Granseuer)
- Translations:
  - es (Jorge González)
  - et (Ivar Smolin)
  - fr (Claude Paroz)
  - he (Yaron Sharabani)
  - sv (Daniel Nylander)
  - ta (drtvasudevan)
  - zh_HK (Chao-Hsiung Liao)
  - zh_TW (Chao-Hsiung Liao)

==============
Version 2.27.4
==============
- Remove screensaver plugin, it's autostarted now (Matthias Clasen)
- Don't take too long in RANDR D-Bus method implementation (Federico Mena
  Quintero)
- Add support for Synaptics touchpads (Matthias Clasen)
- Don't spawn more than one syncdaemon (Matthias Clasen)
- Depend on gnome-desktop >= 2.26.3 (Rodrigo Moya)
- Update gnome-volume-control code from master (Bastien Nocera)
- Fix order of arguments to strstr (Federico Mena Quintero)
- Depend on libxklavier 4.0 (Sergey V. Udaltsov)
- Remove libglade dependency from media-keys and keyboard plugins (Felix Riemann)
- Translations:
  - he (Yaron Shahrabani)
  - hu (Gabor Kelemen)
  - in_BN (Runa Bhattacharjee)
  - uk (Maxim V. Dziumanenko)

==============
Version 2.27.3
==============
- Make the RANDR tray icon's per-monitor labels explicitly black (Federico Mena
  Quintero) (#556050)
- Include config.h so that the notifications code in housekeeping plugin can
  actually be built (Jens Granseuer) (#584217)
- Use "screen reader" instead of "screenreader" in schema (Gabor Kelemen) (#572911)
- Lots of RANDR fixes and improvements (Federico Mena Quintero)
- Nicer handling of broken XKB configuration in gconf (Sergey Udaltsov) (#585259)
- Make 'locate pointer' deal with wm/cm changes (Matthias Clasen) (#585209)
- Be more careful when comparing two key structs (Matthias Clasen) (#580616)
- Translations:
  - da (Ask H. Larsen)
  - es (Jorge Gonzalez)
  - et (Ivar Smolin)
  - nb (Kjartan Maraas)
  - sv (Daniel Nylander)
  - ta (drtvasudevan)

==============
Version 2.27.1
==============
- Use ngettext for the reset dialog (Jens Granseuer) (#575409)
- Replace deprecated gtk_status_icon_set_tooltip (Thomas H.P. Andersen) (#578480)
- Updated translations:
  - ca (Jordi Mas i Hernandez)
  - es (Jorge Gonzalez)
  - nb (Kjartan Maraas)
  - sl (Matej Urban)
  - zh_CN (Deng Xiyue)

==============
Version 2.26.1
==============
- Fix crash when closing the lid on some laptops (Jens Granseuer) (#576875)
- Fix crash when closing a11y notification bubble (Jens Granseuer) (#576535)
  (use of libnotify >= 0.4.5 highly recommended)
- Fix problems with saving/restoring screen setup (Federico Mena Quintero)
- Make the screen resolution confirmation dialog always appear in front of
  the settings window (Federico Mena Quintero) (#576006)
- Increase confirmation timeout to 30 seconds to give slower devices (like
  projectors) time to adjust
- Avoid some GConf roundtrips (Jens Granseuer) (#578539, #578542)
- Build fixes (Jens Granseuer, yselkowitz@users.sourceforge.net)
- Updated translations:
  - ar (Khaled Hosny)
  - as (Amitakhya Phukan)
  - kn (Shankar Prasad)
  - nb (Kjartan Maraas)
  - sr (Miloš Popović)
  - sr@latin (Miloš Popović)

==============
Version 2.26.0
==============
- Make build work with -Wl,-z,defs (Christopher Taylor) (#574452)
- Updated translations:
  - as (Amitakhya Phukan)
  - ca (Gil Forcada)
  - cs (Petr Kovar)
  - da (Kenneth Nielsen)
  - de (Mario Blättermann)
  - el (Kostas Papadimas)
  - eu (Inaki Larranaga Murgoitio)
  - gl (Ignacio Casal Quinteiro)
  - gu (Ankitkumar Patel)
  - he (Yair Hershkovitz)
  - hi (Rajesh Ranjan)
  - it (Luca Ferretti)
  - ja (Takeshi AIHANA)
  - lt (Gintautas Miliauskas)
  - ml (Ani Peter)
  - mr (Sandeep Shedmake)
  - or (Manoj Kumar Giri)
  - ro (Mișu Moldovan)
  - ru (Nickolay V. Shmyrev)
  - ta (I. Felix)
  - te (Krishnababu K)

===============
Version 2.25.92
===============
- don't print warnings for disabled custom shortcuts (Jens Granseuer)
- revert screen resolution change if the user closes the confirmation window
  using the close icon or by pressing escape (Jens Granseuer) (#571492)
- add missing keys for a11y shortcut keys to GConf schemas (Jens Granseuer)
  (#572807)
- install gnome-settings-daemon-plugin.h for custom plugin developement
  (Jens Granseuer) (#573610)
- Updated translations:
  - bg (Alexander Shopov)
  - en_GB (Philip Withnall)
  - es (Jorge Gonzalez)
  - fi (Ilkka Tuohela)
  - fr (Claude Paroz)
  - gu (Sweta Kothari)
  - hu (Gabor Kelemen)
  - ko (Changwoo Ryu)
  - nl (Wouter Bolsterlee)
  - pl (Tomasz Dominikowski)
  - pt (Duarte Loreto)
  - pt_BR (Krix Apolinário, Vladimir Melo)
  - sv (Daniel Nylander)
  - th (Theppitak Karoonboonyanan)
  - zh_HK (Chao-Hsiung Liao)
  - zh_TW (Chao-Hsiung Liao)

===============
Version 2.25.91
===============
- Have gnome-session restart g-s-d if it crashes (Matthias Clasen)
- Add --without-libnotify to disable notifications (Nirbheek Chauchan)
- Avoid warnings due to notifications on nonexisting status icons
  (Matthias Clasen)
- Fix crash with invalid keyboard shortcuts (Jens Granseuer)
- fix label for "Don't show this message again" checkbox (Luca Ferretti) (#517821)
- HIG fix for button labels (Luca Ferretti) (#571819)
- Don't use legacy icons for keyboard and mouse (Luca Ferretti) (#571823)
- Fix alignment of the composited media window (Leo Iannacone) (#567249)
- Updated translations:
  - ast (Mikel González)
  - ca (Gil Forcada)
  - da (Kenneth Nielsen)
  - es (Jorge Gonzalez)
  - eu (Iñaki Larrañaga Murgoitio)
  - ja (Takeshi AIHANA)
  - nl (Wouter Bolsterlee)
  - pl (Tomasz Dominikowski)
  - ro (Jani Monoses)
  - sv (Daniel Nylander)
  - vi (Clytie Siddall)

===============
Version 2.25.90
===============
- Initialize thread system (Frederic Peters) (#565515)
- Better support for Eject and Sleep actions on BSD (Jasper Lievisse Adriaanse)
  (#565472)
- Spawn screensaver after a 30 second timeout instead of when idle so that it
  doesn't compete with other processes when the session starts (Jens Granseuer)
  (#564059)
- Add low diskspace notification (Vincent Untz) (#557647)
- Support hotkeys for a11y tools (Matthias Clasen) (#565310)
- Quiet xrdb when there are duplicate rules in the .ad files (Bastien Nocera)
  (#566610)
- Add debugging output when de/registering media players (Jens Granseuer)
  (#564433)
- Add a new sound plugin that tells PulseAudio to drop its sample cache when
  the sound theme changes (Lennart Poettering) (#545386)
- Don't pop up an error message when there's no randr configuration file
  (Federico Mena Quintero)
- Ungrab keys when key-related plugins are disabled (Jens Granseuer) (#567867)
- Use PulseAudio directly to change the volume (Bastien Nocera) (#567177)
- Don't draw_background immediately when nautilus is disabled, GnomeBG will
  send a signal (Ray Strode)
- Add crossfade transition when switching backgrounds (Ray Strode) (#552857)
- Use XF86Explorer to launch the file manager (Bastien Nocera)
- Fix possible crash when pressing Fn-F7 (Andres Freund) (#568713)
- Delay drawing the background until SessionRunning (Ray Stode)
- Ask for confirmation with a timeout after changing the randr configuration
  (Federico Mena Quintero) (#545115)
- Require gnome-desktop 2.25.6 (Jen Granseuer)
- Plug leaks
- Build fixes
- Updated translations:
  - es (Jorge González)
  - et (Mattias Põldaru)
  - he (Yuval Tanny)
  - hu (Gabor Kelemen)
  - it (Luca Ferretti)
  - ko (Changwoo Ryu)
  - nb (Kjartan Maraas)
  - pt_BR (Krix Apolinário)
  - sv (Daniel Nylander)
  - zh_CN (甘露(Gan Lu))

==============
Version 2.25.3
==============
- Add support for fn-f7 type keys (Søren Sandmann)
- Use D-Bus instead of an X client mesage in the xrandr plugin, so
  the front-end can get error messages as well (Federico Mena Quintero)
- Fix crash when the X server doesn't have the XInput extension (Jens Granseuer) (#562977)
- Don't call umask (Behdad Esfahbod) (#563543)
- Shut the daemon down properly when the SIGTERM signal is received or the
  D-Bus bus goes away (Ray Strode)
- Restore AccessX bits to original values on exit, fixes sticky keys
  coming on when gnome-settings-daemon has exited (Ray Strode)
- Use only top-level glib and gtk+ headers (Pedro Fragoso) (#563796)

==============
Version 2.25.2
==============
- No need to trap XkbQueryExtension and friends errors (Jens Granseuer) (#559346)
- Add some performance annotations around libxklavier calls (Behdad Esfahbod)
- Start managers in idle callbacks (Behdad Esfahbod) (#559482, #559564)
- Only initialize fontconfig when starting up (Behdad Esfahbod) (#559550)
- Remove unnecessary X error traps (Jens Granseuer) (#559562)
- Init a11y status icon only when needed (Behdad Esfahbod) (#559558)
- Reshufle plugin priorities a bit (Behdad Esfhabod)
- Delay constructing the GnomeBg object until we need it (Behdad Esfahbod)
  (#559639)
- Listen for DeviceEnabled instead of DeviceAdded to be sure the mouse has
  been initialized (William Grant) (#559827)
- Add debugging output for volume_step (Jens Granseuer)
- Fork before gtk_init (Behdad Esfahbod) (#559695)
- Lockdown in the keybinding plugin (Matthias Clasen) (#553434)
- Trap X errors so we don't crash on X servers that don't support DevicePresence
  (Jens Granseuer) (#560618)
- Fix handling of time = GDK_CURRENT_TIME (Jens Granseuer) (#559797)
- Add bundle_loader linker flag to fix compilation on MacOS X (dmack@netspace.org)
  (#522673)
- Grab all keycodes that match the respective keysim (Mario Limonciello) (#561275)
- Fix --no-daemon (Behdad Esfahbod)
- Depend on libxklavier 3.8 (Sergey Udaltsov)
- Fix checks for various X libraries (Jens Granseuer)
- Fix check for xklavier device discovery (Jens Granseuer)

==============
Version 2.25.1
==============
- Ignore the 'activate' signal for deselected items so that the rotation
  setting doesn't reset when the systray menu is opened (Eric Piel)
  (#554951)
- Don't make togglekeys_enable depend on global AccessX state (Jens
  Granseuer) (#555009)
- Fix picking up of the GDM layout (Matthias Clasen) (#554525 and
  #555873)
- Use printf safely (Christian Persch) (#555553)
- Show the shutdown dialog when the power button is pressed (Matthias
  Clasen) (#556307)
- Support the Gtk/ButtonImages XSetting (Matthias Clasen) (#556797)
- Clean-up volume initialization (Jens Granseuer) (#552383)
- Make the composited volume images more clear (Bogdan Butnaru)
  (#557307)
- Spawn screensaver process in idle callback (Rodrigo Moya)
- Remove sound plugin (Jens Granseuer) (#557806)
- Replace gnome_help_display_desktop with gtk_show_uri (Jens Granseuer)
  (#557808)
- Listen for X device changes and reconfigure the mouse if necessary
  (William Grant) (#549267)
- Remove AM_MAINTAINER_MODE (Jens Granseuer) (#558503)
- Disable xrdb plugin by default (Behdad Esfahbod) (#557807)
- Improve performance logging annotations (Behdad Esfahbod) (#559162)
- Cleanup font module (Behdad Esfahbod) (#559163)
- Don't trap errors around grab_key (Behdad Esfahbod) (#559164)
- Don't run 'mousetweaks -s' at startup (Behdad Esfahbod) (#559165)
- Start fontconfig monitors, mouse and clipboard managers in idle
  callbacks (Behdad Esfahbod) (#559166)
- Preload gconf dirs when feasible (Behdad Esfahbod) (#559167)
- Wait for initialization processes to be done before spawning other
  processes (Behdad Esfahbod) (#559168)
- Don't close stderr to not lose warnings (Behdad Esfahbod)
- Use a pipe to communicate between children and parent process instead
  of a signal (Behdad Esfahbod)
- Updated translations:
  - et (Priit Laes)
  - mk (Jovan Naumovski)
  - pt_BR (Leonardo Ferreira Fontenelle)
  - sk (Marcel Telka)

==============
Version 2.24.0
==============
- Fix the fix for read-only home directories (Simon Zheng) (#530975)
- Make the volume popup not crash when invoking it on any screen but
  the first when using a compositing manager (Jens Granseuer)
  (#551677)
- Add GPLv2 copyright notice explicitly so that newer versions of
  autotools don't declare us GPLv3 (Jens Granseuer) (#551956)
- Specify GTK modules to load in a GConf directory instead of the
  single /desktop/gnome/gtk-modules key (Jens Granseuer) (#539840)
- Also allow linking the module state to other boolean keys by using
  a string value that is the name of the key to use (Jens Granseuer)
- Made the housekeeping plugin less aggressive by default (Michael J.
  Chudobiak) (#552680)
- Updated translations:
  - af (Friedel Wolff)
  - ar (Khaled Hosny)
  - bn_IN (Runa Bhattacharjee)
  - ca (Gil Forcada)
  - da (Kenneth Nielsen)
  - el (Kostas Papadimas)
  - et (Priit Laes)
  - he (Yair Hershkovitz)
  - hu (Gabor Kelemen)
  - it (Luca Ferretti)
  - kn (Shankar Prasad)
  - lt (Gintautas Miliauskas)
  - ml (Praveen Arimbrathodiyil)
  - mr (Sandeep Shedmake)
  - pl (Wadim Dziedzic)
  - pt_BR (Leonardo Ferreira Fontenelle)
  - ro (Mişu Moldovan)
  - ta (Tirumurthi Vasudevan)
  - zh_CN (Funda Wang)

===============
Version 2.23.92
===============
- Try harder to use the keyboard layout passed by GDM (Matthias Clasen)
  (#551062)
- Updated translations:
  - bg (Alexander Shopov)
  - de (Hendrik Richter)
  - en_GB (Philip Withnall)
  - ga (Seán de Búrca)
  - ko (Changwoo Ryu)
  - nl (Reinout van Schouwen)
  - pt (Duarte Loreto)
  - sv (Daniel Nylander)

===============
Version 2.23.91
===============
- Removed translatable property on stock gtk-close (Claude Paroz)
- Fix a constness warning (Jens Granseuer)
- Fix a crash due to an incorrect signal handler definition (William Jon
  McCann)
- Use a scale factor instead of a fixed DPI (William Jon McCann)
- Use g_warning instead of g_error when setup fails so we don't abort
  (Jens Granseuer) (#549483)
- Updated translations:
  - cs (Petr Kovar)
  - eu (Inaki Larranaga Murgoitio)
  - fi (Ilkka Tuohela)
  - fr (Claude Paroz)
  - ja (Takeshi AIHANA)
  - nb (Kjartan Maraas)
  - pt_BR (Leonardo Ferreira Fontenelle)
  - th (Theppitak Karoonboonyanan)
  - vi (Nguyễn Thái Ngọc Duy)
  - zh_HK (Chao-Hsiung Liao)
  - zh_TW (Chao-Hsiung Liao)

===============
Version 2.23.90
===============
- PulseAudio check to not ouput "no" twice (Jens Granseuer)
- Add status icon when a11y hotkeys are enabled, and display Universal
  Access preferences when it is clicked (William Jon McCann) (#526070)
- Simplify libnotify check, fix fontconfig result output (Jens Granseuer)
- Put the Glade file where all the others are (jens Granseuer)
- Remove some unnecessary boilerplate (Jens Granseuer)
- Use g_file_monitor instead of g_file_monitor_file/_directory (Jens
  Granseuer) (#546372)
- Remove warning that isn't (Jens Granseuer)
- Fixed crash in randr startup (Jens Granseuer)
- Fail xrandr initialization if we couldn't start xrandr (Matthias Clasen)
  (#546446)
- Try harder to clean up xrandr in _stop  so we can enable/disable the plugin
  on the fly (Jens Granseuer)
- For LIBSOUNDS, check for libgnomeui, not just libgnome (Federico Mena Quintero)
- Add sexy labels when setting up dual monitors (Federico Mena Quintero)
- Add a separator to the menu before "Configure display settings" (Federico Mena
  Quintero)
- Use GDK to get DPI (William Jon McCann)
- Updated translations:
  - ar (Djihed Afifi)
  - es (Jorge Gonzalez)
  - et (Priit Laes)
  - fi (Ilkka Tuohela)
  - gl (Ignacio Casal Quinteiro)
  - ja (Takeshi AIHANA)
  - he (Yair Hershkovitz)
  - ml (Praveen Arimbrathodiyil)
  - nb (Kjartan Maraas)
  - pt (Duarte Loreto)
  - pt_BR (Leonardo Ferreira Fontenelle)
  - th (Theppitak Karoonboonyanan)

==============
Version 2.23.6
==============
- Remove libgnomeui dependency (James Sharpe) (#544347)
- Bump glib dependency to 2.15 (Wouter Bolsterlee) (#544737)
- Use standard icon names for the OSD (Matthias Clasen) (#544733)
- Make the display notification icon configurable (Søren Sandmann)
- Resolve NumLock dynamically (Jens Granseuer) (#165343)
- Updated translations:
  - ar (Djihed Afifi)
  - es (Jorge Gonzalez)
  - gl (Ignacio Casal Quinteiro)
  - nb (Kjartan Maraas)
  - pt_BR (Leonardo Ferreira Fontenelle)

==============
Version 2.23.5
==============
- New settings for event sounds (Lennart Poettering) (#539786) 
- Fix include path for building against uninstalled package.
  (Damien Carbery) (#543289)
- Remove 'daemon' from the warning message (Gerd Kohlberger) (#543095)
- Make more shortcuts with shift work (Jens Granseuer) (#542275)
- Update RandR code to use new gnome-desktop API (Soren Sandmann)
- Fix accelerator check (Jens Granseuer) (#538699)
- Detect and enable PulseAudio (Colin Walters) (#533198)

==============
Version 2.23.4
==============
- Check for fontconfig instead of xft2 (Behdad Esfahbod)
- Send a Fontconfig/Timestamp xsettings notification whenever fontconfig
  configurations change (Behdad Esfahbod) (#490374)
- Properly match keybindings that need Shift for resolving the keysym
  (Jens Granseuer, Bastien Nocera) (#536581)
- If available use the esd_serverdir variable to locate the esd daemon
  so it can be started even if it's not in the PATH (Jens Granseuer, Brian
  Cameron) (#531868)
- Updated translations:
  - ar (Djihed Afifi)
  - th (Theppitak Karoonboonyanan)

==============
Version 2.23.3
==============
- Execute the correct action when there are multiple keyboard shortcuts with
  the same keycode but different keysyms (Bastien Nocera) (#530356)
- Fix wallpaper handling for people running a session without nautilus
  (Matthias Clasen) (#531487)
- Try to keep the keyboard layout from gdm (Matthias Clasen) (#531589)
- Don't die when the user's home directory is read-only (Brian Cameron)
  (#530975)
- Fix artifacts from the locate pointer animation in non-composited mode
  (Carlos Garnacho) (#531861)
- Pass clicks to the media popup window through to the underlying window
  (Carlos Garnacho) (#531862)
- Use new gnome-desktop background API and get rid of libbackground (William
  Jon McCann)
- Don't eat keypresses for multimedia key events in the mouse plugin (Bastien
  Nocera)
- Shutdown when receiving the "SessionOver" signal from gnome-session (Lucas
  Rocha, Jens Granseuer) (#522017)
- Fix memory leaks in the font plugin (Jens Granseuer)
- Move the locate pointer animation with the mouse cursor (Gerd Kohlberger)
  (#531665)
- Fix build without GStreamer (Jens Granseuer) (#536177)
- Updated translation:
  - ar (Djihed Afifi)
  - bg (Yavor Doganov)
  - es (Jorge Gonzalez)
  - gl (Ignacio Casal Quinteiro)
  - nb (Kjartan Maraas)
  - th (Theppitak Karoonboonyanan)
  - vi (Clytie Siddall)

================
Version 2.23.1.1
================
- Install .desktop for gnome-settings-daemon in a standard autostart directory
  (Lucas Rocha)
- Updated translations:
  - nb (Kjartan Maraas)

==============
Version 2.23.1
==============
- Sound server startup based on GConf setting, even when esd is disabled
  (Alexey Shabalin) (#523743)
- Added a new "housekeeping" plugin to set limits on the size and age of the
  thumbnail cache (Michael J. Chudobiak) (#523159)
- Fix mismatched modifier maping between egg and GTK (Jens Granseuer)
- Replace some custom functionality with stock GTK (Jens Granseuer)
- Mark string for translation (Jens Granseuer)
- Use G_DEFINE_TYPE instead of open-coding (Jens Granseuer)
- Change data types to match glib, avoid using time_t (Jens Granseuer)
- Add mapping for Gtk/Modules xsetting using GConf (Jens Granseuer) (#507386)
- Set GConf keys back to false if mousetweaks is not installed (Gerd Kohlberger)
  (#525042)
- Don't try to add grabas with invalid modifiers (Jens Granseuer)
- Remove trailing newlines from messages since g_warning already takes care
  of those (Jens Granseuer)
- Fix various leaks (Jens Granseuer)
- Fix TYPE macro and remove unimplemented prototype (Lorne Applebaum)
- Add a special volume subclass for better support of IBM Thinkpad hardware
  volume buttons (Lorne Applebaum) (#524425)
- Initialize inited_ok or behaviour is undefined when xkb setup fails (Jens
  Granseuer)
- Continued attempt at making XKB setup and error handling a bit less arcane
  and crufty (Jens Granseuer)
- Only use the built-in default for volume_step if we get an error from GConf,
  not just when the value is 0 which might be what the user wants (Jens
  Granseuer)
- Adds a "threshold" property to the AcmeVolume class that denotes the minimum
  percentage required to actually affect the volume (Jens Granseuer)
- Don't install any listeners or callbacks when XKB is not available (Jens
  Granseuer)
- Remove excessive key grab logging (Jens Granseuer)
- Make plugins deactivation work (Jens Granseuer)
- Properly null-terminate g_build_filename (Jens Granseuer)
- Turn into a daemon by default and make --no-daemon work (Jens Granseuer)
- DBus API has been stable for a while; don't define DBUS_API_SUBJECT_TO_CHANGE
  anymore (Jens Granseuer)
- Drop GConf backup for xkb (Sergey Udaltsov)
- Extract some functionality used by several plugins into a separate shared
  helper library (Jens Granseuer) (#525426)
- Reset GConf keys when we can't launch the daemon (Jens Granseuer)
- Updated translations:
  - bn_IN (Runa Bhattacharjee)
  - es (Jorge Gonzalez)
  - et (Priit Laes)
  - nn (Eskild Hustvedt)
  - sk (Marcel Telka)
  - te (Sunil Mohan Adapa)

==============
Version 2.22.1
==============
- Fix segfault when shutting down the typing break monitor (Jens Granseuer)
  (#521786)
- Set window type hint on the volume popup (Jens Granseuer) (#522232)
- Remove unused properties from actions GUI (Jens Granseuer)
- Reset opacity when removing the timeout (Jens Granseuer) (#522499)
- Fix handling of child process (William Jon McCann)
- Add a tool to test media keys (William Jon McCann)
- Add some profiling code (William Jon McCann)
- Fix compiler warnings (William Jon McCann)
- Fix leaks (William Jon McCann) (#524183)
- Add more stuff to the configuration summary (William Jon McCann)
- Don't eat key events (Jens Granseuer) (#523676)
- Apply keyboard settings on startup (Jens Granseuer) (#525440)
- Make "Home" keybinding work again (Jens Granseuer)
- Updated translations:
  - bn_IN (Runa Bhattacharjee)
  - et (Priit Laes)
  - nn (Eskild Hustvedt)
  - sk (Marcel Telka)
  - te (Sunil Mohan Adapa)
  - vi (Nguyễn Thái Ngọc Duy)

==============
Version 2.22.0
==============

- Actually link against libXi when building with XInput support (Jens Granseuer)
  (#519488)
- Disable debug by default (William Jon McCann)
- Don't pass GError's if we're not going to use them (Jens Graseuer)
- Remove obsolete settings for the removed default editor plugin (Jens Granseuer)
- Updated translations:
  - da (Kenneth Nielsen)
  - el (Kostas Papadimas)
  - en_GB (Philip Withnall)
  - es (Jorge Gonzalez)
  - et (Priit Laes)
  - hu (Gabor Kelemen)
  - it (Luca Ferretti)
  - lt (Gintautas Miliauskas)
  - mk (Arangel Angov)
  - nb (Kjartan Maraas)
  - nl (Vincent van Adrighem)
  - ru (Leonid Kanter)
  - uk (Maxim Dziumanenko)
  - zh_HK (Chao-Hsiung Liao)
  - zh_TW (Chao-Hsiung Liao)

===============
Version 2.21.92
===============

- Only print debug messages if --debug is used
- Only load plugins when requested not at every start
- Fixed #515340, Add a way to prioritise plugin load (William Jon McCann)
- Fixed #515341, Signal when plugins finish loading (William Jon McCann)
- Fixed #517259, Escape hostname for use in gconf key (Vincent Untz)
- Fixed #517418, gnome-display-properties resolution change will not be used after logout or reboot (Jens Granseuer)
- Fixed #518075, Sound plugin should start pulseaudio itself (Bastien Nocera)

Translations:
- Updated fr: Claude Paroz
- Updated de: Hendrik Brandt
- Updated nl: Vincent van Adrighem
- Updated be@latin: Ihar Hrachyshka
- Updated pt_BR: Jonh Wendell
- Updated pt: Duarte Loreto
- Updated ca: Gil Forcada
- Updated *: Matthias Clasen
- Updated oc: Yannig Marchegay
- Updated sv: Daniel Nylander
- Updated ja: Takeshi AIHANA
- Updated cs: Petr Kovar
- Updated ar: Djihed Afifi <djihed@gmail.com>
- Updated it: Luca Ferretti
- Updated es: Jorge Gonzalez
- Updated th: Theppitak Karoonboonyanan
- Updated eu: Inaki Larranaga Murgoitio
- Updated fi: bug #518255, Ilkka Tuohela
- Updated gl: Ignacio Casal Quinteiro
- Updated nb: Kjartan Maraas
- Updated pl: Artur Flinta

===============
Version 2.21.91
===============

- Use a flat directory instead of a hierarchy to install plugins
  into (Christian Persch) (#513246)
- Don't scan the plugins directory recursively (Christian Persch)
  (#513246)
- Install the settings plugin to a versioned directory to fix install
  with libdir == libexecdir (Christan Persch) (#504203)
- Review short and long descriptions for GConf keys (Luca Ferretti)
  (#514047)
- Don't crash when running the screensaver fails (Jens Granseuer)
  (#514385)
- Rename src folder to gnome-settings-daemon (Damien Carberry, Jens
  Granseuer) (#511820)
- Add uninstalled.pc file for building against an uninstalled copy of
  g-s-d (Damien Carberry, Jens Granseuer) (#511820)
- Add separate checks for libbackground and use external copy (Jens
  Granseuer)
- Use gnome_settings_daemon for the GConf path (Jens Granseuer) (#514411)
- Release the Glade XML ASAP and keep track of the 2 widgets we need
  (Jens Granseuer)
- Make sure we return a GError if initialization fails (Jens Granseuer)
  (#514926)
- Load the XKB settings initially (Matthias Clasen) (#511771)
- Fix leaks (Jens Granseuer)
- Unref the GConfClient only after done with it (Jens Granseuer)
- Check for xinput (Sebastien Bacher) (#514942)
- Fix copy'n'paste error (Jens Granseuer) (#515426)
- Declare variables at the beginning of a block to make older compilers
  happy (Jens Granseuer)
- Add back support for defining plugin start order (Jens Granseuer)
- Assign return value from g_slist_sort to the plugins list variable
  (Wouter Bolsterlee) (#515340)
- Replace gnome_vfs usage with GIO (Rodrigo Moya) (#513990)

=================
Version 2.21.90.2
=================

- Use correct binary path in DBus service file (Rodrigo Moya)
- Updated translations:
  - sv (Daniel Nylander)

=================
Version 2.21.90.1
=================

- Use plain $libexecdir for g-s-d binary (Rodrigo Moya)

===============
Version 2.21.90
===============

- Add a more appealing animation for locate pointer feature if composite
  is available (Carlos Garnacho)
- Quote function names in AC_DEFUN to fix autoconf warnings (Jens Granseuer)
- Fix build with builddir != srcdir (Christian Persch) (#509142)
- Use g_ascii_dtostr instead of setlocale (Christian Persch) (#505470)
- Read check for XFT2 that got loast in the g-s-d split (Jens Granseuer)
  (#510925)
- Fix typo in typing break key (Jens Granseuer) (#510429)
- Define GNOME_DESKTOP_USE_UNSTABLE_API before including gnome-bg.h (Jens
  Granseuer)
- No longer define DBUS_API_SUBJECT_TO_CHANGE (Jens Granseuer)
- Initialize GnomeProgram to avoid critical warnings from libgnome (Wouter
  Bolsterlee) (#509770)
- Hopefully allow $(libdir) to be the same directory as $(libexecdir) by
  installing the gnome-settings-daemon binary into a subdirectory of
  $(libexecdir) (Wouter Bolsterlee) (#504203)
- Don't use weird autofoo stuff to install gnome-settings-daemon into another
  directory (Wouter Bolsterlee) (#504203)
- Suppress verbose GConf schema installation output (Wouter Bolsterlee)

================
Version 2.21.5.2
================

- Use libtool for building static libs also (Rodrigo Moya)
- Automake fixes for allowing long file names (Rodrigo Moya)
- Updated translations:
  - nb (Kjartan Maraas)

================
Version 2.21.5.1
================

- Added translations from gnome-control-center module (Rodrigo Moya)
  (#509651)

===============
Version 2.21.5
===============

- Support animated backgrounds (Soren Sandmann)
- Init gnome-vfs and use correct name in desktop file (William Jon McCann)
- Use new setting from libgnome to make toolbar icon size setting work
  (William Jon McCann)
- Add Gtk/IMModule XSetting (Akira TAGOH) (#504182)
- Reverted patch for SUPER key modifier (Rodrigo Moya)
- Support mousetweaks (Gerd Kohlberger) (#503547)
- Only consider /desktop/gnome/accessibility/keyboard/enable as option
  for enabling keyboard a11y features from the keyboard, not as global
  switch to turn all a11y features on/off (Denis Washington)

===============
Version 2.21.4
===============

Initial development release of new gnome-settings-daemon design.