~george-edison55/gnome-settings-daemon/871133

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
gnome-settings-daemon (3.18.2-0ubuntu1) xenial; urgency=medium

  * New upstream release
  * d/p/revert-gsettings-removals.patch: Refreshed

 -- Tim Lunn <tim@feathertop.org>  Sat, 14 Nov 2015 10:39:26 +1100

gnome-settings-daemon (3.18.1-1ubuntu1) xenial; urgency=medium

  * Merge with Debian, remaining changes (LP: #1512915):
    + Split out schemas into gnome-settings-daemon-schemas so
      unity-settings-daemon can use them
    + Provide upstart user-session
    + debian/patches:
       - 05_disable_corner_tapping.patch:
          Disable corner tapping when disabling tap to click
       - 43_disable_locale_settings.patch:
          Don't set locales after sourcing .profile
       - 45_suppress-printer-may-not-be-connected-notification.patch
       - 53_sync_input_sources_to_accountsservice.patch
       - 64_restore_terminal_keyboard_shortcut_schema.patch
       - correct_logout_action.patch
          display the logout action on ctrl-alt-del (lp: #961501)
       - ubuntu-lid-close-suspend.patch
          Reimplement support for setting lid close suspend actions
       - revert_background_dropping.patch
          Keep gsettings keys background u-s-d needs them
       - revert-gsettings-removals.patch
          Revert gsettings keys that were dropped since 3.8, for u-s-d
       - 01_reinstate_updates_plugin.patch, keep this for now until we have
         gnome-software now which is responsible for the update notifications.
    + debian/gnome-settings-daemon.install: Install apport hook
    + debian/rules: 
      - install upstart scripts
      - Dont link with "-Wl,-Bsymbolic-functions",
        this was causing GType mismatches between plugins using
        gsd-device-manager (LP: #1427877)
  * debian/patches:
    + revert-gsettings-removals.patch: updated for keys removed in 3.18
    + nexus-orientation.patch: Dropped this will be handled by iio-sensor-proxy
    + ubuntu-lid-close-suspend.patch: refreshed
  * debian/gnome-settings-daemon-schemas.gsettings-override: Dropped, these are
    already the default settings


 -- Tim Lunn <tim@feathertop.org>  Wed, 28 Oct 2015 16:40:18 +1100

gnome-settings-daemon (3.18.1-1) unstable; urgency=medium

  * New upstream release.

 -- Michael Biebl <biebl@debian.org>  Mon, 12 Oct 2015 17:51:38 +0200

gnome-settings-daemon (3.18.0-1) unstable; urgency=medium

  * New upstream release.
  * Drop debian/patches/01_reinstate_updates_plugin.patch, we have
    gnome-software now which is responsible for the update notifications.
  * Upload to unstable.

 -- Michael Biebl <biebl@debian.org>  Mon, 12 Oct 2015 11:54:56 +0200

gnome-settings-daemon (3.17.92-1) experimental; urgency=medium

  * New upstream release candidate.

 -- Andreas Henriksson <andreas@fatal.se>  Thu, 17 Sep 2015 18:44:26 +0200

gnome-settings-daemon (3.17.90-1) experimental; urgency=medium

  * New upstream beta release.
  * Add iio-sensor-proxy to recommends
    - now used as source for ambient light and orientation information.

 -- Andreas Henriksson <andreas@fatal.se>  Sat, 29 Aug 2015 12:03:48 +0200

gnome-settings-daemon (3.16.3-1) unstable; urgency=medium

  * New upstream release.
  * Refresh patches.
  * Remove Suggests on x11-xserver-utils. The xrdb plugin has been removed
    upstream a long time ago.
  * Remove Suggests on gnome-screensaver. Screen locking is nowadays done by
    gnome-shell/gdm and gnome-settings-daemon no longer starts
    gnome-screensaver directly.
  * Remove Suggests on metacity | x-window-manager as gnome-settings-daemon no
    longer starts a window manager directly.
  * Remove obsolete Breaks from pre-wheezy.

 -- Michael Biebl <biebl@debian.org>  Wed, 22 Jul 2015 14:04:05 +0200

gnome-settings-daemon (3.16.3-0ubuntu2) xenial; urgency=medium

  * No-change rebuild against new gnome libraries

 -- Iain Lane <iain@orangesquash.org.uk>  Mon, 02 Nov 2015 15:39:08 +0000

gnome-settings-daemon (3.16.3-0ubuntu1) wily; urgency=medium

  * New upstream stable release

 -- Robert Ancell <robert.ancell@canonical.com>  Wed, 07 Oct 2015 14:59:26 +1300

gnome-settings-daemon (3.16.2-3ubuntu1) wily; urgency=medium

  * Merge with Debian, remaining changes (LP: #1468943):
    + Split out schemas into gnome-settings-daemon-schemas so
      unity-settings-daemon can use them
    + debian/patches:
       - 05_disable_corner_tapping.patch:
          Disable corner tapping when disabling tap to click
       - 43_disable_locale_settings.patch:
          Don't set locales after sourcing .profile
       - 45_suppress-printer-may-not-be-connected-notification.patch
       - 53_sync_input_sources_to_accountsservice.patch
       - 64_restore_terminal_keyboard_shortcut_schema.patch
       - correct_logout_action.patch
          display the logout action on ctrl-alt-del (lp: #961501)
       - nexus-orientation.patch
          Fix screen rotation on nexus7
       - ubuntu-lid-close-suspend.patch
          Reimplement support for setting lid close suspend actions
       - revert_background_dropping.patch
          Keep gsettings keys background u-s-d needs them
       - revert-gsettings-removals.patch
          Revert gsettings keys that were dropped since 3.8, for u-s-d
    + debian/gnome-settings-daemon.install: Install apport hook
    + debian/rules: install upstart scripts
  * debian/rules: Dont link with "-Wl,-Bsymbolic-functions",
    this was causing GType mismatches between plugins using
    gsd-device-manager (LP: #1427877)
  * debian/patches:
    + migrate_metacity_keys.patch
      - Dropped, these settings are long since obsolete
    + revert_media-keys_fix_battery_key.patch
      - not needed after upower 0.99
    + revert-gsettings-removals.patch: updated for keys removed in 3.16
  * debian/gnome-settings-daemon-schemas.gsettings-override: Dropped, these are
    already the default settings

 -- Tim Lunn <tim@feathertop.org>  Tue, 30 Jun 2015 09:32:56 +1000

gnome-settings-daemon (3.16.2-3) unstable; urgency=medium

  * Upload to unstable.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 14 Jun 2015 13:44:42 +0200

gnome-settings-daemon (3.16.2-2) experimental; urgency=medium

  * Bump Breaks: gnome-control-center to << 1:3.15.4 for the
    peripherals related schema changes.

 -- Andreas Henriksson <andreas@fatal.se>  Thu, 11 Jun 2015 16:00:15 +0200

gnome-settings-daemon (3.16.2-1) experimental; urgency=medium

  * New upstream release.
  * debian/control.in:
    + Update (build-)dependencies.
  * debian/patches/30_xrandr_dbus_init.patch,
    debian/patches/power-make-sure-to-set-an-error-when-GDBus-set_prope.patch:
    + Dropped, merged upstream.
  * debian/patches/04_superP.patch:
    + Updated for the new version.
  * Upload to experimental.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 31 May 2015 00:06:31 +0200

gnome-settings-daemon (3.14.2-3ubuntu2) wily; urgency=medium

  * debian/control.in: removed "Typing break" (LP: #991577).

 -- Hans Chun <hanschun@gmail.com>  Fri, 03 Jul 2015 19:10:13 -0700

gnome-settings-daemon (3.14.2-3ubuntu1) vivid; urgency=low

  * Merge with Debian, remaining changes:
    + Split out schemas into gnome-settings-daemon-schemas so 
      unity-settings-daemon can use them 
    + debian/patches:
       - 05_disable_corner_tapping.patch:
          Disable corner tapping when disabling tap to click
       - 43_disable_locale_settings.patch:
          Don't set locales after sourcing .profile
       - 45_suppress-printer-may-not-be-connected-notification.patch
       - 53_sync_input_sources_to_accountsservice.patch
       - 64_restore_terminal_keyboard_shortcut_schema.patch
       - correct_logout_action.patch
          display the logout action on ctrl-alt-del (lp: #961501)
       - migrate_metacity_keys.patch
          Migrate screenshot/terminal keys from metacity gconf as well
          (LP: #1058004)
       - nexus-orientation.patch
          Fix screen rotation on nexus7
       - ubuntu-lid-close-suspend.patch
          Reimplement support for setting lid close suspend actions
       - revert_background_dropping.patch
          Keep gsettings keys background u-s-d needs them
       - revert-gsettings-removals.patch
          Revert gsettings keys that were dropped since 3.8, for u-s-d
    + debian/gnome-settings-daemon.install: Install apport hook
    + debian/rules: install upstart scripts

 -- Jackson Doak <noskcaj@ubuntu.com>  Thu, 19 Mar 2015 07:37:45 +1100

gnome-settings-daemon (3.14.2-3) unstable; urgency=medium

  * Team upload
  * power-make-sure-to-set-an-error-when-GDBus-set_prope.patch:
    set the error when a GDBus set_property callback fails
    (hopefully Closes: #775877)

 -- Simon McVittie <smcv@debian.org>  Mon, 09 Mar 2015 09:49:20 +0000

gnome-settings-daemon (3.14.2-2ubuntu2) vivid; urgency=medium

  * Turn new sharing plugin on now we have network-manager 0.9.10

 -- Jackson Doak <noskcaj@ubuntu.com>  Thu, 29 Jan 2015 16:40:07 +1100

gnome-settings-daemon (3.14.2-2ubuntu1) vivid; urgency=low

  [ Jackson Doak ]
  * Merge with Debian, remaining changes: LP: #1399047
    + Split out schemas into gnome-settings-daemon-schemas so 
      unity-settings-daemon can use them 
    + debian/patches:
       - 05_disable_corner_tapping.patch:
          Disable corner tapping when disabling tap to click
       - 43_disable_locale_settings.patch:
          Don't set locales after sourcing .profile
       - 45_suppress-printer-may-not-be-connected-notification.patch
       - 53_sync_input_sources_to_accountsservice.patch
       - 64_restore_terminal_keyboard_shortcut_schema.patch
       - correct_logout_action.patch
          display the logout action on ctrl-alt-del (lp: #961501)
       - migrate_metacity_keys.patch
          Migrate screenshot/terminal keys from metacity gconf as well
          (LP: #1058004)
       - nexus-orientation.patch
          Fix screen rotation on nexus7
       - ubuntu-lid-close-suspend.patch
          Reimplement support for setting lid close suspend actions
       - ubuntu-force-lock-group.patch
          Lock the XKB group when ISO_Next_Group is pressed (lp: #1318673)
       - revert_background_dropping.patch
          Keep gsettings keys background u-s-d needs them
       - revert-gsettings-removals.patch
          Revert gsettings keys that were dropped since 3.8, for u-s-d
    + debian/gnome-settings-daemon.install: Install apport hook
    + debian/rules: install upstart scripts
  * We now have geoclue-2.0, so drop our revert
  * Disable new sharing plugin this requires Network Manager 0.9.10

  [ Tim Lunn ]
  * Drop ubuntu-force-lock-group.patch, this completely breaks input switching  
    and the bug that it fixes is no longer reproducible

 -- Jackson Doak <noskcaj@ubuntu.com>  Fri, 05 Dec 2014 04:09:34 +0000

gnome-settings-daemon (3.14.2-2) unstable; urgency=medium

  * 01_reinstate_updates_plugin.patch: reinstate the updates plugin, 
    since gnome-software is not in jessie and we need an update 
    mechanism.
  * Use patch-translations.mk.
  * Reintroduce GNOME 3.12 translations.
  * Update packagekit-glib build-dependency.

 -- Josselin Mouette <joss@debian.org>  Thu, 04 Dec 2014 10:47:04 +0100

gnome-settings-daemon (3.14.2-1) unstable; urgency=medium

  * New upstream translation and bugfix release.
  * 30_xrandr_dbus_init.patch: patch from upstream git. Fixes a crash
    due to a race condition in dbus initialization.

 -- Josselin Mouette <joss@debian.org>  Sun, 30 Nov 2014 12:46:20 +0100

gnome-settings-daemon (3.14.1-1) unstable; urgency=medium

  * New upstream release.
  * debian/control.in: Bump Standards-Version to 3.9.6 (no further changes)

 -- Laurent Bigonville <bigon@debian.org>  Sat, 18 Oct 2014 09:47:37 +0200

gnome-settings-daemon (3.14.0-2) unstable; urgency=medium

  * Do not enable networkmanager support on !linux architectures
  * debian/control.in:
    - Add libnm-util-dev to the build-dependencies
    - Depends against libpam-systemd instead of plain systemd package, g-s-d
      needs logind for several power related functionalities

 -- Laurent Bigonville <bigon@debian.org>  Sun, 05 Oct 2014 04:23:11 +0200

gnome-settings-daemon (3.14.0-1) unstable; urgency=medium

  * New upstream release.
  * debian/gnome-settings-daemon.install: stop installing
    usr/share/dbus-1/services. See upstream commit
    "keyboard: Remove input sources handling".
  * Bump Breaks on gnome-shell to 3.13.92 because of the above.
  * Upload to unstable.

 -- Andreas Henriksson <andreas@fatal.se>  Mon, 22 Sep 2014 20:05:46 +0200

gnome-settings-daemon (3.13.91-1) experimental; urgency=medium

  * New upstream development release.
  * Update build-dependencies according to configure.ac changes:
    - Add libnm-glib-dev (>= 0.9.9.1)

 -- Andreas Henriksson <andreas@fatal.se>  Fri, 05 Sep 2014 15:00:51 -0700

gnome-settings-daemon (3.12.2-1ubuntu4) vivid; urgency=medium

  * geoclue-2.0 build-deps were accidentally uncommented in the previous
    upload - remove them again.

 -- Iain Lane <iain@orangesquash.org.uk>  Sat, 01 Nov 2014 13:32:00 +0000

gnome-settings-daemon (3.12.2-1ubuntu3) vivid; urgency=medium

  * Drop revert_power_310.patch and build against upower 0.99. (LP: #1330037)
  * ubuntu-lid-close-suspend.patch: Unfuzz.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Fri, 31 Oct 2014 11:15:18 +0100

gnome-settings-daemon (3.12.2-1ubuntu2) utopic; urgency=medium

  * debian/patches/geoclue-build-fixes.patch: disable build of new
    datetime plugin since geoclue-2.0 is not currently in main.

 -- Tim Lunn <tim@feathertop.org>  Wed, 01 Oct 2014 07:45:02 +1000

gnome-settings-daemon (3.12.2-1ubuntu1) utopic; urgency=medium

  * New Upstream Release (LP: #1372346)
  * Merge with Debian, remaining changes:
    + Split out schemas into gnome-settings-daemon-schemas so 
      unity-settings-daemon can use them 
    + debian/patches:
       - 05_disable_corner_tapping.patch:
          Disable corner tapping when disabling tap to click
       - 43_disable_locale_settings.patch:
          Don't set locales after sourcing .profile
       - 45_suppress-printer-may-not-be-connected-notification.patch
       - 53_sync_input_sources_to_accountsservice.patch
       - 64_restore_terminal_keyboard_shortcut_schema.patch
       - correct_logout_action.patch
          display the logout action on ctrl-alt-del (lp: #961501)
       - migrate_metacity_keys.patch
          Migrate screenshot/terminal keys from metacity gconf as well
          (LP: #1058004)
       - nexus-orientation.patch
          Fix screen rotation on nexus7
       - ubuntu-lid-close-suspend.patch
          Reimplement support for setting lid close suspend actions
       - ubuntu-force-lock-group.patch
          Lock the XKB group when ISO_Next_Group is pressed (lp: #1318673)
       - revert_background_dropping.patch
          Keep gsettings keys background u-s-d needs them
       - revert-gsettings-removals.patch
          Revert gsettings keys that were dropped since 3.8, for u-s-d
    + debian/gnome-settings-daemon.install: Install apport hook
    + debian/rules: install upstart scripts
  * Revert power plugin to 3.10 until we have new Upower

 -- Tim Lunn <tim@feathertop.org>  Tue, 30 Sep 2014 14:36:27 +0200

gnome-settings-daemon (3.12.2-1) unstable; urgency=medium

  [ Laurent Bigonville ]
  * debian/rules: Install rfkill udev rules in /lib/udev/rules.d instead of
    /usr/lib/udev/rules.d

  [ Andreas Henriksson ]
  * New upstream release.
  * Upload to unstable.

 -- Andreas Henriksson <andreas@fatal.se>  Tue, 15 Jul 2014 00:02:20 +0200

gnome-settings-daemon (3.12.1-3) experimental; urgency=medium

  * debian/gnome-settings-daemon.install,
    debian/rules:
    + Only install rfkill udev rules on linux.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 03 May 2014 11:35:17 +0200

gnome-settings-daemon (3.12.1-2) experimental; urgency=medium

  * Brown paper bag release.
  * debian/rules:
    + It's DEB_CONFIGURE_EXTRA_FLAGS, not _EXTRA_ARGS.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Fri, 02 May 2014 20:19:30 +0200

gnome-settings-daemon (3.12.1-1) experimental; urgency=medium

  * New upstream release.
  * debian/rules:
    + Disable rfkill support on !linux.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Fri, 02 May 2014 17:58:13 +0200

gnome-settings-daemon (3.12.0-1) experimental; urgency=medium

  * New upstream release.

 -- Andreas Henriksson <andreas@fatal.se>  Mon, 24 Mar 2014 20:12:45 +0100

gnome-settings-daemon (3.11.91-1) experimental; urgency=medium

  * New upstream release.
  * Update build-dependencies according to configure.ac:
    - bump upower to 0.99.0, gnome-desktop 3.11.1, geoclue 2.1.2
    - add xkb-data (xkeyboard-config)
  * Ship uaccess tagging udev rule
  * Ship input-devices-example.sh
  * Bump Standards-Version to 3.9.5

 -- Andreas Henriksson <andreas@fatal.se>  Tue, 04 Mar 2014 21:10:41 +0100

gnome-settings-daemon (3.10.1-1) experimental; urgency=low

  [ Sjoerd Simons ]
  * New upstream release
  * Sync b-d with Ubuntu's gnome3 teams packaging

  [ Emilio Pozuelo Monfort ]
  * debian/patches/04_superP.patch:
    + Add upstream bug info.

 -- Sjoerd Simons <sjoerd@debian.org>  Fri, 01 Nov 2013 23:07:44 +0100

gnome-settings-daemon (3.8.6.1-0ubuntu15) utopic; urgency=low

  * debian/patches/git_lp1339244.patch:
    - fix exit status check in gsd-input-helper.c (LP: #1339244)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 10 Jul 2014 11:05:00 +0200

gnome-settings-daemon (3.8.6.1-0ubuntu14) utopic; urgency=medium

  * debian/patches/revert_background_dropping was inadvertantly dropped from
    series (it's needed for the keys in the schema even though the plugin
    itself is gone). Add it back.

 -- Iain Lane <iain@orangesquash.org.uk>  Tue, 17 Jun 2014 10:32:50 +0100

gnome-settings-daemon (3.8.6.1-0ubuntu13) utopic; urgency=medium

  * No-change rebuild against new colord

 -- Iain Lane <iain@orangesquash.org.uk>  Tue, 10 Jun 2014 11:36:46 +0100

gnome-settings-daemon (3.8.6.1-0ubuntu12) utopic; urgency=medium

  * Drop all Unity patches and legacy features (LP: #1318539)
    - Keep schemas for background plugin, since they are used by u-s-d
  * debian/patches: Refreshed
    - git_new_screencast_keybinding.patch
    - git_xsettings_segfaults.patch
  * debian/control.in: Fix lintian warnings
    - gnome-settings-daemon-schemas add ${misc:Depends}
    - gnome-settings-daemon fix binNMUable error for gnome-settings-daemon-schemas
  * Bump standards to 3.9.5 (No changes)

 -- Tim Lunn <tim@feathertop.org>  Mon, 12 May 2014 10:06:51 +1000

gnome-settings-daemon (3.8.6.1-0ubuntu11.1) trusty; urgency=medium

  * debian/patches/ubuntu-force-lock-group.patch:
    - Lock the XKB group when ISO_Next_Group is pressed (lp: #1318673)

 -- William Hua <william.hua@canonical.com>  Fri, 09 May 2014 14:37:33 -0400

gnome-settings-daemon (3.8.6.1-0ubuntu11) trusty; urgency=medium

  [ Jackson Doak ]
  * Add git_micmute.patch to add XF86AudioMicMute as a mic mute key

  [ Robert Ancell ]
  * debian/patches/90_set_gmenus_xsettings.patch:
    - Fix error in patch for watching Shell D-Bus names (LP: #1278467)

 -- Robert Ancell <robert.ancell@canonical.com>  Wed, 09 Apr 2014 13:38:55 +1200

gnome-settings-daemon (3.8.6.1-0ubuntu10) trusty; urgency=medium

  * gnome-settings-daemon.user-session.upstart: Use XDG_CURRENT_DESKTOP
    as the instance specifier for gnome-session upstart jobs, since
    other sessions apart from ubuntu will need to use u-s-d (LP: #1224217) 

 -- Tim Lunn <tim@feathertop.org>  Wed, 12 Mar 2014 16:47:04 +1100

gnome-settings-daemon (3.8.6.1-0ubuntu9) trusty; urgency=medium

  * debian/patches/git_enable_auto_hidpi.patch: enable hidpi on screen
    configurations where it makes sense
  * debian/patches/git_revert_remove_automount_helper.patch:
    - drop that revert, gnome-shell does the mounting and unity uses u-s-d
  *  debian/gnome-settings-daemon.maintscript:
    - clean corresponding xdg autostart on upgrade

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 20 Feb 2014 11:38:39 +0100

gnome-settings-daemon (3.8.6.1-0ubuntu8) trusty; urgency=medium

  * I hate control.in files.
  * Apply ubuntu7 control changes to control.in.

 -- Dimitri John Ledkov <xnox@ubuntu.com>  Fri, 07 Feb 2014 17:02:23 +0000

gnome-settings-daemon (3.8.6.1-0ubuntu7) trusty; urgency=medium

  * Mark gnome-settings-daemon-schemas as arch:all.
  * Mark gnome-settings-daemon-schemas to replace gnome-settings-daemon.
  * Make gnome-settings-daemon depend on strict matching version of the
    schemas package.

 -- Dimitri John Ledkov <xnox@ubuntu.com>  Fri, 07 Feb 2014 16:32:19 +0000

gnome-settings-daemon (3.8.6.1-0ubuntu6) trusty; urgency=medium

  [ Robert Ancell ]
  * debian/control:
  * debian/gnome-settings-daemon.install:
  * debian/gnome-settings-daemon-schemas.install:
  * debian/gnome-settings-daemon-schemas.gsettings-override:
    - Split out schemas so unity-settings-daemon can use them

 -- Dimitri John Ledkov <xnox@ubuntu.com>  Fri, 07 Feb 2014 15:53:09 +0000

gnome-settings-daemon (3.8.6.1-0ubuntu5) trusty; urgency=medium

  * Make gnome-settings-daemon start on all gnome-session instances, but
    ubuntu/unity.

 -- Dimitri John Ledkov <xnox@ubuntu.com>  Fri, 07 Feb 2014 14:39:59 +0000

gnome-settings-daemon (3.8.6.1-0ubuntu4) trusty; urgency=medium

  * debian/patches/git_new_screencast_keybinding.patch: git patch to add
    required keybinding for gnome-shell screencasts. This is required by
    gnome-shell 3.10 (LP: #1265127)

 -- Tim Lunn <tim@feathertop.org>  Fri, 07 Feb 2014 11:20:02 +0100

gnome-settings-daemon (3.8.6.1-0ubuntu3) trusty; urgency=medium

  * debian/patches/git_hidpi_scalling.patch: 
    - backport upstream change to support hi-dpi screens/scaling. You can 
      change the scaling value by writting the "org.gnome.desktop.interface 
      scaling-factor" gsettings key

 -- Sebastien Bacher <seb128@ubuntu.com>  Mon, 03 Feb 2014 16:17:44 +0000

gnome-settings-daemon (3.8.6.1-0ubuntu2) trusty; urgency=low

  * debian/patches/git_xsettings_segfaults.patch:
    - "unwatch dbus before destroying xsettings managers" (lp: #1232419)

 -- Sebastien Bacher <seb128@ubuntu.com>  Tue, 12 Nov 2013 20:32:18 +0100

gnome-settings-daemon (3.8.6.1-0ubuntu1) trusty; urgency=low

  * New upstream version
  * debian/patches/git_thumbnail_cleaning_use_less_ios.patch,
    git_keyboard-Don-t-set-the-XKB-group-switching-option.patch:
    - dropped, the changes are in the new version

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 06 Nov 2013 11:23:01 +0100

gnome-settings-daemon (3.8.5-2) unstable; urgency=low

  [ Laurent Bigonville ]
  * debian/gnome-settings-daemon.examples: Install input-device-example.sh as
    an example (Closes: #709526)

  [ Emilio Pozuelo Monfort ]
  * Upload to unstable.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 13 Oct 2013 17:37:46 +0200

gnome-settings-daemon (3.8.5-1) experimental; urgency=low

  * New upstream release.
  * debian/rules: Call dh-autoreconf with --as-needed to minimize the runtime
    dependencies
  * debian/gnome-settings-daemon.install: Install dbus service files, IBus
    support is shipping org.freedesktop.IBus.service

 -- Laurent Bigonville <bigon@debian.org>  Mon, 09 Sep 2013 20:14:29 +0200

gnome-settings-daemon (3.8.5-0ubuntu12) trusty; urgency=low

  * debian/patches/fix_media_keys_on_unity.patch: Another reworking. Try to
    start the legacy keygrabber all the time. Only don't if we're running
    shell. Should fix keygrabber in environments without panel or Unity. 

 -- Iain Lane <iain.lane@canonical.com>  Tue, 29 Oct 2013 17:03:35 +0000

gnome-settings-daemon (3.8.5-0ubuntu11.1) saucy; urgency=low

  * debian/patches/git_keyboard-Don-t-set-the-XKB-group-switching-option.patch:
    - If the user has the grp xkb option enabled, pressing the specified key
      might result in a Next Group keysym instead of the normal one. g-s-d
      doesn't use the option, and prevents it from being used with the patch.
  * debian/patches/unity-modifier-media-keys.patch:
    - Caps lock, next group, double modifier workarounds (lp: #1218322)

 -- William Hua <william.hua@canonical.com>  Thu, 24 Oct 2013 10:46:19 -0400

gnome-settings-daemon (3.8.5-0ubuntu11) saucy; urgency=low

  * debian/patches/ubuntu-lid-open-reset-ideletime.patch:
    change idle-timeout-reset key sequence from Alt to Shift (lp: #1227920)

 -- Stephen M. Webb <stephen.webb@canonical.com>  Tue, 22 Oct 2013 21:46:42 -0400

gnome-settings-daemon (3.8.5-0ubuntu10) saucy; urgency=low

  * debian/patches/unity-modifier-media-keys.patch:
    - Support modifier-only keyboard shortcuts (lp: #1218322)

 -- William Hua <william.hua@canonical.com>  Wed, 16 Oct 2013 16:58:35 -0400

gnome-settings-daemon (3.8.5-0ubuntu9) saucy; urgency=low

  * debian/patches/git_touchpad_scrolling.patch: let enable edge scrolling,
    on touchpads that don't support 2 fingers scrolling (lp: #1221367)

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 16 Oct 2013 16:57:37 +0200

gnome-settings-daemon (3.8.5-0ubuntu8) saucy; urgency=low

  * debian/patches/fix_media_keys_on_unity.patch: Don't rely on
    org.gnome.ScreenSaver as this might not be available (it's only a
    recommends of ubuntu-desktop). Use the names owned by (critical components
    of) the DEs themselves instead. (LP: #1237564)

 -- Iain Lane <iain.lane@canonical.com>  Wed, 16 Oct 2013 09:39:12 +0100

gnome-settings-daemon (3.8.5-0ubuntu7) saucy; urgency=low

  [ Ikuya Awashiro ]
  * debian/patches/series: 
    - removed git_revert_hardcoded_input_methods.patch.
     - Hard coded input methods required for some language. (lp: #1230265)

  [ Tim ]
  * debian/patches/fix_media_keys_on_unity.patch: Revise patch to load
    legacy keygrabber for all non-gnome-shell sessions (LP: #1235625)

  [ Iain Lane ]
  * Rename on_unity_appeared in the above patch. 

 -- Iain Lane <iain.lane@canonical.com>  Mon, 07 Oct 2013 17:06:51 +0100

gnome-settings-daemon (3.8.5-0ubuntu6) saucy; urgency=low

  * debian/patches/git_thumbnail_cleaning_use_less_ios.patch:
    - Optimise for "do nothing" when cleaning thumbnails (lp: #505085)

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 04 Oct 2013 18:21:45 +0200

gnome-settings-daemon (3.8.5-0ubuntu5) saucy; urgency=low

  * debian/patches/git_hardcode_deprecated_gtk_settings.patch:
    - revert previous change, it's buggy (lp: #1228886). GNOME/GTK upstream 
      decided to drop support for some of their settings in 3.10, but:
      - those settings are still there and working in saucy
      - they shouldn't have been dropped without discussion
      - the fix is to workaround issues with a ppa, which can be solved by
        simply adding those gsettings key to the schemas in the ppa version

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 27 Sep 2013 16:46:04 +0200

gnome-settings-daemon (3.8.5-0ubuntu4) saucy; urgency=low

  * debian/patches/git_hardcode_deprecated_gtk_settings.patch: git patch
    to make things work with gsettings schemas 3.10 (LP: #1227537)

 -- Tim Lunn <tim@feathertop.org>  Thu, 19 Sep 2013 19:20:34 +1000

gnome-settings-daemon (3.8.5-0ubuntu3) saucy; urgency=low

  * debian/patches/53_sync_input_sources_to_accountsservice.patch:
    - Fix type mismatch between g-s-d and accountsservice (LP: #1225785)

 -- William Hua <william.hua@canonical.com>  Sun, 15 Sep 2013 18:02:02 -0400

gnome-settings-daemon (3.8.5-0ubuntu2) saucy; urgency=low

  * debian/patches/ubuntu-lid-close-suspend.patch:
    - Updated to make sure we lock the screen when closing lid without
      suspend action (LP: #1223070)

 -- Tim Lunn <tim@feathertop.org>  Tue, 10 Sep 2013 09:28:14 +1000

gnome-settings-daemon (3.8.5-0ubuntu1) saucy; urgency=low

  [ Tim Lunn ]
  * Refreshed patches
  * debian/patches: 
    - fix_media_keys_on_unity.patch:
      Use legacy media keys keygrabber when running Unity
    - git_revert_remove_automount_helper.patch: bring back the automount
      helper, revert upstream commit and port to dbus session tracking.
    - fix_screenshots_on_unity.patch: bring back support for screenshots
      via gnome-screenshot when using unity.
    - ubuntu-lid-close-suspend.patch:
       Reimplement support for setting lid close suspend actions
    - ubuntu-fix-desktop-file.patch: Autostart in Unity too
    - fix_input_switching_on_unity.patch: Bring back support for input
      switching under Unity
    - 63_gnome_disable_background_plugin.patch: Disable loading
      of background plugin for GNOME session (LP: #1219148)

  * Dropped obsolete patches:
    - power-check-null-devices.patch, Dropped: Applied in new version
    - 51_lock_screen_on_suspend.patch, Superseded by handling this key
      in gnome-screensaver. With that, g-screensaver mirrors what's
      done in g-shell, and avoids patching settings-daemon.
  * gnome-settings-daemon.gsettings-override:
    - Update switch input source keys for 3.8

  [ Jeremy Bicha ]
  * New upstream release (LP: #1219486)
    - Two-finger scrolling enabled by default (LP: #1217166)
    - But use edge scrolling if two-finger scrolling isn't
      available (LP: #1221367)
    - Fix Super+Space switch-input-source shortcut in Unity (LP: #1201679)
  * debian/control.in:
    - Bump minimum glib, gsettings-desktop-schemas, gnome-desktop3, gtk,
      libpulse, and libwacom
    - Build-depend on librsvg2-dev
    - This update needs changes to gnome-control-center so break older
      versions
  * Refreshed patches
  * revert_background_dropping.patch:
    - Don't drop the background plugin yet, GNOME Fallback & Unity
      still need it (when Nautilus isn't handling the desktop)
  * Dropped obsolete patches:
    - bugzilla_segfault_dpms.patch: Applied in new version
    - 47_delay_pa_connect_to_idle.patch: Applied in new version
    - power-no-fallback-notifications.patch: Applied in new version
    - 60_unity_hide_status_icon.patch
    - 61_unity_use_application_indicator.patch
    - 63_unity_start_mounter.patch
    - logind_support.patch
    - and patches backported from 3.8
  * Disabled patch that need to be rewritten or dropped:
    - 48_register_client_before_idle_callbacks.patch
  * debian/patches/touchscreen_rotation.patch:
    - Updated with latest version from bugzilla
  * debian/patches/git_revert_hardcoded_input_methods.patch:
    - Add patch from git (and also applied in Fedora 19) to not hardcode
      input methods based on the current locale

  [ Rico Tzschichholz ]
  * debian/patches:
    - 16_use_synchronous_notifications.patch: Refreshed

 -- Jeremy Bicha <jbicha@ubuntu.com>  Mon, 09 Sep 2013 10:21:09 -0400

gnome-settings-daemon (3.8.4-2) experimental; urgency=low

  * debian/control.in, debian/rules: Re-enable ibus support (Closes: #720489)
  * debian/control.in: Bump Standards-Version to 3.9.4 (no further changes)
  * debian/rules: Drop removed --enable-pulse configure flag

 -- Laurent Bigonville <bigon@debian.org>  Sat, 24 Aug 2013 14:25:09 +0200

gnome-settings-daemon (3.8.4-1) experimental; urgency=low

  [ Thomas Bechtold ]
  * New upstream release.
  * Bump Standards-Version to 3.9.4.

 -- Andreas Henriksson <andreas@fatal.se>  Fri, 16 Aug 2013 20:06:53 +0200

gnome-settings-daemon (3.8.3-1) experimental; urgency=low

  [ Deng Xiyue ]
  * Disable "-Wl,-z,defs" on mipsel in order to fix segfault.
    (Closes: #629351)

  [ Emilio Pozuelo Monfort ]
  * New upstream release.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 08 Jun 2013 18:48:22 +0200

gnome-settings-daemon (3.8.2-2) experimental; urgency=low

  * debian/gnome-settings-daemon.maintscript:
    + Properly set the version so that users who upgraded to a package
      that had already stopped shipping the conffile also get it removed.
      Really closes: #704184.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 26 May 2013 19:49:26 +0200

gnome-settings-daemon (3.8.2-1) experimental; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/gnome-settings-daemon.maintscript:
    + Remove obsolete conffile. Closes: #704184.

  [ Andreas Henriksson ]
  * New upstream release.
  * Drop patches merged upstream:
    - 08-Fix-build-on-non-Linux-platforms.patch
    - 12-cursor-set-an-error-if-we-can-t-create-a-monitor.patch
    - 13-cursor-set-error-if-we-don-t-have-the-necessary-X-su.patch
  * Drop 11-cursor-add-error-quark.patch, not needed.

 -- Andreas Henriksson <andreas@fatal.se>  Sat, 25 May 2013 17:18:18 +0200

gnome-settings-daemon (3.8.0-2) experimental; urgency=low

  * debian/control.in:
    + Bump libgnome-desktop-3-dev build dependency to get a .symbols
      file with Build-Depends-Package, to ensure a proper runtime
      dependency.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Thu, 28 Mar 2013 12:59:02 +0100

gnome-settings-daemon (3.8.0-1) experimental; urgency=low

  * debian/patches/08-Fix-build-on-non-Linux-platforms.patch:
    + Fix the build on kfreebsd and hurd by including stdlib.h
      before using NULL.
  * New upstream release.
    + debian/control.in:
      - Bump libgnome-desktop3-dev requirement for the cursor fix.
    + debian/patches/05_disable_cursor_manager.patch:
      - Dropped, fixed upstream in a different way.
    + d/p/11-cursor-add-error-quark.patch
      d/p/12-cursor-set-an-error-if-we-can-t-create-a-monitor.patch
      d/p/13-cursor-set-error-if-we-don-t-have-the-necessary-X-su.patch:
      - New patches. The upstream fix to disable the cursor with
        Xorg < 1.14 was incomplete. With these patches we gracefully
        fail with Xorg < 1.14 and the cursor plugin will be enabled with
        Xorg >= 1.14.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 27 Mar 2013 16:48:21 +0100

gnome-settings-daemon (3.7.92-1) experimental; urgency=low

  [ Andreas Henriksson ]
  * New upstream release
  * Bump the following build-dependencies according to configure.ac
    - libglib2.0-dev, libgtk-3-dev, gsettings-desktop-schemas-dev,
      libgnome-desktop-3-dev, libpulse-dev, libwacom-dev
  * Add build-dependency on librsvg2-dev (>= 2.36.2)
  * Add a runtime dependency on systemd (except on hurd and kfreebsd)
    as needed by the power plugin.
  * Drop debian/patches/power-check-null-devices.patch, fixed upstream.
  * Drop debian/patches/power-ignore-bad-dbus-requests.patch, fixed upstream.
  * Remaining patches refreshed to apply cleanly.

  [ Sjoerd Simons ]
  * debian/patches/revert_git_datetime_dropping.patch:
    - Dropped. Control center uses datetime directly now
  * debian/control.in: Break gnome-control-center (<< 3.7) as the DateTime
    mechanism is now dropped.
  * debian/control.in: Remove gstreamer build-depends, no longer needed
  * New upstream release (3.7.92)
  * debian/patches/05_disable_cursor_manager.patch
    + Added. Disable the cursor manager, causes crashes with Xorg 1.12. Remove
    once Xorg 1.14 is available or when bgo#696118 is fixed upstream

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 23 Mar 2013 16:34:51 +0100

gnome-settings-daemon (3.6.4-1) experimental; urgency=low

  [ Frederic Peters ]
  * debian/control.in: bump {build-,}dependency on gsettings-desktop-schemas.

  [ Aron Xu ]
  * debian/control.in debian/rules: disable ibus integration (Closes: #694301).

  [ Sjoerd Simons ]
  * New upstream release

 -- Sjoerd Simons <sjoerd@debian.org>  Fri, 15 Feb 2013 22:12:34 +0100

gnome-settings-daemon (3.6.4-0ubuntu19) saucy; urgency=low

  * Install the ibus dbus service (LP: #1194138)

 -- Jeremy Bicha <jbicha@ubuntu.com>  Thu, 29 Aug 2013 11:14:56 -0400

gnome-settings-daemon (3.6.4-0ubuntu18) saucy; urgency=low

  * debian/patches/sync_input_sources_to_accountsservice.patch:
    - Update user's accountsservice input sources whenever they change.

  [ Aron Xu ]
  * debian/control.in:
    - Move ibus from Depends to Recommends (lp: #1218342).

 -- William Hua <william.hua@canonical.com>  Thu, 29 Aug 2013 16:10:41 +0200

gnome-settings-daemon (3.6.4-0ubuntu17) saucy; urgency=low

  * debian/patches/git_keybindings_add_screen_reader_toggle.patch:
    - Add keyboard shortcut to enable/disable the screen reader.

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 23 Aug 2013 16:08:29 +1000

gnome-settings-daemon (3.6.4-0ubuntu16) saucy; urgency=low

  [ William Hua ]
  * debian/control.in:
    - Depend on IBus 1.5.0.
  * debian/patches/revert_new_ibus_use.patch:
    - Drop upstream revert.
  * debian/patches/ibus-ubuntu-session.patch:
    - Check for Ubuntu session too
  * debian/patches/git_keyboard_Adapt_to_gnome_xkb_info_API_change.patch:
  * debian/patches/git_keyboard_Adapt_to_gnome_xkb_info_API_change_2.patch:
    - Take upstream's 8174dcd701de399ff28a19efbe9744744b802ce8 and
      55fee0c57563b95deddc4396eec87ab6bee35d34 and so we can work with
      gnome-desktop 3.8.

  [ Jeremy Bicha ]
  * debian/gnome-settings-daemon.gsettings-override:
    - Set switch-input-source keyboard shortcut to Super+Space to match ibus,
      GNOME 3.8 and Windows 8 default

 -- Jeremy Bicha <jbicha@ubuntu.com>  Wed, 21 Aug 2013 11:22:42 -0400

gnome-settings-daemon (3.6.4-0ubuntu15) saucy; urgency=low

  * debian/patches/0001-Fix-media-keys-handling-with-GTK-3.7.8.patch: Fix
    media-keys handling with GTK 3.8 and XI 2.3. 

 -- Iain Lane <iain.lane@canonical.com>  Thu, 27 Jun 2013 10:34:06 +0100

gnome-settings-daemon (3.6.4-0ubuntu14) saucy; urgency=low

  * Actually, gnome-session will still be used with Unity 7; remove the
    unnecessary 'starting unity' condition from the user session job. 

 -- Iain Lane <iain.lane@canonical.com>  Sat, 22 Jun 2013 00:50:35 +0100

gnome-settings-daemon (3.6.4-0ubuntu13) saucy; urgency=low

  [ Iain Lane ]
  * Start gsd via user session if starting 'unity' too. This is in preparation
    for starting unity directly.

  [ Martin Pitt ]
  * Add logind_support.patch: Inhibit logind's lid handling while g-s-d is
    running, as in g-s-d 3.6 the power plugin is handling the lid by itself
    still. This can be dropped when moving to 3.8. (LP: #1180513)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue, 18 Jun 2013 16:42:10 +0200

gnome-settings-daemon (3.6.4-0ubuntu12) saucy; urgency=low

  * Rebuild for gnome-desktop 3.8 transition (LP: 1184812)
    - debian/patches/git_xrandr_dont_include_labeller_widget.patch

 -- Tim Lunn <tim@feathertop.org>  Tue, 28 May 2013 10:04:36 +1000

gnome-settings-daemon (3.6.4-0ubuntu11) saucy; urgency=low

  * debian/patches/git_sound_not_polling.patch: Create directory with correct
    permissions
  * debian/patches/fix_broken_user_sounds_permissions.patch: Fix broken
    permissions from previous upload if necessary.

 -- Iain Lane <iain.lane@canonical.com>  Fri, 17 May 2013 12:26:49 +0100

gnome-settings-daemon (3.6.4-0ubuntu10) saucy; urgency=low

  [ Martin Pitt ]
  * Drop 51_lock_screen_on_suspend.patch: Superseded by handling this key in
    gnome-screensaver. With that, g-screensaver mirrors what's being done in
    g-shell, and avoids patching settings-daemon.

  [ Sebastien Bacher ]
  * debian/patches/git_housekeeping_ignore_list.patch:
    - correctly handle ignore list for disk space notifications (lp: #881376)
  * debian/patches/git_glib_get_xdg_dirs.patch:
    - use glib to get xdg dirs (rather than reading the environment)
  * debian/patches/git_sound_not_polling.patch:
    - don't poll on non existant directories

 -- Sebastien Bacher <seb128@ubuntu.com>  Mon, 13 May 2013 15:28:42 +0200

gnome-settings-daemon (3.6.4-0ubuntu9) saucy; urgency=low

  [ Sebastien Bacher ]
  * debian/patches/revert_new_ibus_use.patch:
    - list gsd-keyboard-xkb.c for translation

  [ Martin Pitt ]
  * Switch to logind for session tracking.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 29 Apr 2013 10:13:43 -0700

gnome-settings-daemon (3.6.4-0ubuntu8) raring; urgency=low

  * debian/control.in:
    - Breaks on g-c-c and indicator-datetime versions using the old interface
    - recommends systemd-service (lp: #1153567)
  * debian/gnome-settings-daemon.install:
    - updated for the patch being dropped
  * debian/gnome-settings-daemon.main:
    - clean org.gnome.SettingsDaemon.DateTimeMechanism.conf conffile
  * debian/patches/revert_git_datetime_dropping.patch:
    - drop the upstream's revert

 -- Sebastien Bacher <seb128@ubuntu.com>  Tue, 26 Mar 2013 21:20:26 +0100

gnome-settings-daemon (3.6.4-0ubuntu7) raring; urgency=low

  * Add upstart user session job for gnome-settings-daemon.

 -- Stéphane Graber <stgraber@ubuntu.com>  Tue, 12 Mar 2013 15:06:05 -0400

gnome-settings-daemon (3.6.4-0ubuntu6) raring; urgency=low

  * debian/patches/nexus_orientation.patch: Fix memory leak when building
    pathnames, thanks Jean-Baptiste Lallement! (LP: #1123930)

 -- Jani Monoses <jani.monoses@canonical.com>  Wed, 13 Feb 2013 13:25:19 +0200

gnome-settings-daemon (3.6.4-0ubuntu5) raring; urgency=low

  * debian/patches/nexus_orientation.patch: Wait until a DBus connection to
    the xrandr module is in place before trying to change orientation.

 -- Jani Monoses <jani.monoses@canonical.com>  Tue, 12 Feb 2013 00:07:12 +0200

gnome-settings-daemon (3.6.4-0ubuntu4) raring; urgency=low

  * debian/patches/nexus_orientation.patch: Correctly set up portrait
    orientation on first run. Disable the timer that polls the accelerometer
    on the Nexus 7 if the orientation-lock gsetting is set.

 -- Jani Monoses <jani.monoses@canonical.com>  Mon, 11 Feb 2013 13:14:46 +0200

gnome-settings-daemon (3.6.4-0ubuntu3) raring; urgency=low

  * debian/patches/nexus_orientation.patch: Set up a timer to poll
    sysfs attributes when an MPU6050 sensor is detected and calculate
    screen orientation based on these raw accelerometer readings.
    The kernel driver for this sensor used on the Nexus 7 does not currently
    provide the interface expected by the current code in g-s-d, hence
    this approach until the final one is decided upon.

 -- Jani Monoses <jani.monoses@canonical.com>  Wed, 30 Jan 2013 14:13:45 +0200

gnome-settings-daemon (3.6.4-0ubuntu2) raring; urgency=low

  * debian/patches/touchscreen_rotation.patch:  On touchscreens 
    rotate input coordinates by changing the Coordinate Transform Matrix
    property instead of evdev axis properties.

 -- Jani Monoses <jani.monoses@canonical.com>  Tue, 29 Jan 2013 16:28:12 +0200

gnome-settings-daemon (3.6.4-0ubuntu1) raring; urgency=low

  * New upstream version
  * debian/patches/53_update_schemas_warning.patch:
    - dropped, the issue is fixed in the new version
  * debian/patches/bugzilla_segfault_dpms.patch:
    - dropped the part of the patch which is included in the new tarball
  * debian/patches/revert_new_ibus_use.patch: refreshed

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 23 Jan 2013 15:12:37 +0100

gnome-settings-daemon (3.6.3-0ubuntu4) raring; urgency=low

  * debian/patches/migrate_metacity_keys.patch:
    - Migrate screenshot/terminal keys from metacity gconf as well
      (LP: #1058004)

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Thu, 13 Dec 2012 08:49:24 +0200

gnome-settings-daemon (3.6.3-0ubuntu3) raring; urgency=low

  * debian/control.in: 
    - Pre-Depends: ${misc:Pre-Depends}
  * debian/compat, debian/control.in:
    - updated debhelper version
  * debian/gnome-settings-daemon.maintscript:
  * debian/gnome-settings-daemon.postinst:
    - clean old "/etc/gnome/config" xrdb conffiles

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 06 Dec 2012 19:31:20 +0100

gnome-settings-daemon (3.6.3-0ubuntu2) raring; urgency=low

  * debian/patches/16_use_synchronous_notifications.patch:
    - don't segfault when using the screen hotkey (lp: #1082856)
  * debian/patches/53_update_schemas_warning.patch:
    - don't list the updates schemas it's not used in ubuntu (lp: #1082986)

 -- Sebastien Bacher <seb128@ubuntu.com>  Mon, 26 Nov 2012 16:28:45 +0100

gnome-settings-daemon (3.6.3-0ubuntu1) raring; urgency=low

  [ Sebastien Bacher ]
  * New upstream version (lp: #1008840)
  * debian/patches/git*,
    debian/patches/power-ignore-bad-dbus-requests.patch,
    debian/patches/power-ignore-bad-dbus-requests.patch,
    debian/patches/10_smaller_syndaemon_timeout.patch: 
    - dropped, those fixes are in the new version
  * debian/control.in:
    - restore build-depends on libgnomekbd-dev, libxklavier-dev,
      drop the build-depends on libxkbfile-dev
  * debian/patches/20_migrate_background_uri.patch:
    - dropped, it was only needed until the LTS
  * debian/patches/40_xres_lcddefault.patch:
    - dropped, that was a workaround for libreoffice that shouldn't be
      needed and we should better fix libreoffice
  * debian/patches/61_unity_use_application_indicator.patch:
    - drop the keyboard indicator code, that will need to be turned 
      into a proper indicator refactored to handle the new ibus config
  * debian/patches/90_set_gmenus_xsettings.patch:
    - refreshed for the new version
  * debian/patches/revert_new_ibus_use.patch:
    - revert keyboard code to our 3.4 version
  * debian/patches/sync_keyboard_layout_to_accountsservice.patch:
    - dropped, the changes are included in the previous patch

  [ Robert Ancell ]
  * New upstream release
  * debian/control:
    - Bump build-depends on libgnome-desktop-3-dev, libwacom-dev
    - Drop build-depends on libgnomekbd-dev, libxklavier-dev
    - Add build-depends on libxkbfile-dev

  [ Rico Tzschichholz ]
  * debian/control.in:
    - Build-depend on gtk-doc-tools

  [ Iain Lane ]
  * New upstream release
  * Refresh patches and remove those applied upstream.
  * Remove gstreamer BDs which are now obsolete. 

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 21 Nov 2012 17:16:23 +0100

gnome-settings-daemon (3.6.1-1) experimental; urgency=low

  * New upstream release
  * debian/patches/10_smaller_syndaemon_timeout.patch:
    + Dropped, fixed upstream
  * debian/patches/22_backlight_optional.patch:
    + Dropped, fixed upstream
  * debian/control: Update build-depends
  * debian/patches/*: refreshed

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 14 Oct 2012 21:16:55 +0200

gnome-settings-daemon (3.4.2+git20120925.a4c817-1) unstable; urgency=low

  * debian/g-s-d.gsettings-override: disable remember-numlock-state, 
    because of the infamous https://bugzilla.gnome.org/679151
  * New upstream git snapshot from the stable branch (which will not be 
    released despite the amount of useful bug fixes).
  * 10_smaller_syndaemon_timeout.patch: refreshed.
  * Drop merged patches: power-update-fallback-status-icon.patch,
    20_disable-wacom-support-on-s390-s390x.patch, 
    21_disable-wacom-on-non-Linux-platforms.patch,
    24-common-Try-XI-2.2-if-XI-2.0-fails.patch.
  * Bump libwacom dependency.

 -- Josselin Mouette <joss@debian.org>  Sat, 29 Sep 2012 12:17:15 +0200

gnome-settings-daemon (3.4.2-5) unstable; urgency=low

  * debian/patches/power-update-fallback-status-icon.patch: Update battery
    status icon in fallback mode when switching between battery and AC power.
    Patch cherry-picked from upstream Git. (Closes: #678352)

 -- Michael Biebl <biebl@debian.org>  Thu, 30 Aug 2012 23:36:38 +0200

gnome-settings-daemon (3.4.2-4) unstable; urgency=low

  * debian/patches/24-common-Try-XI-2.2-if-XI-2.0-fails.patch:
    * Added: Fix keybindings for newer libxi2 (Closes: #678250) (From
      upstream git)

 -- Sjoerd Simons <sjoerd@debian.org>  Fri, 27 Jul 2012 16:06:28 +0200

gnome-settings-daemon (3.4.2-3) unstable; urgency=low

  [ Jeremy Bicha ]
  * debian/control.in: Stop depending on libgnome2-common

  [ Michael Biebl ]
  * Upload to unstable.
  * Drop obsolete --enable-gconf-bridge configure switch and Build-Depends on
    libgconf2-dev.
  * Remove obsolete Breaks.
  * Add Breaks against gnome-shell (<< 3.4) for the incompatible changes in
    the Power D-Bus API. Closes: #675130

 -- Michael Biebl <biebl@debian.org>  Wed, 30 May 2012 12:43:11 +0200

gnome-settings-daemon (3.4.2-2) experimental; urgency=low

  * debian/patches/22_backlight_optional.patch: Don't enable backlight helper
    if GUdev is not available.

 -- Michael Biebl <biebl@debian.org>  Sun, 20 May 2012 06:19:23 +0200

gnome-settings-daemon (3.4.2-1) experimental; urgency=low

  [ Sjoerd Simons ]
  * New upstream release
  * debian/patches/01-xrandr-correct-the-type-of-the-rotation-parameter.patch:
    + Removed, fixed upstream
  * debian/patches/02-lock-screensaver-on-lid-close.patch:
    + Removed, fixed upstream
  * debian/patches/04_superP.patch: Refreshed
  * Sync with Ubuntu:
    + Update build-depend versions of various items
    + Add build-depend on libnss3-dev for smartcard support
    + Add build-depend on libwacom-dev, xserver-xorg-input-wacom and
      libxtst-dev for wacom support
    + debian/patches/10_smaller_syndaemon_timeout.patch:
      - Added: Only disable touchpach clicks, not mouse movements (bgo: #673055)
    + debian/patches/power-check-null-devices.patch:
      - Added: Fix crash when up_client_get_devices returns NULL (bgo: #674827)
    + debian/patches/power-ignore-bad-dbus-requests.patch:
      - Added: If we get a DBus request while the manager isn't active, ignore
        it (bgo: #674829)
    + debian/patches/revert_git_datetime_dropping.patch
      - Added: Don't switch to systemd for datetime functionality just yet

  [ Michael Biebl ]
  * Refresh patches.
  * Drop dependency on hwdata. This is no longer necessary and handled via
    libgnome-desktop now.
  * Cherry-pick two upstream patches which disable wacom support on s390,
    s390x and non-Linux plattforms as xserver-xorg-input-wacom is not available
    there. Mark the xserver-xorg-input-wacom and libwacom-dev Build-Depends
    accordingly.
  * Bump Standards-Version to 3.9.3.
  * Remove libdbus-glib-1-dev dependency from gnome-settings-daemon-dev, no
    longer required.

 -- Michael Biebl <biebl@debian.org>  Sat, 19 May 2012 23:36:19 +0200

gnome-settings-daemon (3.4.2-0ubuntu14) quantal; urgency=low

  * debian/patches/git_power_dbus_path.patch:
    - Fix screen not locking when lid is closed while running
      GNOME Shell on GDM (LP: #1048420)

 -- Jeremy Bicha <jbicha@ubuntu.com>  Fri, 28 Sep 2012 21:04:37 -0400

gnome-settings-daemon (3.4.2-0ubuntu13) quantal; urgency=low

  * debian/gnome-settings-daemon.gsettings-override:
    - Dropped, override moved to ubuntu-default-settings and
      ubuntu-gnome-default-settings

 -- Jeremy Bicha <jbicha@ubuntu.com>  Tue, 11 Sep 2012 21:14:56 -0400

gnome-settings-daemon (3.4.2-0ubuntu12) quantal-proposed; urgency=low

  * debian/patches/bugzilla_segfault_dpms.patch:
    - Update to cover another way to get the same segfault. (LP: #971353)

 -- Michael Terry <mterry@ubuntu.com>  Wed, 05 Sep 2012 15:42:01 -0400

gnome-settings-daemon (3.4.2-0ubuntu11) quantal-proposed; urgency=low

  * debian/patches/90_set_gmenus_xsettings.patch:
    - restore ShellShowsAppMenu xsettings to true under unity, that's the 
      correct thing to do since it supports appmenus and we don't need to 
      workaroud issues with the new nautils since we reverted to the old one

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 05 Sep 2012 21:16:26 +0200

gnome-settings-daemon (3.4.2-0ubuntu10) quantal; urgency=low

  * 64_restore_terminal_keyboard_shortcut_schema.patch:
    - The "Launch Terminal" schema was dropped in the gconf>gsettings
      switch. Bring it back. (LP: #1010558, LP: #1040081)

 -- Jeremy Bicha <jbicha@ubuntu.com>  Sun, 26 Aug 2012 12:44:27 -0400

gnome-settings-daemon (3.4.2-0ubuntu9) quantal-proposed; urgency=low

  [ Sebastien Bacher ]
  * debian/control.in:
    - don't build-depends on gconf
    - updated gnome-control-center breaks version for gsettings
  * debian/patches/revert_git_a11y_gsettings.patch,
    debian/patches/revert_git_stop_using_gconf.patch,
    debian/patches/revert_git_use_gsetting_keybindings.patch:
    - drop the gconf to gsettings migration reverts (LP: #1035261)

  [ Keng-Yu Lin ]
  * debian/patches/git-mask-out-virtual-modifiers.patch
    - patch from upstream git, fix the grabbing issue of the 
      keyboard shortcut with virtual (Super, Hyper, Meta) modifier.
      (lp: #950160)

  [ Edward Donovan ]
  * debian/source_gnome-settings-daemon.py: Fix for Python 3. (LP: #1013171)

  [ Hsin-Yi, Chen (hychen) ]
  * debian/patches/git_xrandr_explicitly_set_clone_state.patch:
    - "xrandr; explicitly set clone state variable when generating monitor
      configs" (LP: #1014533)

  [ Michael Terry ]
  * debian/patches/git-smartcard-crash.patch:
    - Don't crash on login with a smartcard (LP: #1031034)

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 23 Aug 2012 17:04:16 +0200

gnome-settings-daemon (3.4.2-0ubuntu8) quantal; urgency=low

  * debian/gnome-settings-daemon.gsettings-override:
    - don't enable the deprecated gconf bridge
  * debian/patches/revert_git_dropping_gconf_wrapper.patch:
    - drop the hackish gsettings to gconf copy mechanism, it shouldn't be
      required after the lts, the code is also make gsd sensible to .convert
      issues as showed recently by a file-roller update (lp: #1037646)
  * debian/rules:
    - don't use deprecated --enable-gconf-bridge

 -- Sebastien Bacher <seb128@ubuntu.com>  Mon, 20 Aug 2012 17:53:45 +0200

gnome-settings-daemon (3.4.2-0ubuntu7) quantal; urgency=low

  * debian/patches/git_better_xi_handling.patch:
    - should fix multimedia keys (lp: #1034090)
  * debian/patches/git_new_cups_build.patch:
    - build with cups 1.6

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 08 Aug 2012 15:38:57 +0200

gnome-settings-daemon (3.4.2-0ubuntu6) quantal; urgency=low

  * debian/patches/90_set_gmenus_xsettings.patch:
    - set ShellShowsAppMenu xsettings to false under unity so applications go
      back to use normal menus, should give nautilus its preferences menu
      entry back for example

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 11 Jul 2012 18:21:49 +0200

gnome-settings-daemon (3.4.2-0ubuntu5) quantal; urgency=low

  * debian/patches/10_smaller_syndaemon_timeout.patch: Update to increase
    the size of the stack allocated array for the extra argument passed to
    syndaemon. This fixes a crash in the PLT due to a corrupt %ebx register
    (which holds the GOT base address on i386), which was caused in an earlier
    function by writing zero in to the location on the stack where the value of
    %ebx is saved. Thanks to Sebastien Bacher for spotting the buggy patch!
    (fixes LP: #1007588)

 -- Chris Coulson <chris.coulson@canonical.com>  Mon, 18 Jun 2012 10:27:29 +0100

gnome-settings-daemon (3.4.2-0ubuntu4) quantal; urgency=low

  * debian/patches/62_unity_disable_gsd_printer.patch: gracefully exit the
    print-notifications plugin when running unity

 -- Lars Uebernickel <lars.uebernickel@ubuntu.com>  Mon, 11 Jun 2012 16:17:55 -0400

gnome-settings-daemon (3.4.2-0ubuntu3) quantal; urgency=low

  * Rebuild for the libgnome-desktop SOVER bump.

 -- Adam Conrad <adconrad@ubuntu.com>  Thu, 07 Jun 2012 15:59:11 -0600

gnome-settings-daemon (3.4.2-0ubuntu2) quantal; urgency=low

  * debian/patches/xsettings_signal_handling.patch:
    - upstream bugzilla patch, fix segfaults in the xsettings code which
      seem to happen at logout 
      (lp: #946295, #948347, #963704)

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 23 May 2012 21:50:41 +0200

gnome-settings-daemon (3.4.2-0ubuntu1) quantal; urgency=low

  * New upstream version:
    Media-keys:
    - Fix applications launching through keyboard shortcuts not using 
      the session's ssh agent, or keyrings
    Mouse:
    - Fix arguments passed to the custom command
    And a number of memory leak fixes and translation updates.
  * debian/patches/git_keyring_environment.patch:
    - dropped, the fix is in the new version

 -- Sebastien Bacher <seb128@ubuntu.com>  Tue, 22 May 2012 21:09:19 +0200

gnome-settings-daemon (3.4.1-0ubuntu2) quantal; urgency=low

  * debian/patches/power-check-null-devices.patch:
    - NULL-guard the return value of up_client_get_devices.
      LP: #868928
  * debian/patches/power-ignore-bad-dbus-requests.patch:
    - If we get a DBus request while the manager isn't active, ignore it.
      LP: #969535

 -- Michael Terry <mterry@ubuntu.com>  Tue, 01 May 2012 09:30:20 -0700

gnome-settings-daemon (3.4.1-0ubuntu1) precise-proposed; urgency=low

  * New upstream release:
    - Fix applying settings to touchpads
    - Fix possible crashes when exiting
    - Don't put touchscreens in relative mode, just touch tablets
      (such as the Bamboo Touch)
    - Use PrinterAddOption method to set media size
    - Updated translations
  * Drop patches which are upstream now:
    - disconnect_from_up_client.patch
    - git_device_setting.patch
    - wacom-keep-touchscreen-absolute.patch

 -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 16 Apr 2012 15:55:26 +0200

gnome-settings-daemon (3.4.0-0ubuntu7) precise; urgency=low

  * Fix LP: #917598 - Battery critical notification using fallback alert
    - add debian/patches/power-no-fallback-notifications.patch

 -- Chris Coulson <chris.coulson@canonical.com>  Thu, 12 Apr 2012 11:43:36 +0100

gnome-settings-daemon (3.4.0-0ubuntu6) precise; urgency=low

  * debian/patches/wacom-keep-touchscreen-absolute.patch:
    - Don't set touchscreens to relative mode (LP: #949097)

 -- Timo Aaltonen <tjaalton@ubuntu.com>  Wed, 11 Apr 2012 17:05:04 +0300

gnome-settings-daemon (3.4.0-0ubuntu5) precise; urgency=low

  * debian/patches/git_device_setting.patch:
    - "fix applying settings to newly added touchpads" (lp: #973784)

 -- Sebastien Bacher <seb128@ubuntu.com>  Tue, 10 Apr 2012 22:47:06 +0200

gnome-settings-daemon (3.4.0-0ubuntu4) precise; urgency=low

  * debian/patches/disconnect_from_up_client.patch:
    - Disconnect any signals from a UpClient object before we unref it.
      UpClients are ref-counted singletons and may stay around after
      unref, so we have to be explicit.  LP: #965487

 -- Michael Terry <mterry@ubuntu.com>  Mon, 09 Apr 2012 12:45:13 -0400

gnome-settings-daemon (3.4.0-0ubuntu3) precise; urgency=low

  * debian/patches/correct_logout_action.patch:
    - display the logout action on ctrl-alt-del (lp: #961501)
  * debian/patches/60_unity_hide_status_icon.patch:
    - don't show the power status icon under classic either (lp: #965279)
  * debian/patches/git_keyring_environment.patch:
    - "Get the environment from gnome-keyring When launching 
       custom applications." (lp: #839444)

 -- Sebastien Bacher <seb128@ubuntu.com>  Tue, 03 Apr 2012 17:28:40 +0200

gnome-settings-daemon (3.4.0-0ubuntu2) precise; urgency=low

  * debian/patches/10_smaller_syndaemon_timeout.patch:
    - don't change delay, use -t option to block the clicks (lp: #962958)
  * debian/patches/61_unity_use_application_indicator.patch:
    - small tweaks to be consistant with other indicators, 
      change the order and label from the two bottom items (lp: #964178)
  * debian/patches/bugzilla_segfault_dpms.patch:
    - upstream fix for a segfault (lp: #956824)
    
  [ Iain Lane ]
  * debian/patches/16_use_synchronous_notifications.patch: Fix invalid cast
    causing segfault when using keyboard backlight keys. (LP: #959874)

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 29 Mar 2012 21:43:49 +0200

gnome-settings-daemon (3.4.0-0ubuntu1) precise-proposed; urgency=low

  * New upstream release:
    - Wacom:
      Check if the "last-stylus" property has been set
    - updated translations

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 27 Mar 2012 10:50:10 +0200

gnome-settings-daemon (3.3.92-0ubuntu2) precise; urgency=low

  * 51_lock_screen_on_suspend.patch: when closing the lid, only lock the
    screen at this step if we're not going to suspend or hibernate.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Tue, 20 Mar 2012 08:39:38 -0400

gnome-settings-daemon (3.3.92-0ubuntu1) precise; urgency=low

  [ Sebastien Bacher ]
  * New upstream version, should fix
    - "Option to "Lock screen afer screen turns off" is ignored"
      (lp: #959184)
    - "color-plugin-WARNING **: failed to get edid: unable to get 
       EDID for output" (lp: #863359)
  * Dropped patches included in the new version
  * Refreshed the other patches

  [ Marc Deslauriers ]
    - 51_lock_screen_on_suspend.patch: refreshed for 3.3.92.

 -- Sebastien Bacher <seb128@ubuntu.com>  Mon, 19 Mar 2012 18:57:50 +0100

gnome-settings-daemon (3.3.91-0ubuntu6) precise; urgency=low

  * debian/patches/61_unity_use_application_indicator.patch:
    - update to fix issues where the keyboard indicator would not update
      or reflect the correct layout when changing layout with the keyboard, 
      thanks Charles Kerr (lp: #885730)

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 16 Mar 2012 11:10:43 +0100

gnome-settings-daemon (3.3.91-0ubuntu5) precise; urgency=low

  * debian/patches/52_sync_background_to_accountsservice.patch:
    - don't trigger a warning when using a solid color (lp: #954590)
  * debian/patches/90_set_gmenus_xsettings.patch:
    - update from Ryan Lortie to handle correctly new shell sessions

  [ Gunnar Hjalmarsson ]
  * debian/patches/43_disable_locale_settings.patch:
    Description updated.

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 15 Mar 2012 19:15:43 +0100

gnome-settings-daemon (3.3.91-0ubuntu4) precise; urgency=low

  * Add 01_fix_multiple_syndaemons.patch: Ensure that a spawned syndaemon gets
    killed when settings-daemon exists due to a crash, a keyboard interrupt,
    etc. This avoids having multiple syndaemons run at the same time, which
    can lead to the trackpad malfunctioning. (LP: #868400)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Wed, 14 Mar 2012 11:22:21 +0100

gnome-settings-daemon (3.3.91-0ubuntu3) precise; urgency=low

  * debian/control.in:
    - updated gsettings-desktop-schemas requirement for the lock key
  * debian/patches/61_unity_use_application_indicator.patch:
    - updated indicators ids, combined with the libappindicator new version
      that should give the correct wm_class to the fallback gtkstatusicon
      which should fix some gnome-shell issues (lp: #878951)
    - use set_icon_full() with "Keyboard" as a11y description (lp: #740726)

  [ Marc Deslauriers ]
  * Add a new preference to lock the screen when the system suspends.
    (LP: #938076)
    - 51_lock_screen_on_suspend.patch: use lock-on-suspend gsettings to
      determine if screen should be locked.
    - 51_always_lock_screen_on_suspend.patch: removed.
    - 54_lazily_connect_to_screensaver.patch: refreshed.
    - 60_unity_hide_status_icon.patch: refreshed.

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 09 Mar 2012 18:25:40 +0100

gnome-settings-daemon (3.3.91-0ubuntu2) precise; urgency=low

  * debian/patches/git_power_logic.patch: fix logic error, should restore
    the screen controls (lp: #947748)

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 07 Mar 2012 11:46:50 +0100

gnome-settings-daemon (3.3.91-0ubuntu1) precise; urgency=low

  * New upstream version:
    - fix segfault with some wacom devices (lp: #945477)
  * debian/patches/git_wacom_fix.patch:
    - dropped, the fix is in the new version
  * debian/rules: disable pkgkit support explicitly

 -- Sebastien Bacher <seb128@ubuntu.com>  Mon, 05 Mar 2012 21:17:42 +0100

gnome-settings-daemon (3.3.90-0ubuntu4) precise; urgency=low

  * Renamed unity patches to start with <num>_unity and be in the same range,
    it makes easier to see what patches we have
  * debian/control.in:
    - updated libappindicator version requirement for set_title()
  * debian/patches/60_unity_hide_status_icon.patch:
    - updated to fix a case not handled before (lp: #934582)
  * debian/patches/61_unity_use_application_indicator.patch:
    - set an indicator title for the unity hud benefit (lp: #943319) 

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 29 Feb 2012 18:28:11 +0100

gnome-settings-daemon (3.3.90-0ubuntu3) precise; urgency=low

  * debian/patches/git_wacom_fix.patch:
    - deal better with some wacom devices to avoiding segfaults (lp: #934445)
  * debian/source_gnome-settings-daemon.py:
    - correctly separate tags with spaces so they don't get concatenated

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 24 Feb 2012 12:39:29 +0100

gnome-settings-daemon (3.3.90-0ubuntu2) precise; urgency=low

  * debian/gnome-settings-daemon.install:
    - install the hook

 -- Sebastien Bacher <seb128@ubuntu.com>  Tue, 21 Feb 2012 22:28:16 +0100

gnome-settings-daemon (3.3.90-0ubuntu1) precise; urgency=low

  * New upstream version
  * debian/control.in:
    - build-depends on libxtst-dev and xserver-xorg-input-wacom
    - updated glib requirement
  * debian/patches/buggy_error_handling_segfault.patch:
    - dropped, the patch is in the new version
  * debian/patches/git_numlock_status.patch:
    - dropped, the patch is in the new version
  * debian/rules: 
    - drop -Bsymbolic-functions workaround, upstream fixed the issue
  * debian/source_gnome-settings-daemon.py:
    - set title and tag with the component which had issues for segfaults

 -- Sebastien Bacher <seb128@ubuntu.com>  Tue, 21 Feb 2012 12:37:47 +0100

gnome-settings-daemon (3.3.5-0ubuntu3) precise; urgency=low

  * debian/patches/buggy_error_handling_segfault.patch:
    - don't try to print an unset error variable (lp: #932953)

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 16 Feb 2012 17:03:26 +0100

gnome-settings-daemon (3.3.5-0ubuntu2) precise; urgency=low

  * debian/patches/git_numlock_status.patch:
    - correctly update the numlock status (lp: #933405)

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 16 Feb 2012 15:47:19 +0100

gnome-settings-daemon (3.3.5-0ubuntu1) precise; urgency=low

  * New upstream version (lp: #931656), refreshed patches, 
    thanks Jeremy Bicha for starting the work on the new version:
    - change the sound level by device (lp: #340720)
    - correctly unassign keybindings (lp: #515670)
    - define keybinding to take a screenshot of a selection (lp: #625518)
    - resolve some segfaults (lp: #865286)
  * debian/control.in:
    - build-depends on libgudev-1.0-dev
    - breaks unity-greeter (<< 0.2.1-0ubuntu1) due to the wacom schema rename
    - build-depends on libwacom
    - updated gtk, gnome-desktop3, g-d-s, upower requirements
  * debian/gnome-settings-daemon.gsettings-override:
    - don't set deprecated "sleep-inactive-battery" key
  * debian/patches/90_set_gmenus_xsettings.patch:
    - refreshed, we don't handle gnome-shell xsettings yet because we still
      ship 3.2, that patch will need an update if we go for the new version
  * debian/patches/git_gsettings_write_only_when_required.patch;
    debian/patches/50_add_dell_backlight.patch:
    - dropped the fix is in the new version
  * debian/patches/47_delay_pa_connect_to_idle.patch:
    - commented, will need to be updated if still needed
  * debian/patches/revert_git_datetime_dropping.patch:
    - revert the datetime service dropping, ubuntu-system-service doesn't
      implement the timedated interfaces
  * debian/patches/revert_git_dropping_gconf_wrapper.patch:
    - revert the gconf code dropping, we might still need the settings
      gateway for the lts (though it's a bit hackish)
  * debian/patches/revert_git_use_gsetting_keybindings.patch:
    - revert the keybindings switch to gsettings, compiz is not ready,
      it's likely possible to update the patch to do either according to
      the session in use at runtime if somebody wants to work on that
  * debian/patches/revert_git_a11y_gsettings.patch:
    - similar to the previous one
  * debian/patches/revert_git_stop_using_gconf.patch:
    - don't stop using gconf, the other patches listed before need it
  * debian/rules:
    - don't use -Bsymbolic-functions to workaround upstream issues
    - drop deprecated --enable-pulse option
    - use --disable-systemd
  * debian/watch:
    - watch for .xz

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 15 Feb 2012 11:41:52 +0100

gnome-settings-daemon (3.2.2-3) unstable; urgency=low

  * Correctly lock the screensaver on lid-close when lid-close action is set
    to blank and lock is enabled. Patch cherry-picked from upstream Git.
    Closes: #662747

 -- Michael Biebl <biebl@debian.org>  Fri, 16 Mar 2012 14:46:08 +0100

gnome-settings-daemon (3.2.2-2) unstable; urgency=low

  [ Sjoerd Simons ]
  * debian/patches/01-xrandr-correct-the-type-of-the-rotation-parameter.patch:
    + Added, fix handling of XF86RotateWindows (bgo#664363)

  [ Michael Biebl ]
  * Upload to unstable.

 -- Michael Biebl <biebl@debian.org>  Sat, 17 Dec 2011 00:12:47 +0100

gnome-settings-daemon (3.2.2-1) experimental; urgency=low

  [ Sjoerd Simons ]
  * New upstream release (3.2.2-1)
  * debian/control.in: Add liblcms2-dev to the build-depends for display color
    management
  * debian/gnome-settings-daemon.install: Also install the helper service files

  [ Josselin Mouette ]
  * Disable -z defs on ia64. This should really be avoided because it
    can cause runtime errors, but since binutils won’t be fixed it
    causes runtime errors anyway. Closes: #537572.

  [ Sjoerd Simons ]
  * Set -z,defs *before* setting --warn-unresolved-symbols in the linker flags
    otherwise the build will fail with unresolved symbol *errors*

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 13 Nov 2011 16:25:33 +0100

gnome-settings-daemon (3.2.2-0ubuntu17) precise; urgency=low

  * debian/patches/disable_three_touch_tap.patch
    - Disable three-touch tap so three-touch gestures work

 -- Chase Douglas <chase.douglas@ubuntu.com>  Mon, 13 Feb 2012 21:45:07 -0800

gnome-settings-daemon (3.2.2-0ubuntu16) precise; urgency=low

  * debian/patches/06_use_application_indicator.patch:
    - Check for gtk3 version of libappindicator, not gtk2
  * debian/patches/sync_keyboard_layout_to_accountsservice.patch:
    - Sync user's list of layouts to accountsservice so it can in turn
      inform LightDM.  LP: #915468

 -- Michael Terry <mterry@ubuntu.com>  Mon, 13 Feb 2012 10:40:21 -0500

gnome-settings-daemon (3.2.2-0ubuntu15) precise; urgency=low

  * debian/patches/46_share_rr_screen.patch:
    - dropped that optimization, upstream fixed it in gnome-desktop instead

 -- Sebastien Bacher <seb128@ubuntu.com>  Mon, 06 Feb 2012 11:09:47 +0100

gnome-settings-daemon (3.2.2-0ubuntu14) precise; urgency=low

  * debian/patches/51_always_lock_screen_on_suspend.patch: added missing
    brackets that was preventing screen locking from working at all.
    (LP: #924336)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Tue, 31 Jan 2012 10:10:41 -0500

gnome-settings-daemon (3.2.2-0ubuntu13) precise; urgency=low

  * debian/patches/51_always_lock_screen_on_suspend.patch: updated to
    lock the screen on suspend and hibernate, but only if the user hasn't
    configured autologin.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Sat, 28 Jan 2012 16:15:17 -0500

gnome-settings-daemon (3.2.2-0ubuntu12) precise; urgency=low

  * Updated some patches with bug references
  * debian/patches/02_missing_libs.patch:
    - dropped, that patch is a leftover and not required nowadays
  * debian/patches/16_use_synchronous_notifications.patch:
    - use the correct widget so the media key sounds work (lp: #909407)

  [ Martin Pitt ]
  * debian/gnome-settings-daemon.gsettings-override: Set default idle dim time
    to 30 seconds. 10 seconds is a bit unnerving when you want to read
    something or show photos. (LP: #918928)

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 26 Jan 2012 22:36:41 +0100

gnome-settings-daemon (3.2.2-0ubuntu11) precise; urgency=low

  * debian/patches/git_gsettings_write_only_when_required.patch:
    - git patch, don't write to gsettings when not required (i.e on login)

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 19 Jan 2012 19:46:01 +0100

gnome-settings-daemon (3.2.2-0ubuntu10) precise; urgency=low

  * Rebuild with the newest pkgbinarymangler (lp: #913085)
  * debian/control.in: build-depends on libnss3-dev for smartcard support

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 13 Jan 2012 17:32:40 +0100

gnome-settings-daemon (3.2.2-0ubuntu9) precise; urgency=low

  * Rebuild with fixed pkgbinarymangler (lp: #913085), 
    that should fix broke permissions errors (lp: #915600)

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 13 Jan 2012 11:44:32 +0100

gnome-settings-daemon (3.2.2-0ubuntu8) precise; urgency=low

  * debian/patches/90_set_gmenus_xsettings.patch:
    - set the ShellShowsMenubar and ShellShowsAppMenu xsettings under unity

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 12 Jan 2012 11:34:38 +0100

gnome-settings-daemon (3.2.2-0ubuntu7) precise; urgency=low

  * Add 54_lazily_connect_to_screensaver.patch: Do not D-BUS activate
    gnome-screensaver right at startup, this unnecessarily slows down boot
    speed. Instead, D-BUS activate it the first time we actually need it.
    (LP: #912186)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Thu, 05 Jan 2012 12:42:24 +0100

gnome-settings-daemon (3.2.2-0ubuntu6) precise; urgency=low

  * Add 53_disable_gsd_printer_on_unity.patch: Disable gsd-printer plugin
    under Unity. We are still using system-config-printer for this, so no need
    to start another service for this.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Wed, 04 Jan 2012 16:15:47 +0100

gnome-settings-daemon (3.2.2-0ubuntu5) precise; urgency=low

  * debian/patches/52_sync_background_to_accountsservice.patch:
    - Watch background gsettings value and synchronize it to the
      accountsservice daemon for the benefit of unity-greeter

 -- Michael Terry <mterry@ubuntu.com>  Fri, 09 Dec 2011 15:35:40 -0500

gnome-settings-daemon (3.2.2-0ubuntu4) precise; urgency=low

  * 42_onlyshowin_unity.patch: the gnome-shell session is called "gnome", use
    the correct name so nautilus doesn't open in shell sessions (lp: #892989)

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 02 Dec 2011 12:12:29 +0100

gnome-settings-daemon (3.2.2-0ubuntu3) precise; urgency=low

  * Upload for Precise

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Wed, 16 Nov 2011 12:59:33 +0100

gnome-settings-daemon (3.2.2-0ubuntu2) oneiric-proposed; urgency=low

  * debian/patches/07_hide_status_icon_on_unity.patch:
    - Never show the power status icon when running Unity (LP: #833397)

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 15 Nov 2011 11:12:54 +0100

gnome-settings-daemon (3.2.2-0ubuntu1) oneiric-proposed; urgency=low

  * New upstream release (LP: #888526)
  * debian/patches/00git_remove_assertions.patch:
  * debian/patches/git_correct_suspend_bus.patch:
    - Remove upstreamed patches
  * debian/patches/16_use_synchronous_notifications.patch:
  * debian/patches/45_suppress-printer-may-not-be-connected-notification.patch:
    - Rebased

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Thu, 10 Nov 2011 12:15:05 +0100

gnome-settings-daemon (3.2.1-1) experimental; urgency=low

  [ Michael Biebl ]
  * Use the new maintscript facility in dh_installdeb to remove the obsolete
    conffiles:
    - Bump Build-Depends on debhelper to (>= 8.1.0~).
    - Add Pre-Depends: ${misc:Pre-Depends}.
    - Replace preinst/postinst/postrm scripts with a
      gnome-settings-daemon.maintscript file.

  [ Josselin Mouette ]
  * 04_superP.patch: new patch. Allow to reconfigure the Super-P 
    shortcut which is otherwise hardcoded to VIDEO_OUT.

  [ Sjoerd Simons ]
  * New upstream release (3.2.1)
  * debian/patches/01_medias_keys_dont_go_up_to_11.patch:
    + Removed, merged upsteram
  * debian/patches/02_missing_format.patch:
    + Removed, fixed upstream
  * debian/patches/03_deal_with_absence_of_gnome-session.patch:
    + Removed, merged upstream
  * debian/patches/04_superP.patch: Refreshed
  * debian/control.in: Update build-depends
  * debian/control.in: Add hwdata and libcolord-dev build-depends
  * debian/control.in: make gnome-settings-daemon recommend hwdata
  * debian/control.in: Make the gsettings-desktop-schemas depend more precise

 -- Sjoerd Simons <sjoerd@debian.org>  Wed, 26 Oct 2011 14:01:21 +0200

gnome-settings-daemon (3.2.1-0ubuntu3) oneiric-proposed; urgency=low

  * debian/patches/00git_remove_assertions.patch:
    - git patch to remove assertions that shouldn't be there (LP: #878486)

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 25 Oct 2011 12:52:39 +0200

gnome-settings-daemon (3.2.1-0ubuntu2) oneiric-proposed; urgency=low

  [ Didier Roche ]
  * debian/patches/16_use_synchronous_notifications.patch:
    - make our patch using the new icon name (LP: #877058)

  [ Sebastien Bacher ]
  * debian/patches/git_correct_suspend_bus.patch:
    - git patch to fix a suspend regression in the new version (lp: #878076)

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 19 Oct 2011 17:25:16 +0200

gnome-settings-daemon (3.2.1-0ubuntu1) oneiric-proposed; urgency=low

  * New upstream release (LP: #877326)
  * debian/patches/00git_dont_restore_brightness.patch:
  * debian/patches/00git_fix_reference_leaks.patch:
  * debian/patches/00git_fix_async_dbus_crash.patch:
  * debian/patches/00git_dont_sleep_on_idle_by_default.patch:
  * debian/patches/00git_dont_revert_pre_idle_brigthness.patch:
  * debian/patches/00git_avoid_undesired_sleeps.patch:
  * debian/patches/49_fix_suspend_media_key.patch:
    - Remove upstreamed patches
  * debian/patches/16_use_synchronous_notifications.patch:
    - Rebased

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 18 Oct 2011 11:29:23 +0200

gnome-settings-daemon (3.2.0-0ubuntu5) oneiric; urgency=low

  [ Rodrigo Moya ]
  * debian/patches/00git_avoid_undesired_sleeps.patch:
    - Avoid sleeping the computer when disabled (LP: #864479) and ditto for
      the display (LP: #863038)

  [ Marc Deslauriers ]
  * debian/patches/51_always_lock_screen_on_suspend.patch:
    - always lock the screen when suspending or hibernating, even if
      automatic screen lock is disabled. (LP: #847814)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Mon, 03 Oct 2011 17:23:23 -0400

gnome-settings-daemon (3.2.0-0ubuntu4) oneiric; urgency=low

  * debian/patches/00git_dont_sleep_on_idle_by_default.patch:
    - Don't sleep on idle by default (LP: #860485)
  * debian/patches/00git_dont_revert_pre_idle_brigthness.patch:
    - Do not revert to the pre-idle brightness if idle dimming is disabled
  * debian/patches/50_add_dell_backlight.patch:
    - Add 'dell_backlight' module to gsd-backlight-helper (LP: #862474)

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Thu, 29 Sep 2011 16:47:57 +0200

gnome-settings-daemon (3.2.0-0ubuntu3) oneiric; urgency=low

  * debian/patches/00git_fix_async_dbus_crash.patch:
    - Fix async DBus calls crashes (LP: #832603)
  * debian/patches/49_fix_suspend_media_key.patch:
    - Rebased

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Wed, 28 Sep 2011 17:14:53 +0200

gnome-settings-daemon (3.2.0-0ubuntu2) oneiric; urgency=low

  * debian/patches/49_fix_suspend_media_key.patch: Fix screen locking when
    suspending via a media key. (LP: #859498)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Tue, 27 Sep 2011 11:34:03 -0400

gnome-settings-daemon (3.2.0-0ubuntu1) oneiric; urgency=low

  * New upstream release
  * debian/patches/00git_dont_restore_brightness.patch:
    - Don't restore brightness if it's never been set
  * debian/patches/00git_fix_reference_leaks.patch:
    - Fix 2 small reference leaks

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Mon, 26 Sep 2011 17:57:20 +0200

gnome-settings-daemon (3.1.92-0ubuntu3) oneiric; urgency=low

  * Fix LP: #854101 - various startup time improvements:
  * debian/patches/46_share_rr_screen.patch:
    - Share a single GnomeRRScreen across plugins, rather than having the
      xrandr, color and power plugins each create their own, which results
      in 3 reprobes before running the main loop. Thanks to Rodrigo Moya for
      tidying this up a bit.
  * debian/patches/47_delay_pa_connect_to_idle.patch:
    - Don't connect to pulseaudio until we are running the main loop. Starting
      pulseaudio seems to block for around a second here on my machine
  * debian/patches/48_register_client_before_idle_callbacks.patch:
    - Create the GDBusProxy for gnome-session synchronously, and then schedule
      the RegisterClient call with a higher priority. This ensures that we
      register with the session manager as soon as we start the main loop, and
      before running any other idle callbacks

  * debian/patches/16_use_synchronous_notifications.patch:
    - Make the volume notifications work correctly again

 -- Chris Coulson <chris.coulson@canonical.com>  Thu, 22 Sep 2011 15:44:40 +0100

gnome-settings-daemon (3.1.92-0ubuntu2) oneiric; urgency=low

  * debian/patches/45_suppress-printer-may-not-be-connected-notification.patch:
    Do not show notifications if the printer state reason "connecting-to-device"
    is reported by CUPS. The text of this state reason notificatioon is the
    misleading "Printer XXX may not be connected" and the reason is set in
    every print job (usually only for a short time but enough to trigger the
    notifier). As we are after UI freeze we simply suppress this notification
    with this patch (do not forward upstream). The real fix would be improving
    the text, like really saying "Connecting to printer XXX ..." (LP: #842768).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Thu, 15 Sep 2011 18:34:24 +0200

gnome-settings-daemon (3.1.92-0ubuntu1) oneiric; urgency=low

  * New upstream release
  * debian/control:
    - Bump libcolord-dev build dependency
  * debian/patches/00git_guard_against_division_by_0.patch:
  * debian/patches/00git_dont_crash_if_session_not_ready.patch:
  * debian/patches/00git_numlock_status.patch:
  * debian/patches/00git_disconnect_callbacks.patch:
    - Remove upstream patches
  * debian/patches/06_use_application_indicator.patch:
  * debian/patches/16_use_synchronous_notifications.patch:
    - Rebased

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Mon, 19 Sep 2011 17:05:48 +0200

gnome-settings-daemon (3.1.91-0ubuntu5) oneiric; urgency=low

  * debian/patches/00git_disconnect_callbacks.patch:
    - Disconnect callbacks when cleaning up (LP: #837373)

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 13 Sep 2011 11:00:41 +0200

gnome-settings-daemon (3.1.91-0ubuntu4) oneiric; urgency=low

  * debian/patches/00git_numlock_status.patch:
    - git backport, store the numlock status and apply it (lp: #841748)

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 09 Sep 2011 15:16:09 +0200

gnome-settings-daemon (3.1.91-0ubuntu3) oneiric; urgency=low

  * debian/control:
    - Build depend on libgnome-desktop3-dev >= 3.1.5, which is what upstream
      asks for
  * debian/patches/00git_guard_against_division_by_0.patch:
    - Guard against dividing by 0 in ABS_TO_PERCENTAGE macro (LP: #833595)
  * debian/patches/00git_dont_crash_if_session_not_ready.patch:
    - Don't crash if we try to calculate the idle state before connected to
      the session (LP: #836014)

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Wed, 07 Sep 2011 12:07:45 +0200

gnome-settings-daemon (3.1.91-0ubuntu2) oneiric; urgency=low

  * Fix the volume OSD patch so that the volume level is displayed correctly
    again
    - update debian/patches/16_use_synchronous_notifications.patch

 -- Chris Coulson <chris.coulson@canonical.com>  Mon, 05 Sep 2011 17:40:06 +0100

gnome-settings-daemon (3.1.91-0ubuntu1) oneiric; urgency=low

  * New upstream release
  * debian/patches/01_git_do_power_init_in_start.patch:
  * debian/patches/01_git_double_check_hash_table.patch:
  * debian/patches/01_git_fix_brightness_step_amount.patch:
    - Remove upstreamed patches

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Mon, 05 Sep 2011 16:48:28 +0200

gnome-settings-daemon (3.1.90-0ubuntu3) oneiric; urgency=low

  * debian/patches/01_git_double_check_hash_table.patch:
    - Double check stuff we add to the hash table to avoid crashes when cleaning up
      (LP: #839322)

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Fri, 02 Sep 2011 16:17:24 +0200

gnome-settings-daemon (3.1.90-0ubuntu2) oneiric; urgency=low

  * debian/patches/01_git_fix_brightness_step_amount.patch:
    - Fix BRIGHTESS_STEP_AMOUNT calculation macro (LP: #827517)
  * debian/patches/01_git_do_power_init_in_start.patch:
    - Do power plugin initialization in _start, not _init, to avoid multiple
      crashes (LP: #836014)

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Thu, 01 Sep 2011 10:33:58 +0200

gnome-settings-daemon (3.1.90-0ubuntu1) oneiric; urgency=low

  * New upstream release
  * debian/patches/16_use_synchronous_notifications.patch:
  * debian/patches/42_onlyshowin_unity.patch:
    - Rebased patches
  * debian/patches/44_lock_before_suspend.patch:
    - Remove upstream patch

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Mon, 29 Aug 2011 16:04:57 +0200

gnome-settings-daemon (3.1.5-0ubuntu6) oneiric; urgency=low

  * debian/patches/44_lock_before_suspend.patch: ensure the screen is
    locked before suspending. (LP: #824188)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Thu, 25 Aug 2011 23:44:36 -0400

gnome-settings-daemon (3.1.5-0ubuntu5) oneiric; urgency=low

  * Make the keyboard backlight notification use notify-osd too
    - update debian/patches/16_use_synchronous_notifications.patch

 -- Chris Coulson <chris.coulson@canonical.com>  Tue, 23 Aug 2011 15:26:34 +0100

gnome-settings-daemon (3.1.5-0ubuntu4) oneiric; urgency=low

  * Make the brightness osd use synchronous notify-osd notifications
    - update debian/patches/16_use_synchronous_notifications.patch
  * Add missing liblcms2-dev build-dep
    - update debian/control{.in}

 -- Chris Coulson <chris.coulson@canonical.com>  Mon, 22 Aug 2011 22:00:23 +0100

gnome-settings-daemon (3.1.5-0ubuntu3) oneiric; urgency=low

  * debian/gnome-settings-daemon.gsettings-override:
    - Enable GConf bridge plugin by default 
  * debian/patches/10_smaller_syndaemon_timeout.patch:
    - Use a smaller timeout for syndaemon (LP: #801763)

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Mon, 22 Aug 2011 10:46:19 +0200

gnome-settings-daemon (3.1.5-0ubuntu1) oneiric; urgency=low

  * New upstream release
  * debian/patches/06_use_application_indicator.patch:
    - Rebased

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 16 Aug 2011 10:31:48 +0200

gnome-settings-daemon (3.1.4-0ubuntu5) oneiric; urgency=low

  * debian/patches/43_disable_locale_settings.patch:
    - Don't set locales since they are set in Oneiric by sourcing
      ~/.profile.

 -- Gunnar Hjalmarsson <ubuntu@gunnar.cc>  Mon, 15 Aug 2011 10:14:05 +0200

gnome-settings-daemon (3.1.4-0ubuntu4) oneiric; urgency=low

  * debian/control:
  * debian/patches/series:
  * debian/patches/03_disable_colord.patch:
    - Enable building with colord (LP: #788108)

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Thu, 11 Aug 2011 13:57:00 +0200

gnome-settings-daemon (3.1.4-0ubuntu3) oneiric; urgency=low

  * debian/patches/42_onlyshowin_unity.patch:
    - tweak the new automount .desktop as well to run under unity (lp: #816774)

 -- Sebastien Bacher <seb128@ubuntu.com>  Mon, 01 Aug 2011 18:09:29 +0200

gnome-settings-daemon (3.1.4-0ubuntu2) oneiric; urgency=low

  * debian/control:
    - Add missing build dependency on libupower-glib-dev

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 26 Jul 2011 15:34:10 +0200

gnome-settings-daemon (3.1.4-0ubuntu1) oneiric; urgency=low

  * New upstream release
  * debian/control:
    - bumo libgnome-desktop dependency
  * debian/patches/01_git_a11y_keyboard_cleanup.patch:
  * debian/patches/41_fix_key_grab.patch:
    - Remove upstreamed patches
  * debian/patches/06_use_application_indicator.patch:
  * debian/patches/16_use_synchronous_notifications.patch:
    - Rebased

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Mon, 25 Jul 2011 12:00:12 +0200

gnome-settings-daemon (3.1.3-0ubuntu7) oneiric; urgency=low

  * debian/patches/42_onlyshowin_unity.patch:
    - Add Unity to OnlyShowIn value (LP: #803519)
  * debian/control.in:
    - Remove Debian's Vcs fields

 -- Michael Terry <mterry@ubuntu.com>  Tue, 19 Jul 2011 15:02:18 -0400

gnome-settings-daemon (3.1.3-0ubuntu6) oneiric; urgency=low

  * debian/gnome-settings-daemon.gsettings-override:
    - Turn on autosleep on battery for Energy Star 5.0 compliance (LP: #604635)
    - Suspend by default when system sleep button is pressed
    - Suspend by default for low battery as hibernate can be slow & unreliable

 -- Jeremy Bicha <jbicha@ubuntu.com>  Mon, 18 Jul 2011 08:03:30 +0200

gnome-settings-daemon (3.1.3-0ubuntu5) oneiric; urgency=low

  * debian/patches/01_git_shorter_syndaemon_delay.patch:
    - Remove this patch, it fixes the annoyance for some users and breaks it
      for others
  * debian/patches/17_react_when_streams_removed.patch:
    - Remove patch not being applied and already upstream
  * debian/patches/01_git_a11y_keyboard_cleanup.patch:
    - Do proper cleanup when the plugin is stopped (LP: #804946)
  * debian/patches/06_use_application_indicator.patch:
    - Rebased

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 12 Jul 2011 13:04:51 +0200

gnome-settings-daemon (3.1.3-0ubuntu4) oneiric; urgency=low

  [ Marco Trevisan (Treviño) <mail@3v1n0.net> ]
  * debian/patches/06_use_application_indicator.patch
    - Updated to support libappindicator scroll event to change
      the keyboard layout via mouse-wheel

  [ Chris Coulson <chris.coulson@canonical.com> ]
  * Fix the volume OSD notifications to work properly again (when the
    media keys work properly)
    - update debian/patches/16_use_synchronous_notifications.patch
  * Fix the logic in grab_key_unsafe to not reject keys which are useful
    to grab without a modifier. Fixes the media-keys plugin
    - add debian/patches/41_fix_key_grab.patch

 -- Chris Coulson <chris.coulson@canonical.com>  Wed, 13 Jul 2011 00:13:36 +0100

gnome-settings-daemon (3.1.3-0ubuntu3) oneiric; urgency=low

  * debian/gnome-settings-daemon.gsettings-override: Set default action for
    power button back to 'interactive'. (LP: #806855)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 11 Jul 2011 12:19:38 +0200

gnome-settings-daemon (3.1.3-0ubuntu2) oneiric; urgency=low

  * debian/patches/06_use_application_indicator.patch:
    - Fix typo in keyboard indicator icon name (LP: #805743)

 -- Robert Ancell <robert.ancell@canonical.com>  Tue, 05 Jul 2011 11:35:37 +1000

gnome-settings-daemon (3.1.3-0ubuntu1) oneiric; urgency=low

  * New upstream release
  * debian/patches/01_git_check_touchpad.patch:
    - Remove upstreamed patch
  * debian/patches/06_use_application_indicator.patch:
    - Rebased

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Mon, 04 Jul 2011 22:21:28 +0200

gnome-settings-daemon (3.1.2-0ubuntu2) oneiric; urgency=low

  * debian/patches/01_git_shorter_syndaemon_delay.patch:
    - Make syndaemon delay shorter (LP: #801763)

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Wed, 29 Jun 2011 11:31:41 +0200

gnome-settings-daemon (3.1.2-0ubuntu1) oneiric; urgency=low

  * New upstream release
  * debian/control:
    - Bump dependency on libgnome-desktop-3-dev
    - Conflict with gnome-color-manager < 3.0
    - Build-Depend on hwdata
  * debian/watch:
    - Watch .bz2 tarball and unstable series
  * debian/patches/06_use_application_indicator.patch:
  * debian/patches/16_use_synchronous_notifications.patch:
    - Rebased
  * debian/patches/03_disable_colord.patch:
    - Disable color plugin if colord is not found
  * debian/patches/01git_add_missing_schema_for_gconf.patch:
    - Remove upstreamed patch
  * debian/patches/01_git_check_touchpad.patch:
    - Add GIT patch to only disable touchpad, not all input devices

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Fri, 24 Jun 2011 12:33:25 +0200

gnome-settings-daemon (3.0.3-3) unstable; urgency=low

  * debian/patches/03_deal_with_absence_of_gnome-session.patch:
    - Deal with absence of gnome-session gracefully and don't crash if
      gnome-session is not running. Patch cherry-picked from upstream Git.
      Closes: #645429
  * Remove obsolete conffiles in /etc/gnome/config on upgrades.
    Closes: #645443

 -- Michael Biebl <biebl@debian.org>  Mon, 17 Oct 2011 18:07:27 +0200

gnome-settings-daemon (3.0.3-2) unstable; urgency=low

  * debian/control.in:
    - Make libgudev-1.0-dev linux-any.

 -- Michael Biebl <biebl@debian.org>  Fri, 14 Oct 2011 16:14:37 +0200

gnome-settings-daemon (3.0.3-1) unstable; urgency=low

  [ Jean Schurger ]
  * New upstream release.
  * Removed 01_numlock.patch (b-g-o #631989 is fixed)
  * Added 01_medias_keys_dont_go_up_to_11.patch
  * Added 02_missing_format.patch
  * debian/control.in
    - Standards-Version is 3.9.2, no changes needed.
    - Added dependencied to enable the update plugin (packagekit)
    - Bumped pulseaudio dependency according to the volume patch

  [ Josselin Mouette ]
  * Move g-s-d-dev to libdevel. Closes: #640125.

  [ Jordi Mallach ]
  * Update Vcs-* fields to new URLs.

  [ Michael Biebl ]
  * Upload to unstable.
  * debian/watch:
    - Switch to version 3.
    - Track .xz tarballs.
  * Bump debhelper compatibility level to 8.
    - Update Build-Depends on debhelper.
    - Strip debian/tmp/ from .install files.

 -- Michael Biebl <biebl@debian.org>  Fri, 14 Oct 2011 13:17:13 +0200

gnome-settings-daemon (3.0.2-1ubuntu4) oneiric; urgency=low

  * debian/control.in: stop depending on libgnome2-common

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 10 Jun 2011 18:48:41 +0200

gnome-settings-daemon (3.0.2-1ubuntu3) oneiric; urgency=low

  * debian/patches/01git_add_missing_schema_for_gconf.patch:
    - Add upstream patch to add missing GSettings schema for GConf conversion
      plugin

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Fri, 10 Jun 2011 16:29:26 +0200

gnome-settings-daemon (3.0.2-1ubuntu2) oneiric; urgency=low

  * debian/patches/20_migrate_background_uri.patch:
    - Convert old filenames to an URI, to have migration of GConf background
      to GSettings work correctly

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 07 Jun 2011 16:33:00 +0200

gnome-settings-daemon (3.0.2-1ubuntu1) oneiric; urgency=low

  * New upstream release
  * debian/patches/16_use_synchronous_notifications.patch:
    - Rebased
  * debian/patches/41_dont_convert_nonexistant_key.patch:
    - Removed upstreamed patch

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 24 May 2011 11:27:08 +0200

gnome-settings-daemon (3.0.2-1) experimental; urgency=low

  [ Guido Günther ]
  * Bump build-dependency on libgnome-desktop-3-dev (Closes: #622689)

  [ Josselin Mouette ]
  * Break gdm3 < version with GSettings support.
  * New upstream release.
  * 01_numlock.patch: new patch. Work around the lack of support for 
    per-host NumLock status by providing at least a global setting. It 
    can turn wrong in multi-host environments, but it’s better than 
    nothing in the general case.

 -- Josselin Mouette <joss@debian.org>  Sat, 04 Jun 2011 18:33:11 +0200

gnome-settings-daemon (3.0.1-1ubuntu4) oneiric; urgency=low

  * debian/gnome-settings-daemon.gconf-defaults:
  * debian/gnome-settings-daemon.gsettings-override:
    - Move default GConf settings to GSettings

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Mon, 23 May 2011 16:06:19 +0200

gnome-settings-daemon (3.0.1-1ubuntu3) oneiric; urgency=low

  * Don't try to convert show-keyboard-leds-indicator in
    gnome-settings-daemon.convert. It has no schema, and makes
    gsettings-data-convert crash
    - add debian/patches/41_dont_convert_nonexistant_key.patch
    - update debian/patches/series

 -- Chris Coulson <chris.coulson@canonical.com>  Fri, 20 May 2011 11:45:37 +0100

gnome-settings-daemon (3.0.1-1ubuntu2) oneiric; urgency=low

  * debian/patches/06_use_application_indicator.patch:
    - GkbKeyboardConfig's layouts_variants is now an array of strings, not
      a list. Fixes crash

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Wed, 18 May 2011 10:40:17 +0200

gnome-settings-daemon (3.0.1-1ubuntu1) oneiric; urgency=low

  * New upstream release

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 17 May 2011 16:37:27 +0200

gnome-settings-daemon (3.0.0.1-1ubuntu4) oneiric; urgency=low

  * debian/control:
    - Rename build dependency from libnotify4-dev to libnotify-dev

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Tue, 17 May 2011 12:17:12 +0200

gnome-settings-daemon (3.0.0.1-1ubuntu3) oneiric; urgency=low

  * debian/patches/06_use_application_indicator.patch:
    - Fix call to xkl_engine_get_instance to pass a Display, not a GdkDisplay

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Wed, 11 May 2011 09:25:54 +0200

gnome-settings-daemon (3.0.0.1-1ubuntu2) oneiric; urgency=low

  * debian/patches/06_use_application_indicator.patch:
    - Fix call to non existing API

 -- Rodrigo Moya <rodrigo.moya@canonical.com>  Mon, 09 May 2011 11:24:49 +0200

gnome-settings-daemon (3.0.0.1-1) experimental; urgency=low

  * New upstream release.

 -- Frederic Peters <fpeters@debian.org>  Mon, 28 Mar 2011 11:37:24 +0530

gnome-settings-daemon (2.91.93-1) experimental; urgency=low

  * New upstream release.

 -- Frederic Peters <fpeters@debian.org>  Sun, 27 Mar 2011 19:15:59 +0530

gnome-settings-daemon (2.91.92-1) experimental; urgency=low

  * New upstream release.

 -- Frederic Peters <fpeters@debian.org>  Wed, 23 Mar 2011 19:24:48 +0100

gnome-settings-daemon (2.91.91-1) experimental; urgency=low

  [Frederic Peters]
  * New upstream release.

  [Emilio Pozuelo Monfort]
  * debian/control.in:
    + Re-add build dependency on libxklavier-dev, since configure.ac
      actually requires it.

 -- Frederic Peters <fpeters@debian.org>  Tue, 08 Mar 2011 19:17:09 +0100

gnome-settings-daemon (2.91.90-2) experimental; urgency=low

  * debian/control.in:
    * Add build-dep on recent libgnomekbd-dev
    * Remove direct build-depend on libxklavier-dev, libgnomekbd-dev will pull
      in the right version

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 26 Feb 2011 21:26:07 +0000

gnome-settings-daemon (2.91.90-1) experimental; urgency=low

  * New upstream release.
    - gnome-settings-daemon.install: keybindings for accessibility tools
      have been moved to the gnome-control-center module.

 -- Frederic Peters <fpeters@debian.org>  Tue, 22 Feb 2011 22:49:26 +0100

gnome-settings-daemon (2.91.9-1) experimental; urgency=low

  [ Sebastien Bacher ]
  * debian/gnome-settings-daemon.install:
    - install the polkit files there
  * debian/control.in:
    - build-depends on libpolkit-gobject-1-dev
    - drop the build-depends on libxrandr-dev and libxrender-dev, the 
      configure doesn't use those in the new version
    - recommends pulseaudio since it's used for the multimedia keys
    (Close: #611198)

  [ Emilio Pozuelo Monfort ]
  * debian/patches/02_missing_libs.patch:
    + Removed. This was fixed upstream in a different way a long time
      ago. The patch was also disabled on 2.91.5.1-1 without any bad
      consequences.
  * New upstream release.
    + d/patches/0001-Ensure-the-volume-doesn-t-underflow-and-wrap-around.patch,
      d/patches/13_monitor_kfreebsd.patch:
      - Removed, fixed upstream.
    + debian/control.in:
      - Updated build dependencies.
      - Update the gtk+ 3 build dependency for the new package name.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 19 Feb 2011 14:28:40 +0000

gnome-settings-daemon (2.91.8-1) experimental; urgency=low

  [ Sjoerd Simons ]
  * Enable pulseaudio support
  * Enable the settings d-conf <-> gconf bridge
  * d/p/0001-Ensure-the-volume-doesn-t-underflow-and-wrap-around.patch
    + Added. Fix a bug where it was possible to lower the volume below zero,
      causing it to wrap-around to MAXUINT.

  [ Emilio Pozuelo Monfort ]
  * New upstream release.
    + debian/control.in:
      - Update build dependencies.
  * debian/rules:
    - Remove duplicated list-missing target and utils.mk include.
    - Include autoreconf.mk before debhelper.mk to not leave cruft when
      running clean.
  * debian/control.in:
    - Standards-Version is 3.9.1, no changes needed.
    - Drop old Replaces.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 12 Jan 2011 22:48:04 +0000

gnome-settings-daemon (2.91.5.1-2) experimental; urgency=low

  * Make the nautilus-data depend versioned

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 12 Dec 2010 14:32:07 +0000

gnome-settings-daemon (2.91.5.1-1) experimental; urgency=low

  * New upstream release
  * debian/control.in: Update build-depends to gnome 3.0 versions
  * debian/patches/01_xrdb.patch
    - Removed. g-s-d no longer manages xrdb
  * debian/patches/03_maintainer_mode.patch
    - Removed. Fixed upstream
  * debian/patches/10_clipboard_crash.patch
    - Removed. Fixed upstream.
  * debian/patches/12_monitor_network_fs.patch
    - Removed. Fixed upstream
  * debian/patches/13_monitor_kfreebsd.patch
    - Updated
  * debian/patches/20_gstreamer.patch
    - Removed. Time to move to pulseaudio by default...
  * debian/patches/30_pkgconfig-path.patch:
    - Removed. Fixed upstream
  * debian/patches/70_relibtoolize.patch
    - Removed, moving to dh_autoreconf
  * debian/patches/99_ltmain_as-needed.patch
    - Removed, moving to dh_autoreconf
  * debian/gnome-settings-daemon.install
    - Updated
  * Switch to dh_autoreconf and trigger list-missing
  * Make gnome-settings-daemon depends on gsettings-desktop-schemas and
    nautilus-data to pull in the necessary schema files.

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 11 Dec 2010 16:20:56 +0000

gnome-settings-daemon (2.30.2-4) unstable; urgency=low

  * Update for libnotify 0.7. Closes: #630277
    - Bump Build-Depends on libnotify-dev to (>= 0.7.0).
    - Add debian/patches/14_libnotify_0.7.patch.

 -- Michael Biebl <biebl@debian.org>  Tue, 02 Aug 2011 05:14:40 +0200

gnome-settings-daemon (2.30.2-3) unstable; urgency=low

  * 11_retry-startup.patch: when starting the Xsettings manager, try 
    again several times because there is a race condition on the X side.
    Closes: #614682.

 -- Josselin Mouette <joss@debian.org>  Sat, 09 Apr 2011 12:29:30 +0200

gnome-settings-daemon (2.30.2-2) unstable; urgency=low

  * 13_monitor_kfreebsd.patch: new patch. Don’t monitor fdescfs.
    Closes: #594891.
  * 10_clipboard_crash.patch: stolen from upstream git. Fixes a crash in 
    the clipboard manager. Closes: #588308.

 -- Josselin Mouette <joss@debian.org>  Wed, 20 Oct 2010 01:29:10 +0200

gnome-settings-daemon (2.30.2-1) unstable; urgency=low

  * New upstream stable release.
  * Switch to source format 3.0 (quilt).
    - Add debian/source/format.
    - Drop Build-Depends on quilt.
    - Remove /usr/share/cdbs/1/rules/patchsys-quilt.mk from debian/rules.
  * Refresh patches for new upstream release.
  * debian/control.in
    - Drop Build-Depends on dpkg-dev (>= 1.13.19) as even oldstable has a more
      recent version.
    - Add Vcs-Browser and Vcs-Svn fields.
    - Bump Standards-Version to 3.9.0.
    - Use Breaks as recommended by the new policy.

 -- Michael Biebl <biebl@debian.org>  Fri, 23 Jul 2010 01:34:51 +0200

gnome-settings-daemon (2.30.1-1) unstable; urgency=low

  * New upstream release.
  * Bump build-dependencies.
  * 11_sleepkey.patch, 40_xklavier_5.0.patch: dropped, obsolete.
  * 20_gstreamer.patch, 30_pkgconfig-path.patch, 70_relibtoolize.patch: 
    updated for the new version.

 -- Josselin Mouette <joss@debian.org>  Tue, 27 Apr 2010 20:00:27 +0200

gnome-settings-daemon (2.28.1-3) unstable; urgency=low

  * Depend on libgnome2-common for the GConf schemas.
  * 40_xklavier_5.0.patch: new patch. Get 2.28 version to work with 
    libxklavier 5.0.
  * Require said version to build.

 -- Josselin Mouette <joss@debian.org>  Fri, 09 Apr 2010 00:17:00 +0200

gnome-settings-daemon (2.28.1-2) unstable; urgency=low

  * Drop libxxf86misc-dev build-dependency. This extension is only used 
    as a fallback to XKB. Closes: #559690.
  * 12_monitor_network_fs.patch: new patch. Don’t monitor remote 
    filesystems for their free size. Closes: #563592.

 -- Josselin Mouette <joss@debian.org>  Sat, 09 Jan 2010 10:59:14 +0100

gnome-settings-daemon (2.28.1-1) unstable; urgency=low

  * New upstream release.
    - debian/patches/70_relibtoolize.patch:
      + Updated.
  * debian/rules: remove check-dist.mk to upload to unstable.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Thu, 22 Oct 2009 06:08:36 +0200

gnome-settings-daemon (2.28.0-1) experimental; urgency=low

  * Add a watch file.
  * Add a manpage for gnome-settings-daemon, thanks Joshua Cummings!
    Closes: #494370.
  * debian/control.in: remove trailing whitespaces.
  * Standards-Version is 3.8.2, no changes needed.
  * New upstream release.
    - debian/control.in:
      + Bump libgtk2.0-dev and libgnome-desktop-dev build dependencies.
      + Remove libglade2-dev build dependency, no longer needed.
      + Build depend on libxklavier-dev >= 4.0 instead of libxklavier12-dev.
      + Break gnome-screensaver << 2.28 since g-s-d doesn't start it anymore,
        relaying on the autostart file in g-s 2.28.
    - debian/patches/20_gstreamer.patch,
      debian/patches/70_relibtoolize.patch:
      + Updated to apply again.
    - debian/gnome-settings-daemon.install:
      + Install *.ui rather than *.glade.
      + Don't install *.png, the icon is not shipped anymore.
  * Standards-Version is 3.8.3, no changes needed.
  * debian/rules:
    - Don't touch every file anymore, it was done because of a broken tarball.
    - Include check-dist.mk to avoid uploads to unstable.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Fri, 09 Oct 2009 17:26:43 +0200

gnome-settings-daemon (2.26.1-2) unstable; urgency=low

  * 03_maintainer_mode.patch: new patch, add AM_MAINTAINER_MODE. Fixes 
    FTBFS.
  * Regenerate 70_relibtoolize.patch.

 -- Josselin Mouette <joss@debian.org>  Fri, 29 May 2009 16:19:52 +0200

gnome-settings-daemon (2.26.1-1) unstable; urgency=low

  * New upstream release.
    + 20_gstreamer.patch: install the plugin although pulse is disabled. 
    + Refresh 70_relibtoolize.patch.
  * Move the autostart file to /usr/share/gnome/autostart.
  * gnome-settings-daemon.postinst:
    + Remove the old autostart file if needed.
    + Only remove the xrdb stuff upon upgrades from pre-2.24.1.

 -- Josselin Mouette <joss@debian.org>  Fri, 29 May 2009 11:25:35 +0200

gnome-settings-daemon (2.26.0-2) experimental; urgency=low

  * 20_gstreamer.patch: Initialize Gerror * variables to NULL before
    usage. Fixes a crasher when using media keys (Closes: #524165)

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 18 Apr 2009 11:00:25 +0100

gnome-settings-daemon (2.26.0-1) experimental; urgency=low

  * New upstream release.
  * Update build-dependencies.
  * Install the autostart file and the keybindings XML file.
    + Break gnome-session < 2.24 which would attempt to start it twice 
      with the autostart file.
  * 11_sleepkey.patch: updated for the new version.
  * 20_gstreamer.patch: new patch from Romain Périer, adds back support 
    for GStreamer with a selection at compile time.
  * 70_relibtoolize.patch: regenerated.
  * Refresh other patches.
  * Pass --disable-pulse to configure, to use the GStreamer code 
    instead.

 -- Josselin Mouette <joss@debian.org>  Sat, 11 Apr 2009 11:31:52 +0200

gnome-settings-daemon (2.24.1-2) unstable; urgency=low

  [ Josselin Mouette ]
  * Improve package descriptions. Mention XSETTINGS. Closes: #511905.
  * Upload to unstable.

  [ Loic Minier ]
  * Suggest x11-xserver-utils as gnome-settings-daemon attempts to run xrdb by
    default and logs a warning when that fails.
  * Suggest gnome-screensaver as gnome-settings-daemon attempts to start it by
    default and logs a warning when that fails.
  * Suggest metacity | x-window-manager as gnome-settings-daemon attemts to
    start a window manager and logs a warning when that fails.

 -- Josselin Mouette <joss@debian.org>  Tue, 07 Apr 2009 08:48:36 +0200

gnome-settings-daemon (2.24.1-1) experimental; urgency=low

  * New upstream release.
    + Cleans up thumbnail cache automatically. Closes: #235067.
  * Update build-dependencies and -dev dependencies.
  * Standards version is 3.8.0.
  * Switch to quilt for patch management; build-depend on quilt.
  * 02_missing_libs.patch: explicitly add X11 libraries to 
    SETTINGS_PLUGINS since plugins are actually relying on them being 
    available.
  * 70_relibtoolize.patch: new patch, relibtoolize the source.
  * 99_ltmain_as-needed.patch: new patch, make --as-needed work.
  * Pass -O1 -z defs --as-needed to the linker.
    + Only warn on undefined symbols as plugins need a symbol from the 
      daemon.
  * Add some comments in the patches.
  * Pass --no-act to dh_makeshlibs.
  * gnome-settings-daemon.postinst: remove /etc/gnome/config/xrdb.
  * Install .ad files in /etc/gnome/config to replace the ones from 
    capplets-data which are still used.
  * Do not install the autostart file since we still use gnome-session 
    2.22 which will start g-s-d by hand.

 -- Josselin Mouette <joss@debian.org>  Sat, 27 Dec 2008 11:29:41 +0100

gnome-settings-daemon (2.22.2.1-2) unstable; urgency=low

  * 08_extra_touchpad_options.patch: removed broken patch from Ubuntu. 
    Closes: #481191.
  * 11_sleepkey.patch: use gnome-power-cmd to suspend the computer 
    instead of the nonexistent gdm-signal.

 -- Josselin Mouette <joss@debian.org>  Tue, 11 Nov 2008 16:08:08 +0100

gnome-settings-daemon (2.22.2.1-1) unstable; urgency=low

  [ Josselin Mouette ]
  * Fix priority.

  [ Sebastian Dröge ]
  * New upstream bugfix release:
    + debian/rules:
      - Run touch on every file to fix up timestamps.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 29 May 2008 10:31:39 +0200

gnome-settings-daemon (2.22.1-2) unstable; urgency=high

  * Conflict against gnome-control-center < 2.21.5. Closes: #476802.

 -- Josselin Mouette <joss@debian.org>  Sat, 19 Apr 2008 22:17:49 +0200

gnome-settings-daemon (2.22.1-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/09_locate_pointer.patch:
      - Dropped, fixed upstream.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 07 Apr 2008 14:44:12 +0200

gnome-settings-daemon (2.22.0-4) unstable; urgency=low

  * debian/control.in:
    + Also conflict with totem (<< 2.22.0) for the same reason.
  * debian/gnome-settings-daemon.install:
    + Install xrdb files into /etc/gnome/config again.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 22 Mar 2008 14:56:12 +0100

gnome-settings-daemon (2.22.0-3) unstable; urgency=low

  * Upload to unstable.
  * debian/control.in:
    + Add conflicts with rhythmbox (<< 0.11.5) and banshee (<< 0.13.2+dfsg-7)
      as the multimedia keys DBus interface changed.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 19 Mar 2008 01:47:15 +0100

gnome-settings-daemon (2.22.0-2) experimental; urgency=low

  * debian/rules:
    + Don't install the dbus service file. This is not meant to be autostarted
      but should be started by gnome-session.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 16 Mar 2008 17:39:52 +0100

gnome-settings-daemon (2.22.0-1) experimental; urgency=low

  * New package, based on the Ubuntu packaging.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 12 Mar 2008 15:17:19 +0100