~bryce/jockey/experimental-driver-support

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
=== 0.9.5 ===
2011-10-26  Martin Pitt <martin.pitt@canonical.com>

	* po/jockey.pot,
	* setup.py: [752] release 0.9.5

2011-10-20  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [751] When connecting to D-BUS fails, improve error
	message to let users know what to do. Thanks Martin Owens.

2011-10-19  Launchpad Translations on behalf of jockey-hackers

	* po/fi.po: [750] Launchpad automatic translations update.

2011-10-15  Launchpad Translations on behalf of jockey-hackers

	* po/oc.po: [749] Launchpad automatic translations update.

2011-10-14  Launchpad Translations on behalf of jockey-hackers

	* po/gl.po: [748] Launchpad automatic translations update.

2011-10-13  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py: [747] jockey/oslib.py: Work with current PackageKit
	version. Thanks to Hedayat Vatankhah!

2011-10-13  Launchpad Translations on behalf of jockey-hackers

	* po/en_AU.po,
	* po/fr.po: [746] Launchpad automatic translations update.

2011-10-08  Launchpad Translations on behalf of jockey-hackers

	* po/en_GB.po,
	* po/et.po,
	* po/pt_BR.po: [745] Launchpad automatic translations update.

2011-10-07  Launchpad Translations on behalf of jockey-hackers

	* po/ace.po,
	* po/az.po,
	* po/bo.po,
	* po/ca@valencia.po,
	* po/en_AU.po,
	* po/en_CA.po,
	* po/en_GB.po,
	* po/hy.po,
	* po/km.po,
	* po/ku.po,
	* po/ky.po,
	* po/te.po: Added.

	* po/af.po,
	* po/ar.po,
	* po/ast.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/da.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/et.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/he.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/oc.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sk.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: Modified.

	[744] Launchpad automatic translations update.

2011-10-06  Martin Pitt <martin.pitt@canonical.com>

	* po/af.po,
	* po/ar.po,
	* po/ast.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/da.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/et.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/he.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/jockey.pot,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/oc.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sk.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [743] merge PO files

2011-10-06  Martin Pitt <martin.pitt@canonical.com>

	* po/jockey.pot: Added.

	[742] add po/jockey.pot, for easier LP translation integration

2011-10-05  Martin Pitt <martin.pitt@canonical.com>

	* backend/com.ubuntu.devicedriver.policy.in: [741] More user-friendly
	authentication messages on driver operations. Thanks Robert Roth. (LP:
	#799725)

2011-09-29  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [740] Only ask for confirmation in check_composite if
	--confirm has been set. Thanks to Evan Dandrea! (LP: #855042)

2011-09-28  Martin Pitt <martin.pitt@canonical.com>

	* examples/fake.modaliases: [739] examples/fake.modaliases: add
	-updates examples

2011-09-05  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/vmware-client.py: [738] Fix no space typo in
	VMWare drivers. Thanks Robert Roth. (LP: #722936)

2011-08-31  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py: [737] detection.py: Fix crash if Driver ID does
	not have a package field. (LP: #837495)

=== 0.9.4 ===
2011-08-22  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [736] release 0.9.4

	* jockey/detection.py,
	* tests/detection.py,
	* tests/sandbox.py: [735] jockey/detection.py, _driverid_to_handler():
	In the case that there are multiple matching custom handlers for a
	DriverID, also check that their "package" attribute matches.

	* jockey/backend.py,
	* jockey/ui.py: [734] jockey/backend.py, jockey/ui.py: Port remaining
	gobject usage to GI. (LP: #829186)

	* tests/run: [733] tests/run: Also support specifying individual test
	method names

2011-08-18  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py,
	* tests/sandbox.py: [732] oslib.py: Do not encourage to report package
	installation failure as SystemError, it will appear as a backend crash

	* gtk/jockey-gtk: [731] jockey-gtk: Fix message_type argument to
	Gtk.MessageBox constructor

	* jockey/ui.py: [730] jockey/ui.py: For invalid combinations of
	LC_MESSAGES and LC_CTYPE, force stdout/stderr encoding to UTF-8
	instead of C. (LP: #760883)

2011-08-11  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk,
	* jockey/ui.py,
	* tests/run-gtk: [729] Fix GLib and GObject imports to be compatible
	with the future pygobject 3.0.

2011-07-11  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk.desktop.in: [728] gtk/jockey-gtk.desktop.in: Use
	correct categories to show up on the new gnome-control-center. Thanks
	Rodrigo Moya! (LP: #787694)

2011-07-01  Martin Pitt <martin.pitt@canonical.com>

	* gtk/autostart/jockey-gtk.desktop.in: [727] Add NoDisplay=true to
	autostart .desktop file and have jockey-gtk show up in Unity. Thanks
	Mike Terry.

=== 0.9.3 ===
2011-06-30  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [726] release 0.9.3

	* do-release: [725] do-release: ignore pyc files

2011-06-29  Martin Pitt <martin.pitt@canonical.com>

	* tests/backend.py: [724] tests/backend.py: Update test cases
	according to r721

2011-06-20  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py,
	* jockey/detection.py,
	* jockey/handlers.py,
	* jockey/ui.py,
	* jockey/xorg_driver.py,
	* tests/detection.py,
	* tests/handlers.py,
	* tests/oslib.py,
	* tests/run,
	* tests/sandbox.py,
	* tests/ui.py: Modified.

	* tests/http.py: Renamed to tests/httpd.py and modified.

	[723] more Python 3 compatible imports

2011-05-18  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [722] ui.py: Move to AppIndicator3 for GTK 3
	compatibility

2011-04-19  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py,
	* tests/detection.py: [721] OpenPrintingDriverDB: Use the actual
	package version as "version" attribute instead of the driver name.
	This was a bit of a thinko back then. Update test cases accordingly.
	(LP: #744751)

2011-04-18  Martin Pitt <martin.pitt@canonical.com>

	* backend/jockey-backend,
	* jockey/oslib.py,
	* jockey/ui.py: [720] Add support for a --kernel argument to backend
	and UI (with --no-dbus). (LP: #759804)

2011-04-10  Martin Pitt <martin.pitt@canonical.com>

	* po/en_AU.po,
	* po/en_GB.po: Removed.

	* po/af.po,
	* po/ar.po,
	* po/ast.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/da.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/et.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/he.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/oc.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sk.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: Modified.

	[719] merge translations, update German fuzzy strings

2011-04-10  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/fglrx.py: [718] fglrx example handler: ATI -> AMD
	(LP: #755260)

2011-03-28  Martin Pitt <martin.pitt@canonical.com>

	* jockey/handlers.py,
	* jockey/oslib.py,
	* tests/handlers.py,
	* tests/sandbox.py: [717] Add new flag Handler.needs_kernel_headers
	and install kernel headers if set

	* jockey/xorg_driver.py,
	* tests/handlers.py: [716] XorgDriverHandler: Support None X.org
	driver to avoid changing the Driver setting.        This is
	appropriate for drivers which X.org conf autodetects.

2011-03-17  Martin Pitt <martin.pitt@canonical.com>

	* po/Makefile: Added.

	[715] add a simple po/Makefile to set the gettext domain

2011-03-11  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py: [714] oslib.py: Switch to default keyserver on port
	80 to be more proxy friendly. (LP: #733029)

	* jockey/oslib.py: [713] OSLib.import_gpg_key(): Respect $http_proxy.
	Thanks Olaf Meeuwissen. (LP: #733023)

2011-03-10  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [712] delay fix_stdouterr() call after argv parsing,
	as OptParser crashes otherwise

	* jockey/ui.py: [711] Reintroduce __fix_stdouterr(); we need it for
	proper -l unicode support. (LP: #728744)

=== 0.9.2 ===
2011-03-08  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [710] release 0.9.2

	* jockey/detection.py,
	* tests/detection.py,
	* tests/oslib.py: [709] move
	detection.OpenPrintingDriverDB._check_get_fingerprint() to
	detection.download_gpg_fingerprint(), it is not specific to
	OpenPrintingDriverDB

2011-03-08  Martin Pitt <martin.pitt@canonical.com>

	* jockey/verified_https.py,
	* tests/verified_https.py: Removed.

	* README.txt,
	* jockey/detection.py,
	* tests/oslib.py: Modified.

	[708] Drop our own verified_https.py and implement GPG fingerprint SSL
	checking with pycurl, which gets along with proxies. (LP: #729185)

2011-03-08  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py: [707]
	OpenPrintingDriverDB._check_get_fingerprint(): Fix crash on 404

2011-03-08  Martin Pitt <martin.pitt@canonical.com>

	* tests/data/bad_fingerprint,
	* tests/data/fingerprint: Added.

	* tests/detection.py: Modified.

	[706] Add explicit OpenPrintingDriverDB._check_get_fingerprint() test
	cases; tests/verified_https.py is too low-level if we want to change
	the implementation

2011-03-08  Martin Pitt <martin.pitt@canonical.com>

	* tests/http.py,
	* tests/verified_https.py: [705] tests/verified_https.py: Move local
	HTTPS server code into tests/http.py

	* jockey/detection.py: [704] make
	OpenPrintingDriverDB._check_get_fingerprint a classmethod for easier
	debugging

2011-02-28  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py,
	* jockey/xorg_driver.py,
	* tests/handlers.py,
	* tests/sandbox.py: [703] Add X.org video driver ABI checking

=== 0.9.1 ===
2011-02-23  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [702] release 0.9.1

	* jockey/detection.py,
	* tests/detection.py,
	* tests/sandbox.py: [701] Do not create standard drivers for disabled
	custom drivers. This caused NVidia/FGLRX to still be offered in
	Jockey, causing a lot of damage. (LP: #716363)

	* jockey/ui.py: [700] ui.py: Show translated driver names with --list

	* jockey/ui.py: [699] ui.py: Drop __fix_stdouterr(), we are using
	gettext in unicode mode, and this leads to crashes with --help

2011-02-22  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [698] Add --no-dbus UI option (LP: #723223)  This will
	use a local Backend instance instead of communicating with the D-BUS
	backend interface. This is suitable for installers where jockey needs
	to run in a chroot.  Caveats:  - This needs root privileges.  - This
	cannot provide progress feedback, i. e. it is mostly appropriate for
	jockey-text.

	* gtk/jockey-gtk,
	* jockey/ui.py,
	* kde/jockey-kde,
	* text/jockey-text: [697] Move client-side OSLib instantiation to
	ui.py

2011-02-15  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk: [696] jockey-gtk: Use glib.GError, not GLib.Error;
	the latter does not actually work, and in general the static glib
	bindings are preferred for now. (LP: #715753)

2011-02-14  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/vmware-client.py: Added.

	[695] Add VMWare client tools example handler. Thanks Martin Owens!
	(LP: #716738)

=== 0.9 ===
2011-02-03  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [694] release 0.9

	* tests/run-gtk: [693] tests/run-gtk: port to GI

	* gtk/jockey-gtk: [692] Fix regression from GI port: Properly set up
	the UI if there are no drivers available. (LP: #702596)

	* gtk/jockey-gtk: [691] jockey-gtk: Fix UnicodeDecodeError crash on
	translated driver names

	* jockey/detection.py: [690] Fix short driver description when getting
	them from package system

	* jockey/oslib.py,
	* tests/oslib.py,
	* tests/sandbox.py: [689] Python 3 friendly number literals

	* examples/handlers/fglrx.py,
	* examples/handlers/sl_modem.py,
	* jockey/backend.py,
	* jockey/detection.py,
	* jockey/handlers.py,
	* jockey/oslib.py,
	* jockey/ui.py,
	* jockey/verified_https.py,
	* tests/backend.py,
	* tests/sandbox.py,
	* tests/ui.py,
	* tests/verified_https.py: [688] Python 3 compatible exception
	handling

2011-02-02  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk: [687] jockey-gtk: Fix icon lookup constant for PyGI.
	(LP: #706193)

	* jockey/detection.py: [686] fix crash on nonexisting packages

	* examples/fake.modaliases: [685] examples/fake.modaliases: Update for
	current Ubuntu driver name

2011-01-20  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk: [684] jockey-gtk: Use Gtk.ListStore constructor from
	pygi overrides

2011-01-12  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py,
	* jockey/handlers.py: [683] Add support for hardware enablement
	handlers.  Add a new base handler called "HWEHandler". Allows non-
	kernel and non-print packages to be tied to modaliases by using the
	moniker 'hwe' in the alias line.  Thanks Mario Limonciello!

	* jockey/detection.py: [682] If a handler doesn't specify 'free' or
	'description' but does include a binary package name, query the OS for
	that information.   Thanks Mario Limonciello!

2011-01-10  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk: [681] jockey-gtk: remove connect_signals GTK2
	workaround, works in latest GTK

=== 0.8 ===
2011-01-09  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [680] release 0.8

	* README.txt,
	* gtk/jockey-gtk,
	* jockey/ui.py: [679] jockey-gtk: Convert from pygtk to gobject-
	introspection

	* tests/ui.py: [678] fix UI HTTP download tests

=== 0.7.1 ===
2011-01-09  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [677] release 0.7.1

2011-01-08  Martin Pitt <martin.pitt@canonical.com>

	* tests/http.py,
	* tests/oslib.py: [676] OSLib tests: use local test keyserver

2011-01-08  Martin Pitt <martin.pitt@canonical.com>

	* tests/data/pubring.gpg,
	* tests/data/secring.gpg: Added.

	[675] add a demo GPG key to tests/, for testing signed archives

2011-01-08  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py,
	* tests/oslib.py: [674] OSLib.install_package(): Fix exception for
	unknown package

	* tests/oslib.py: [673] one more usage of proper unittest skipping

	* tests/detection.py: [672] tests/detection.py: Use skip decorator

	* tests/oslib.py: [671] Skip online OSLib tests when being offline

	* jockey/oslib.py,
	* tests/detection.py: [670] move has_defaultroute to OSLib for easier
	reuse

2011-01-08  Martin Pitt <martin.pitt@canonical.com>

	* tests/http.py: Added.

	* tests/ui.py: Modified.

	[669] move HTTP sever for test suite to separate module for easier
	reuse

=== 0.7 ===
2011-01-06  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [668] release 0.7

	* jockey/oslib.py: [667] add success debugging to import_gpg_key()

	* jockey/backend.py,
	* jockey/handlers.py,
	* jockey/oslib.py,
	* tests/sandbox.py: [666] merge add_repository() into
	install_package()  It's much more practical to have the package name
	and repository availbable at the same time in OSLib, as it's much
	easier to do checks like "is this package in this new repository
	trusted". It's also easier from the code design point of view.

	* jockey/handlers.py,
	* jockey/oslib.py,
	* tests/sandbox.py: [665] Remove OSLib.remove_repository()  It is a
	bug to remove a repository when disabling a driver, as that repo might
	have other installed drivers as well.

	* jockey/oslib.py: [664] import_gpg_key(): Avoid downloading key if it
	is already present in the keyring

	* jockey/backend.py,
	* tests/detection.py: [663] pass fingerprint attribute in
	Backend.handler_info()

	* jockey/detection.py,
	* tests/detection.py: [662] fix \n at end of fingerprints in DriverIDs

2011-01-05  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py,
	* tests/oslib.py: [661] OSLib.import_gpg_key(): two more tests, and
	respect $PATH in environment

	* jockey/oslib.py,
	* tests/oslib.py: [660] add OSLib.import_gpg_key() and tests

	* jockey/detection.py,
	* jockey/handlers.py,
	* jockey/oslib.py,
	* tests/detection.py,
	* tests/sandbox.py: [659] add support for repository fingerprints, and
	retrieve them from openprinting.org

2011-01-04  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py,
	* tests/oslib.py,
	* tests/verified_https.py: [658] add OSLib.ssl_cert_file() and tests

2011-01-04  Martin Pitt <martin.pitt@canonical.com>

	* jockey/verified_https.py,
	* tests/data,
	* tests/data/localhost-expired.pem,
	* tests/data/localhost.pem,
	* tests/verified_https.py: Added.

	[657] add VerifiedHTTPSHandler and tests

2011-01-04  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py: [656] removed overly verbose debugging

	* jockey/detection.py: [655] shorten OpenPrinting license text in
	debugging output

2010-12-18  Martin Pitt <martin.pitt@canonical.com>

	* tests/run: [654] also unset $LANGUAGE in test suite

	* tests/backend.py,
	* tests/detection.py,
	* tests/sandbox.py,
	* tests/ui.py: [653] fix port for test suite: 80080 -> 8080

=== 0.6 ===
2010-11-25  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [652] release 0.6

	* do-release: [651] do-release: drop test suite run, it will be done
	separately

	* jockey/detection.py,
	* jockey/oslib.py,
	* tests/detection.py: [650] Add support and test case for reading
	modaliases from package headers

	* kde/jockey-kde,
	* setup.py: [649] jockey-kde: Use runtime .ui loading instead of
	pykdeuic4; the latter just keeps breaking

	* jockey/detection.py: [648] jockey/detection.py, get_hardware():
	Disable printer detection.  cupshelpers.getDevices() is excruciatingly
	slow (about 15 seconds), and jockey is not normally used directly to
	install printer drivers. Instead, system-config-printer picks up new
	printers, and calls jockey with the device ID, so jockey does not need
	to detect printers by itself.

2010-11-17  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk.ui: [647] gtk/jockey-gtk.ui: Drop obsolete
	has_separator property; Explicitly set topmost GtkVBox fill property
	to True, as the default changed in GTK 3.0 (GNOME #634592)

2010-11-16  Martin Pitt <martin.pitt@canonical.com>

	* examples/fake.modaliases: [646] fake.modaliases: update for current
	Ubuntu package names

	* tests/detection.py: [645] fix openprintin.org/yum test case

	* tests/ui.py: [644] fix test case for invalid server to guard against
	automatic 404 proxy pages

2010-11-10  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [643] Put back "Additional Drivers" progress window
	title. Thanks Bilal Akhtar! (LP: #323815)

2010-09-15  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py,
	* jockey/oslib.py: [642] Add OSLib.notify_reboot_required() and call
	it in set_handler_enabled(). (LP: #570215)

	* jockey/ui.py: [641] ui: Add support for bypassing local detection
	for search_driver()  Introduce a flag self.search_only to True to
	suppress a full system hardware detection. This could be set to True
	if we know that we only look for remote drivers, e. g. if you don't
	support local printer driver handlers, you could set this to True in
	search_drivers(). Add a commented out example for this.  Thanks to
	Till Kamppeter for the initial patch!
	https://launchpad.net/bugs/574396

	* jockey/backend.py: [640] Backend: Split out db_init().  When a
	client wants to search a remote driver for a piece of already detected
	hardware (for example a printer detected by CUPS) we do not need the
	time-consuming operation of detect(). It is enough to initialize the
	driver databases.   Thanks to Till Kamppeter for the initial patch!
	Prerequisite for https://launchpad.net/bugs/574396

=== 0.5.10 ===
2010-08-24  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [639] release 0.5.10

	* gtk/jockey-gtk,
	* kde/jockey-kde: [638] Hide "Remove" button if a driver needs reboot.
	Thanks to Bilal Akhtar for the initial patch! (LP: #600804)

	* po/af.po,
	* po/ar.po,
	* po/ast.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/da.po,
	* po/de.po,
	* po/el.po,
	* po/en_AU.po,
	* po/en_GB.po,
	* po/es.po,
	* po/et.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/he.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/oc.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sk.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [637] update *.po, and German translations

	* gtk/jockey-gtk.desktop.in,
	* gtk/jockey-gtk.ui,
	* jockey/ui.py,
	* kde/ProgressDialog.ui,
	* kde/jockey-kde.desktop.in,
	* kde/jockey.notifyrc.in: [636] Rename "Hardware Drivers" to
	"Additional Drivers", to point out that Jockey is not responsible for
	all kinds of drivers. Thanks to Robert Roth for the initial patch.
	(LP: #409338)

2010-08-12  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk.ui,
	* kde/ProgressDialog.ui: [635] Add a title to the "search drivers"
	dialog. Thanks to Bilal Akhtar! (LP: #616569)

2010-07-29  Martin Pitt <martin.pitt@canonical.com>

	* README.txt,
	* jockey/handlers.py,
	* tests/handlers.py: [634] add flag file based auto install mode

	* tests/handlers.py: [633] tests/handlers.py: Add missing parent ctor
	call

	* jockey/ui.py: [632] ui --list: show auto-install flag

=== 0.5.9 ===
2010-07-23  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [631] release 0.5.9

2010-07-21  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py,
	* jockey/handlers.py,
	* jockey/ui.py,
	* tests/backend.py,
	* tests/handlers.py,
	* tests/sandbox.py,
	* tests/ui.py: [630] Add Handler.auto_install() flag and --auto-
	install mode. Thanks to Evan Dandrea!

2010-06-07  Martin Pitt <martin.pitt@canonical.com>

	* po/pl.po: [629] fix Polish translation. (LP: #451968)

2010-06-07  Martin Pitt <martin.pitt@canonical.com>

	* po/en_AU.po: Added.

	* po/af.po,
	* po/ar.po,
	* po/ast.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/da.po,
	* po/de.po,
	* po/el.po,
	* po/en_GB.po,
	* po/es.po,
	* po/et.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/he.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/oc.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sk.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: Modified.

	[628] update translations from Launchpad and update German ones

2010-05-12  Martin Pitt <martin.pitt@canonical.com>

	* examples/fake.modaliases: Added.

	* README.txt: Modified.

	[627] add a fake modalias file for local testing

2010-04-10  Jonathan Thomas (The man) <echidnaman@gmail.com>

	* kde/jockey-kde: [626] Don't crash when closed with the "x" button
	(LP: #552723, LP: #398912) Thanks Thorbj?rnTux!

2010-04-08  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk,
	* jockey/ui.py: [625] i18n "Install Drivers" string. (LP: #542552)

2010-03-30  Alberto Milone <alberto.milone@canonical.com>

	* jockey/xorg_driver.py: [624]  * jockey/xorg_driver.py   - Simplify
	the logic in the enabled() method by only relying on     X-Kit's
	isDriverEnabled() method. This will avoid getting false     positives
	in the case in which the 1st Device section (i.e. the     only one
	that we used to check) uses the right driver but the     same section
	is irrelevant as it's not mentioned in the     ServerLayout section.

2010-03-24  Jonathan Thomas (The man) <echidnaman@gmail.com>

	* kde/ManagerWindowKDE4.ui: [623] Revert some .ui file changes that
	slipped in with my last revision. (LP: #543707)

2010-03-22  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [622] ui.py: Fix _check_repositories() to not invoke
	the UI and error dialogs in --check mode. (LP: #540750)

2010-03-19  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [621] ui.py, check(): If the user is running Jockey
	with package installation or another long-running task in parallel,
	the automatic --check invocation will time out on connecting to the
	backend. This is not fatal, just print an error message instead of
	crashing. (LP: #403955)

2010-03-18  Jonathan Thomas (The man) <echidnaman@gmail.com>

	* kde/ManagerWindowKDE4.ui,
	* kde/jockey-kde: [620] Do not parent the KMessageBox, since in some
	cases the errors can come before the MainWindow is initialized

2010-03-15  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk.ui: [619] jockey-gtk: Fix progress dialogs to not be
	maximizable. (LP: #537911)

=== 0.5.8 ===
2010-03-11  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [618] release 0.5.8

	* jockey/ui.py: [617] ui.py: Download/update package indexes if they
	are missing. (LP: #439530)

	* jockey/backend.py,
	* jockey/detection.py: [616] backend.py: Expose has_repositories() and
	update_repository_indexes() to clients

	* tests/sandbox.py: [615] sandbox.py: fix test suite bug

	* jockey/backend.py,
	* jockey/ui.py: [614] shutdown D-BUS backend on UI shutdown, to not
	start the next UI with potentially outdated information

	* jockey/oslib.py: [613] add OSLib.update_repository_indexes()

	* jockey/detection.py: [612] detection.py: Add shortcut if we do not
	have repositories

	* jockey/backend.py: [611] fix previous commit to actually work

	* jockey/backend.py: [610] backend.py, new_used_available(): Skip
	check if no package repositories are available, to avoid writing an
	empty cache file and thus never showing Jockey notifications again
	once they become available. (LP: #442776

	* jockey/oslib.py,
	* tests/oslib.py: [609] OSLib: Add new method has_repositories(), as a
	foundation for fixing #442776

	* jockey/oslib.py,
	* tests/detection.py,
	* tests/oslib.py,
	* tests/sandbox.py: [608] read system vendor/product from sysfs, not
	from hal

	* README.txt: [607] README.txt: Update PolicyKit name to polkit-1

	* jockey/ui.py: [606] ui.py: Make Control-C work properly. Thanks
	Adys! (LP: #479548)

=== 0.5.7 ===
2010-02-11  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [605] release 0.5.7

	* gtk/autostart/jockey-gtk.desktop.in: [604] gtk/autostart/jockey-
	gtk.desktop.in: Fix regression from r596, add back --check mode

2010-02-04  Jonathan Thomas (The man) <echidnaman@gmail.com>

	* kde/jockey-kde: [603] Set the bugEmail variable and add it to the
	KAboutData constructor (LP: #398920)

2010-02-02  Jonathan Thomas (The man) <echidnaman@gmail.com>

	* kde/jockey-kde: [602] Remove two unused, empty lists

	* kde/jockey-kde: [601] Bump notification pixmap size down to 22x22,
	for consistency with other KDE apps

	* kde/jockey-kde: [600] -Optimize KIcon usage in general -Only show()
	icon-labels after giving them an icon

=== 0.5.6 ===
2010-02-02  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [599] release 0.5.6

	* jockey/oslib.py: [598] oslib.py: Update PackageKit code to work with
	latest version

	* jockey/handlers.py: [597] handlers.py: Actually set do_blacklist
	attribute

	* gtk/autostart/jockey-gtk.desktop.in: [596] gtk autostart: Replace
	--check 60 with new X-GNOME-Autostart-Delay

2010-01-28  Alberto Milone <alberto.milone@canonical.com>

	* jockey/handlers.py,
	* jockey/xorg_driver.py: [595]  Add do_blacklist argument in the ctor
	of the KernelModuleHandler class. This argument (which defaults to
	True) decides whether Jockey needs to blacklist the module or not.

2010-01-14  Martin Pitt <martin.pitt@canonical.com>

	* tests/detection.py: [594] update yum printer driver detection to
	current openprinting.org data

	* tests/detection.py: [593] tests/detection.py: Fix locale dependency
	of a test

	* gtk/jockey-gtk,
	* jockey/ui.py: [592] Add appindicator support.  When available, use
	appindicator for panel integration instead of producing our own tray
	icon.  Author: Conor Curran <conor.curran@canonical.com>

2010-01-06  Jonathan Thomas (The man) <echidnaman@gmail.com>

	* README.txt: [591] Update README.txt since a KDE policykit frontend
	is available now

	* kde/jockey-kde: [590] More icon fallback code that really isn't
	needed

	* kde/jockey-kde: [589] - Don't import all of kdeui and kdecore, just
	import what we need - Less magic for KMessageBox return values

	* kde/jockey-kde: [588] No need to check whether or not the jockey
	icon is there. The jockey-kde package depends on jockey-common, which
	has this icon. KIcon also can seemlessly handle the lack of the icon,
	so no crash will occur.

	* kde/jockey-kde: [587] No need to construct a new KIcon, the icon
	variable is already a KIcon

	* kde/jockey-kde: [586] Remove fallback code that will never work and
	is really unnecessary.

	* kde/jockey-kde: [585] Whitespace fixes

2009-12-09  Martin Pitt <martin.pitt@canonical.com>

	* kde/jockey-kde: [584] merge jockey-kde notification fixes from
	Jonathan Thomas

2009-12-04  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py: [583] backend.py: Explicitly pass start-time to
	PolicyKit CheckAuthorization call, to work with polkit-1 0.95. (LP:
	#491136)

2009-11-09  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/nvidia.py: [582] nvidia.py: Remove options for
	version 71, it does not work with current X.org versions any more

	* jockey/ui.py: [581] ui.py, set_handler_enabled(): Give an error
	message pointing to the log file if driver installation fails. (LP:
	#451305)

	* backend/com.ubuntu.DeviceDriver.service: [580] jockey-backend d-bus
	service: log to /var/log/jockey.log

	* jockey/xorg_driver.py: [579] xorg_driver.py, enable(): Do not mangle
	xorg.conf if module is not available after package installation. (LP:
	#451305)

=== 0.5.5 ===
2009-10-02  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [578] release 0.5.5

2009-09-30  Martin Pitt <martin.pitt@canonical.com>

	* kde/jockey-kde: [577] jockey-kde: Fix restart icon. (LP: #438940)

	* kde/jockey-kde: [576] jockey-kde: Fix broken paths to
	propietary/certified icons. (LP: #438940, part 1)

2009-09-21  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk.ui,
	* jockey/ui.py: [575] ui.py: Fix error message parsing, thanks to
	rugby471! (LP: 386375)

=== 0.5.4 ===
2009-09-21  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [574] release 0.5.4

	* README.txt,
	* tests/backend.py,
	* tests/detection.py: [573] Update tests for openprinting.org changes;
	LaserJet 3020 does not exist any more, replace with DesignJet 3050CP

	* jockey/handlers.py: [572] Handler: Reload module blacklist after
	installing a driver package, since it might ship blacklists

2009-09-15  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [571] setup.py: Fix DistUtilsExtra version check. (LP:
	#428337)

2009-09-02  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk: [570] jockey-gtk: Check for having $DISPLAY at
	startup to avoid crashes. (LP: #204134)

2009-07-14  Martin Pitt <martin.pitt@canonical.com>

	* kde/autostart/jockey-kde.desktop.in,
	* kde/jockey-kde.desktop.in: [569] move X-KDE-autostart-phase: field
	from menu to autostart .desktop

	* setup.py: [568] fix application name in setup.py error message

=== 0.5.3 ===
2009-07-14  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [567] release 0.5.3

2009-07-14  Martin Pitt <martin.pitt@canonical.com>

	[566] null-merge of Tormod's ATI naming fix (already done)

2009-07-14  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py,
	* jockey/ui.py: [565] re-introduce proper conversion of D-BUS
	exceptions

	* setup.py: [564] bump DistUtilsExtra.auto requirement to >= 2.4 to
	ensure polkit-1 support

2009-07-13  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [563] ui.py: Fix D-BUS timeout with non-GUI mode

	* README.txt,
	* backend/com.ubuntu.devicedriver.policy.in,
	* jockey/backend.py,
	* jockey/ui.py: [562] port to polkit-1

2009-07-01  Martin Pitt <martin.pitt@canonical.com>

	* text,
	* text/jockey-text: Added.

	* AUTHORS,
	* setup.py: Modified.

	[561] Add jockey-text frontend, thanks to Mario Limonciello!

2009-06-29  Martin Pitt <martin.pitt@canonical.com>

	* data/modalias-overrides: Renamed to data/modaliases.

	[560] fix name of modaliases data dir

=== 0.5.2 ===
2009-06-29  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [559] release 0.5.2

	* do-release: [558] do-release: Do not run GTK/KDE tests, too brittle

	* tests/run-kde: [557] tests/run-kde: temporarily create symlink to
	build/ kdeui

2009-06-29  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk.ui: Added.

	* gtk/main.glade: Removed.

	* gtk/jockey-gtk,
	* jockey/ui.py,
	* setup.py: Modified.

	[556] jockey-gtk: port from glade to GtkBuilder

2009-06-29  Martin Pitt <martin.pitt@canonical.com>

	* tests/ui.py: [555] tests/ui.py: update for text changes from r552

	* .bzrignore: [554] add build/ to .bzrignore

2009-06-29  Martin Pitt <martin.pitt@canonical.com>

	* MANIFEST.in,
	* po/POTFILES.in,
	* setup.cfg: Removed.

	* README.txt,
	* kde/jockey-kde,
	* setup.py: Modified.

	[553] convert build system to DistUtilsExtra.auto  This gets rid of
	MANIFEST.in, po/POTFILES.in, setup.cfg, and most of the black magic in
	setup.py, and just does the right thing.  This introduces a dependency
	on python-distutils-extra >= 2.2.

2009-06-09  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [552] ui.py: Make proprietary driver warning less
	scary. (LP: #381805)

2009-06-04  Martin Pitt <martin.pitt@canonical.com>

	* kde/jockey-kde.desktop.in: [551] kde/jockey-kde.desktop.in: Move
	autostart to phase 2, for smoother login. (LP: #369733)

=== 0.5.1 ===
2009-04-10  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [550] release 0.5.1

	* MANIFEST.in: [549] MANIFEST.in: Add missing KDE .notifyrc.in

2009-04-09  Martin Pitt <martin.pitt@canonical.com>

	* tests/oslib.py: [548] tests/oslib.py: test package
	installation/removal

2009-04-08  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py: [547] oslib.py: Use --filter=newest, which is what
	we want, and works for apt backend, too

	* README.txt: [546] README.txt: bzr branch for X-Kit

2009-04-08  Martin Pitt <martin@f10>

	* jockey/oslib.py: [545] oslib.py: apply --filter workaround for
	package_files(), too

	* jockey/oslib.py: [544] oslib.py, is_package_free(): Recognize more
	GPL variants

	* jockey/oslib.py: [543] oslib.py: work around broken pkcon --filter
	in FC10

	* jockey/oslib.py: [542] oslib.py: Add yum detection to
	packaging_system

2009-04-07  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py: [541] oslib.py: Add comment about PackageKit not
	implementing repo addition yet

	* jockey/oslib.py: [540] implement {install,remove}_package() with
	pkcon

2009-04-06  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py,
	* po/de.po: [539] fix r537 to not break existing translations

	* po/de.po: [538] update German translation

	* examples/handlers/nvidia.py: [537] nvidia.py: set self.version
	instead of mangling name, fixes i18n (LP: #353081)

	* jockey/ui.py: [536] ui.py, get_ui_driver_name(): If driver has a
	version, show it

2009-04-01  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk: [535] jockey-gtk: Improve default height of driver
	list VPane, depending on number of available drivers. (LP: #291028)

	* examples/handlers/madwifi.py: [534] madwifi.py: Only announce this
	driver through --check if ath5k is not loaded. (LP: #346078)

	* jockey/backend.py,
	* jockey/handlers.py,
	* jockey/ui.py,
	* tests/backend.py,
	* tests/handlers.py,
	* tests/ui.py: [533] add support for unannounced drivers

2009-03-19  Martin Pitt <martin.pitt@canonical.com>

	* examples/mini-cli.py: Added.

	[532] add examples/mini-cli.py

2009-03-18  Martin Pitt <martin.pitt@canonical.com>

	* po/de.po: [531] update German translations

	* po/POTFILES.in: [530] add madwifi to POTFILES.in

2009-03-18  Martin Pitt <martin.pitt@canonical.com>

	* kde/jockey.notifyrc.in: Added.

	* kde/jockey-kde,
	* po/POTFILES.in,
	* setup.cfg: Modified.

	[529] merge Jonathan Riddell's port to knotify4; add proper i18n

2009-03-18  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/madwifi.py: Added.

	[528] add example madwifi handler

2009-03-18  Martin Pitt <martin.pitt@canonical.com>

	* tests/shipped_handlers.py: [527] tests/shipped_handlers.py: do not
	try to call enable()/disable() if can_change() fails

	* README.txt,
	* kde/jockey-kde.desktop.in: [526] kde/jockey-kde.desktop.in: Do not
	run as root any more, PolicyKit-KDE exists now; update README.txt

2009-03-17  Martin Pitt <martin.pitt@canonical.com>

	* jockey/handlers.py,
	* tests/handlers.py: [525] Fix KernelModuleHandler.available() to
	return False when the handler package is not available. (LP: #341647)

2009-03-16  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/nvidia.py: [524] nvidia.py: do not attempt to
	rebind driver, it fails

	* jockey/handlers.py: [523] handlers.py: Fix crash if closing /sys
	file during rebind fails (LP: #335567)

2009-03-13  Jonathan Riddell <jriddell@canonical.com>

	* kde/autostart/jockey-kde.desktop.in: [522] fix kde autostart file

2009-03-07  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py: [521] oslib.py: Append ".conf" suffix to blacklist
	file, since current modutils deprecates anything else

2009-03-02  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py: [520] oslib.py: Do not grab lsb-release stderr

2009-02-26  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/sl_modem.py: [519] sl_modem.py example: detect
	alsa subdevices as well (LP: #295158)

2009-02-25  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py,
	* jockey/detection.py,
	* jockey/ui.py: [518] replace Exception.message with str(Exception),
	since .message is deprecated in Python 2.6

=== 0.5 ===
2009-02-24  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [517] release 0.5

2009-02-17  Martin Pitt <martin.pitt@canonical.com>

	* po/de.po: [516] complete German translations

2009-02-17  Martin Pitt <martin.pitt@canonical.com>

	* po/ast.po,
	* po/da.po,
	* po/en_GB.po,
	* po/et.po,
	* po/he.po,
	* po/oc.po: Added.

	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sk.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: Modified.

	[515] update translations from Launchpad

2009-02-02  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py: [514] backend.py, new_used_available(): Always
	write check cache, so that we avoid starting --check from autostart
	.desktop if there are no drivers

2009-01-29  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py: [513] oslib.py: Fix "pkcon get-details" parsing for
	current PackageKit versions

	* gtk/autostart/jockey-gtk.desktop.in,
	* kde/autostart/jockey-kde.desktop.in: [512] autostart *.desktop.in:
	Only run if /var/cache/jockey/check does not exist

	* backend/com.ubuntu.DeviceDriver.conf: [511] Update D-Bus policy for
	the backend (LP: #318745)

2009-01-23  Martin Pitt <martin.pitt@canonical.com>

	* data/icons/scalable/emblems: Renamed to data/icons/scalable/actions.

	[510] move status icons from emblems/ to actions/, emblems/ are wrong

2008-11-28  Martin Pitt <martin.pitt@canonical.com>

	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sk.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [509] update German translations

2008-11-27  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [508] ui.py: If an activated driver has a package,
	label the action "Remove", not "Deactivate". (LP: #284435)

	* gtk/jockey-gtk: [507] jockey-gtk: Enlarge driver list if there are
	more than 3 available drivers. (LP: #291028)

2008-11-24  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/fglrx.py: [506] fglrx.py: Unconfigured driver
	defaults to ati, which already provides compositing. (LP: #285879)

2008-11-12  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk: [505] jockey-gtk: Fix crash if nothing is selected
	in the tree view after an operation. (LP: #283887)

	* jockey/backend.py,
	* jockey/ui.py: [504] Intercept crashes of the backend (which manifest
	as D-BUS NoReply error), present an error message, and restart
	backend. (LP: #273600)

	* jockey/backend.py,
	* tests/backend.py: [503] backend.py: Rewrite timeout behaviour for
	more robustness; do not time out right after a long method call

	* data/icons/scalable/emblems/jockey-disabled.svg,
	* data/icons/scalable/emblems/jockey-enabled.svg: [502] replace
	enabled/disabled icons with more decent variant, thanks Kenneth Wimer!
	(LP: #290239)

	* tests/detection.py: [501] tests/detection.py: Fix yum printer test
	for changed package name on openprinting.org

2008-11-02  Martin Pitt <martin.pitt@canonical.com>

	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sk.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [500] update translations from Rosetta

2008-10-30  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk,
	* tests/run-gtk,
	* tests/run-kde: [499] Add test cases for ui_show_main() idempotency
	and fix it for GTK. (LP: #278071)

2008-10-24  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py,
	* tests/detection.py: [498] detection.py: Do not instantiate handlers
	from DriverDBs which are unavailable

	* examples/handlers/nvidia.py: [497] nvidia.py: Drop check for
	unsupported legacy versions; it does not work and should not be in
	trunk in the first place

2008-10-22  Martin Pitt <martin.pitt@canonical.com>

	* kde/jockey-kde.desktop.in: [496] Launch jockey-kde as root, since
	policykit-kde does not exist yet

2008-10-17  Martin Pitt <martin.pitt@canonical.com>

	* po/de.po: [495] po/de.po: Unfuzzify.

	* jockey/backend.py: [494] jockey/backend.py, polkit_auth_wrapper():
	Also intercept SystemError and other standard exceptions in the case
	of a PermissionDeniedByPolicy, i. e. when popping up the PK auth
	dialog. Fixes (LP: #274639) for real.

2008-10-16  Martin Pitt <martin.pitt@canonical.com>

	* tests/backend.py: [493] tests/backend.py: Do not add
	OpenPrintingDriverDB again, to avoid getting two identical results

	* jockey/backend.py: [492] Backend available(), search_drivers(): Show
	the recommended drivers first, so that the default GUI selection will
	not point to a non-recommended one by default

	* jockey/detection.py,
	* jockey/handlers.py,
	* tests/backend.py,
	* tests/detection.py: [491] OpenPrintingDriverDB: Disambiguate drivers
	by their driver name, not by supplier; fixes e. g. splix vs. splix2
	conflict

	* jockey/ui.py: [490] ui.py, search_driver(): Increase timeout from
	default 30 seconds to 10 minutes, since driver DB lookup can last
	quite long.

	* gtk/jockey-gtk: [489] jockey-gtk: Increase the default width of the
	license dialog to fit a standard 80 column text

	* kde/jockey-kde: [488] jockey-kde: remove some commented dead code

	* jockey/detection.py: [487] OpenPrintingDriverDB: Filter out HTML
	tags from names, they look ugly and <br> even breaks the display

=== 0.5beta3 ===
2008-10-16  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [486] release 0.5beta3

	* gtk/jockey-gtk: [485] jockey-gtk: If jockey shipped icons are not
	available (happens in some third-party themes), fall back to stock
	icons instead of crashing. (LP: #283363)

	* jockey/detection.py,
	* tests/detection.py,
	* tests/sandbox.py: [484] get_handlers(): If there is just one driver
	for a HardwareID, do not present it as recommended even if the Driver
	DB marks it as such, since it is just confusing.

	* jockey/detection.py: [483] OpenPrintingDriverDB: Show non-
	recommended drivers, too, but mark the recommended one appropriately.
	(LP: #271286)

	* README.txt,
	* jockey/detection.py,
	* tests/backend.py,
	* tests/detection.py: [482] openprinting.org lookup: Only search for
	packaged PPD files, not for cups filters  This is to greatly reduce
	the potential conflict with distro packages (until the
	openprinting.org ones get properly namespaced), and also because those
	filters should generally be in the distros for QA reasons.

2008-10-14  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py: [481] backend.py, set_enabled(): Report progress
	signals early when handling packages, to avoid delays until package
	manager sends out the first progress. (LP: #279073)

	* jockey/detection.py: [480] openprinting.org detected handlers: Add
	supplier and support contacts. (LP: #269454)

=== 0.5beta2 ===
2008-10-13  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [479] release 0.5beta2

	* kde/jockey-kde,
	* tests/run-kde: [478] jockey-kde: unbreak notifications

2008-10-12  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py,
	* jockey/ui.py,
	* tests/ui.py: [477] ui.py, set_handler_enabled(): Show SystemErrors
	in dialog instead of crashing

	* jockey/oslib.py,
	* tests/sandbox.py: [476] define that {install,remove}_package() raise
	SystemErrors on failure, add TestOSLib support for it

	* jockey/ui.py: [475] ui.py: Explicitly set encoding of stdout and
	stderr to the locale's preference, to avoid crashes if they are not
	terminals. (LP: #280147)  Thanks to Colin Watson for the approach.

2008-10-10  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/nvidia.py: [474] merge from Alberto

2008-10-07  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/nvidia.py: [473] merge fix from Alberto

2008-10-06  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/fglrx.py: [472] further clarify fglrx rationale

	* jockey/detection.py: [471] detection.py, get_printers(): Intercept
	RuntimeError harder. (LP: #272721)

2008-10-06  Martin Pitt <martin.pitt@canonical.com>

	* kde/LicenseDialog.ui: Added.

	* jockey/xorg_driver.py,
	* kde/ManagerWindowKDE4.ui,
	* kde/jockey-kde,
	* tests/handlers.py,
	* tests/run-kde: Modified.

	[470] merge fixes from Alberto

2008-10-06  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk,
	* kde/jockey-kde,
	* tests/run-gtk: [469] jockey-{gtk,kde}: Fix display of UI elements if
	no drivers are available. (LP: #277616)

	* jockey/backend.py,
	* tests/backend.py: [468] backend.py, set_enabled(): Propagate
	exceptions from the enable/disable threads. (LP: #278034)

	* jockey/ui.py: [467] ui.py, backend(): Re-detect device drivers after
	the backend timed out. (LP: #273231)

	* examples/handlers/fglrx.py: [466] Update the name of fglrx; radeonhd
	etc. are accelerated, too. (LP: #263359)

2008-10-02  Martin Pitt <martin.pitt@canonical.com>

	* kde/ManagerWindowKDE4.ui: [465] merge KDE layout fix from Alberto

2008-10-01  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py: [464] backend.py: Drop the useless and way too
	common log debug messages about D-BUS timeout reset and successful PK
	checks

	* kde/ManagerWindowKDE4.ui: [463] kde/ManagerWindowKDE4.ui: Increase
	default window width, so that the window header text is fully visible.
	(LP: #274700)

	* kde/ManagerWindowKDE4.ui: [462] kde/ManagerWindowKDE4.ui: Drop the
	expander next to the window heading, it prevented proper resizing.
	(LP: #274700)

	* jockey/ui.py: [461] ui.py: drop unused import

	* tests/run-kde: [460] tests/run-kde: Remove now redundant ui_init()
	calls

	* kde/jockey-kde: [459] jockey-kde: Remove some dead code, update
	program information

	* kde/ManagerWindowKDE4.ui: [458] kde/ManagerWindowKDE4.ui: Fix
	treeview declaration

	* kde/jockey-kde: [457] jockey-kde: Fix indeterminate progress bar

	* tests/run-kde: [456] tests/run-kde: give main window some more time
	to settle

	* jockey/oslib.py: [455] OSLib.set_backup_dir(): If /var/cache/jockey
	cannot be created, use a temporary directory

	* kde/jockey-kde: [454] jockey-kde: Fix QIcon namespacing (crash if
	icons are not installed in the system)

	* tests/run-gtk,
	* tests/run-kde: [453] tests/run-{gtk,kde}: Test indefinite progress
	bar

	* jockey/ui.py: [452] jockey/ui.py: Avoid flickering the progress bar
	dialog for very quick detect() calls

	* tests/run-kde: [451] tests/run-kde: fix race condition in main
	window test, and test ui_init() before detect()

	* kde/jockey-kde: [450] jockey-kde: Fix display of window text and
	subtext, and adapt it to driver changes. (LP: #274558)

	* kde/jockey-kde: [449] jockey-kde: Keep driver selection after
	enable/disable. (LP: #274699)

	* gtk/jockey-gtk: [448] jockey-gtk: Select first driver by default,
	and keep selection after enable/disable. (LP: #274699)

	* tests/run-gtk,
	* tests/run-kde: [447] tests/run-{gtk,kde}: test main window without
	any handlers

	* jockey/backend.py: [446] Backend.set_enabled(): Report indefinite
	progress if the handler does long operations

2008-09-30  Martin Pitt <martin.pitt@canonical.com>

	* kde/jockey-kde: [445] merge bug fix from Alberto

2008-09-29  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk,
	* gtk/main.glade,
	* jockey/ui.py,
	* kde/jockey-kde,
	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sk.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [444] move translatable bits out of glade/ui files

2008-09-29  Martin Pitt <martin.pitt@canonical.com>

	* data/icons/scalable/emblems/jockey-disabled.svg,
	* data/icons/scalable/emblems/jockey-enabled.svg,
	* data/icons/scalable/emblems/jockey-free.svg: Added.

	* AUTHORS,
	* data/icons/scalable/emblems/jockey-proprietary.svg,
	* gtk/jockey-gtk,
	* kde/jockey-kde: Modified.

	[443] add and use enabled/disabled/free from Kenneth Wimer

2008-09-29  Martin Pitt <martin.pitt@canonical.com>

	* po/de.po: [442] fix typos in German translation

2008-09-26  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [441] ui.py: Fix "not installed" -> "not activated"
	string inconsistency. (LP: #274697)

=== 0.5beta1 ===
2008-09-25  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [440] release 0.5beta1

	* do-release: [439] do-release: run build for running the test suite
	(needed by KDE) and sdist

	* MANIFEST.in: [438] MANIFEST.in: ship PO template

	* do-release: [437] do-release: call build for sdist, to get
	jockey/kdeui

	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sk.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [436] merge translations, update de.po

	* jockey/ui.py: [435] ui.py: work around some xgettext false positives

	* tests/run-gtk,
	* tests/run-kde: [434] fix detect() call in run-{gtk,kde}

	* jockey/ui.py: [433] ui.py: Show progress dialog for search_driver()

	* jockey/ui.py: [432] ui.py: replace AbstractUI.detect() with more
	generic _call_progress_dialog() wrapper

	* jockey/backend.py,
	* jockey/ui.py,
	* tests/backend.py: [431] use OpenPrintingDriverDB by default

	* jockey/detection.py: [430] detection.py: log responses from
	OpenPrinting.org query

	* jockey/ui.py: [429] TODO item

	* jockey/ui.py: [428] Fix search_driver output D-BUS signature

2008-09-24  Martin Pitt <martin.pitt@canonical.com>

	* jockey/xorg_driver.py,
	* tests/handlers.py: [427] merge fix from Alberto

	* jockey/ui.py,
	* tests/ui.py: [426] new UI function hwid_to_display_string(),
	converts printer device ID to friendly string for now (part of LP:
	#269454)

	* README.txt: [425] README.txt: document return value of
	search_driver()

	* jockey/ui.py,
	* tests/ui.py: [424] search_driver(): Return list of installed files
	in addition to status code. (LP: #269311)

	* jockey/backend.py,
	* tests/backend.py: [423] add Backend.handler_files()

	* tests/sandbox.py: [422] tests/sandbox.py: provide missing
	implementation of package_files()

	* gtk/jockey-gtk,
	* jockey/ui.py,
	* kde/jockey-kde: [421] Centralize knowledge about reboot condition,
	and update GTK/KDE UIs to display reboot status in both places.

	* examples/handlers/fglrx.py,
	* gtk/jockey-gtk,
	* kde/jockey-kde,
	* tests/run-kde: [420] merge fixes from Alberto

2008-09-23  Martin Pitt <martin.pitt@canonical.com>

	* jockey/xorg_driver.py,
	* tests/handlers.py: [419] fix XorgDriverHandler to not be used right
	after enabling

2008-09-22  Martin Pitt <martin.pitt@canonical.com>

	* tests/backend.py: [418] remove some leftover debugging code

	* jockey/oslib.py,
	* tests/oslib.py: [417] add OSLib.package_files()

	* jockey/ui.py: [416] ui.py: Properly intercept failure to connect to
	D-BUS. (LP: #258472)

	* jockey/ui.py: [415] update action strings

2008-09-21  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/fglrx.py,
	* examples/handlers/nvidia.py: [414] nvidia, fglrx: remove RgbPath

	* kde/jockey-kde,
	* tests/run-kde: [413] fix test-kde

	* kde/jockey-kde: [412] jockey-kde: clean up imports

	* setup.py: [411] setup.py: do not install the KDE .ui files any more

	* kde/jockey-kde,
	* setup.py: [410] build KDE .ui -> python on build time, to avoid
	runtime uic dependency (LP: #271317)

2008-09-20  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py,
	* jockey/detection.py,
	* tests/backend.py: [409] beat redundant probing out of add_driverdb()
	and search_driver()

2008-09-17  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py,
	* jockey/handlers.py,
	* tests/detection.py,
	* tests/sandbox.py: [408] support recommended flag in driver DBs

	* jockey/detection.py,
	* tests/detection.py: [407] OpenPrintingDriverDB: Show
	shortdescription and functionality fields. (Part of LP: #269454)

	* gtk/jockey-gtk,
	* jockey/ui.py,
	* kde/jockey-kde,
	* tests/sandbox.py,
	* tests/ui.py: [406] Change --search-driver UIs from confirmation
	dialog to displaying list of matches. (One half of LP: #269454)

	* jockey/backend.py,
	* jockey/detection.py,
	* tests/backend.py: [405] Fix search_drivers() to not return unrelated
	available handlers

2008-09-15  Martin Pitt <martin.pitt@canonical.com>

	* tests/ui.py: [404] tests/ui.py: check test HTTP server exit code

	* tests/ui.py: [403] check --help output

	* tests/ui.py: [402] tests/ui.py: fix race condition in test HTTP
	server startup

	* jockey/ui.py: [401] remove obsolete TODO item

	* jockey/backend.py,
	* jockey/ui.py,
	* tests/backend.py,
	* tests/run-gtk: [400] move hardware detection from Backend ctor to
	separate function, and call that with long D-BUS timeout and progress
	dialog (LP: #253224)

	* jockey/ui.py,
	* tests/ui.py: [399] drop obsolete AbstractUI.get_handler_tooltip()

	* backend/com.ubuntu.devicedriver.policy.in: [398]
	com.ubuntu.devicedriver.policy.in: allow non-local driver install
	(auth_admin) (LP: #269175)

	* gtk/jockey-gtk,
	* gtk/main.glade: [397] jockey-gtk: add license text dialog and link
	it to the license button (LP: #269352)

	* jockey/oslib.py,
	* tests/oslib.py,
	* tests/sandbox.py: [396] oslib.py, _save_module_blacklist(): create
	modules.d directory if it does not exist (LP: #229065)

	* gtk/jockey-gtk: [395] jockey-gtk: call gtk.init_check() to test
	$DISPLAY, and print error message instead of crashing (LP: #234252)

	* jockey/detection.py: [394] detection.py: fix another crash if cupsd
	is not running (LP: #255488)

	* jockey/detection.py: [393] detection.py: fix crash if cupsd is not
	running (LP: #256780)

	* examples/handlers/fglrx.py,
	* jockey/xorg_driver.py,
	* tests/handlers.py,
	* tests/shipped_handlers.py: [392] check handler behaviour with
	invalid xorg.conf, fix a few crashes (LP: #258064)

	* examples/handlers/fglrx.py: [391] fglrx.py: Fix crash if Device
	section does not configure a driver (LP: #269565)

	* tests/detection.py: [390] tests/detection.py: Skip openprinting.org
	query tests when being offline

2008-09-14  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [389] ui.py, set_handler_enable(): Fix reversed logic
	in determining enable/disable strings. (LP: #269444)

2008-09-12  Martin Pitt <martin.pitt@canonical.com>

	* AUTHORS,
	* kde/ManagerWindowKDE4.ui,
	* kde/jockey-kde,
	* tests/run-kde: [388] merge Alberto's KDE4 UI update which
	corresponds to recent GTK UI refurbishing (LP: #269314)

	* README.txt: [387] README.txt: needs pykde4 now

	* tests/handlers.py: [386] tests/handlers.py: test disable_modules in
	XorgDriverHandler checks

=== 0.5alpha1 ===
2008-09-12  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [385] release 0.5alpha1

	* kde/jockey-kde: [384] jockey-kde: Fix forgotten QIcon -> KIcon

2008-09-11  Martin Pitt <martin.pitt@canonical.com>

	* gtk/main.glade: [383] jockey-gtk: add a VPane between list and
	details

	* gtk/jockey-gtk,
	* gtk/main.glade: [382] jockey-gtk: put name, license, support status
	within scrollable area

2008-09-11  Martin Pitt <martin.pitt@canonical.com>

	* data/icons/scalable/emblems/jockey-certified.svg: Added.

	* gtk/jockey-gtk,
	* gtk/main.glade: Modified.

	[381] add a proper icon for certified drivers, and more gtk spacing
	fixes

2008-09-11  Martin Pitt <martin.pitt@canonical.com>

	* gtk/main.glade: [380] gtk/main.glade: A few spacing fixes

	* jockey/ui.py: [379] Put 2 words in uppercase and correct a keyboard
	accelerator

2008-09-10  Martin Pitt <martin.pitt@canonical.com>

	* README.txt: [378] README.txt: document D-BUS interface

2008-09-10  Martin Pitt <martin.pitt@canonical.com>

	[377] null-merge of remaining r366 in lp:~albertomilone/jockey/jockey-
	generic (already considered in r374)

2008-09-10  Martin Pitt <martin.pitt@canonical.com>

	* README.txt,
	* examples/handlers/fglrx.py,
	* examples/handlers/nvidia.py,
	* jockey/xorg_driver.py,
	* tests/handlers.py: [376] switch from guidance to x-kit, thanks
	Alberto Milone

	* tests/handlers.py: [375] tests/handlers.py: make xorg.conf in
	setUp(), so that it is available for all tests

2008-09-09  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk,
	* jockey/backend.py,
	* jockey/handlers.py,
	* jockey/ui.py,
	* kde/jockey-kde,
	* tests/backend.py,
	* tests/handlers.py: [374] Add support for recommended drivers, thanks
	Alberto Milone

	* tests/sandbox.py: [373] robustify startup of sandbox test XML-RPC
	server

2008-09-09  Martin Pitt <martin.pitt@canonical.com>

	* data/icons/scalable/emblems,
	* data/icons/scalable/emblems/jockey-proprietary.svg: Added.

	* gtk/jockey-gtk,
	* gtk/main.glade,
	* jockey/ui.py: Modified.

	[372] revamp the GTK UI for usability improvements from Matthew Paul
	Thomas, and add license/support status

2008-09-09  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [371] ui.py: change factorization

	* gtk/jockey-gtk,
	* jockey/ui.py,
	* kde/jockey-kde,
	* tests/ui.py: [370] remove remaining usage of toggle_handler(),
	update test cases

	* jockey/ui.py: [369] ui.py: merge change_enable() and
	toggle_handler() to set_handler_enable()

2008-09-08  Martin Pitt <martin.pitt@canonical.com>

	* AUTHORS: [368] review contributions and update AUTHORS

2008-09-05  Martin Pitt <martin.pitt@canonical.com>

	* tests/run-kde: [367] tests/run-kde: run main window test
	automatically

	* gtk/jockey-gtk,
	* jockey/ui.py,
	* kde/jockey-kde,
	* tests/run-gtk,
	* tests/run-kde,
	* tests/sandbox.py: [366] split off ui_show_main() from ui_init()

	* tests/run-kde: [365] tests/run-kde: fix a few regressions introduced
	in recent KDE4 merge which broke the tests

2008-09-04  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [364] improve string_{free,restricted} to make them
	suitable for the GUI, too

	* jockey/ui.py: [363] use string_* constants for _Enable and _Disable

2008-09-01  Martin Pitt <martin.pitt@canonical.com>

	* do-release: [362] do-release: restore GNU log format

2008-08-26  Jonathan Riddell <jriddell@canonical.com>

	* do-release: [361] ahem

	* do-release: [360] release 0.4.1

=== 0.4.1 ===
2008-08-26  Jonathan Riddell <jriddell@canonical.com>

	* do-release,
	* setup.py: [359] release 0.4.1

	* MANIFEST.in: [358] update MANIFEST

	* kde/ManagerWindowKDE4.ui,
	* kde/jockey-kde,
	* tests/run-kde: [357] merge in jonathan thomas' pykde port

2008-08-15  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [356] quick fix for search_driver() having full UI
	available by calling ui_init()

	* gtk/com.ubuntu.DeviceDriver.service: [355]
	gtk/com.ubuntu.DeviceDriver.service: Actually supply --dbus-server
	argument

2008-08-15  Martin Pitt <martin.pitt@canonical.com>

	* gtk/com.ubuntu.DeviceDriver.service: Added.

	* setup.py: Modified.

	[354] add gtk/com.ubuntu.DeviceDriver.service for session D-BUS
	service activation

2008-08-15  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py,
	* tests/ui.py: [353] Add --dbus-server mode to UI

	* tests/run: [352] tests/run: run tests in alphabetical python module
	order

	* jockey/backend.py,
	* tests/backend.py: [351] robustify D-BUS backend server startup in
	test suite

	* jockey/ui.py: [350] AbstractUI.change_enable(): add explicit confirm
	argument, so that the function can be used from elsewhere, tooo

2008-08-04  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py,
	* tests/backend.py: [349] test add_driverdb() with XMLRPC, fix license
	passing in handler_info()

2008-07-24  Martin Pitt <martin.pitt@canonical.com>

	* backend/jockey-backend: [348] fix code formatting

	* backend/jockey-backend: [347] jockey-backend: add --logfile option

	* jockey/handlers.py,
	* tests/handlers.py: [346] handlers with an uninstalled driver package
	can never be "in use"

	* do-release: [345] do-release: check for missing files in MANIFEST

	* MANIFEST.in: [344] MANIFEST.in: add missing backend/ files

2008-07-23  Martin Pitt <martin.pitt@canonical.com>

	* jockey/handlers.py: [343] KernelModuleHandler: refresh the modalias
	information after enable/disable, since it might have installed a
	package

	* examples/handlers/fglrx.py: [342] fglrx.py: hint that the driver is
	non-free, since the module is not available by default

	* backend/jockey-backend: [341] set default backend timeout to 10
	minutes; 1 minute is too short

	* jockey/ui.py: [340] AbstractUI.backend(): reconnect to D-BUS service
	if the server timed out

	* tests/run-gtk,
	* tests/run-kde: [339] tests/run-{gtk,kde}: Eliminiate backend timeout
	race condition

	* jockey/backend.py: [338] essentially disable d-bus call timeout in
	dbus_sync_call_signal_wrapper()

	* jockey/handlers.py: [337] KernelModuleHandler.enabled(): Never
	return None

	* jockey/ui.py: [336] UI toggle_handler(): Show driver packge
	installation progress dialog

	* jockey/backend.py: [335] jockey.backend: Add
	dbus_sync_call_signal_wrapper() hack

	* gtk/jockey-gtk: [334] jockey-gtk: fix pulsating progress bar

	* jockey/backend.py,
	* jockey/oslib.py,
	* tests/sandbox.py: [333] OSLib.{install,remove}_package(): do not
	pass UI, but progress callback

2008-07-23  Martin Pitt <martin.pitt@canonical.com>

	* gtk/jockey-gtk,
	* gtk/main.glade,
	* jockey/ui.py,
	* kde/jockey-kde,
	* tests/run-gtk,
	* tests/run-kde,
	* tests/sandbox.py,
	* tests/ui.py: Modified.

	* kde/DownloadProgressQt.ui: Renamed to kde/ProgressDialog.ui and
	  modified.

	[332] turn ui_download_* into generic progress dialog API

2008-07-22  Martin Pitt <martin.pitt@canonical.com>

	* po/de.po: [331] update German translations

	* examples/handlers/nvidia.py: [330] nvidia.py example handler: drop
	legacy/new versions, package selection should happen in modalias files

	* README.txt,
	* jockey/oslib.py,
	* tests/oslib.py: [329] provide quick-and-dirty implementation of
	package query functions with PackageKit pkcon

	* jockey/xorg_driver.py: [328] xorg_driver.py: Do not crash on
	removing Device section options if there is no such section

	* jockey/detection.py,
	* tests/detection.py: [327] LocalKernelModulesDriverDB: support
	package field in modalias lists

2008-07-19  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py: [326] jockey/detection.py: Fix caching of
	printers if none are detected

2008-07-16  Martin Pitt <martin.pitt@canonical.com>

	* jockey/backend.py,
	* tests/backend.py: [325] add Backend.add_driverdb()

	* jockey/backend.py,
	* jockey/detection.py,
	* jockey/handlers.py,
	* tests/backend.py: [324] add Backend.search_driver() function

	* tests/run: [323] tests/run: allow filtering of tests

2008-07-15  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py,
	* jockey/handlers.py,
	* tests/detection.py,
	* tests/handlers.py: [322] add PrinterDriverHandler and get_handlers()
	integration

	* tests/detection.py: [321] tests/detection.py: Fix
	test_openprinting_unknownprinter()

2008-07-14  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py,
	* tests/detection.py: [320] add OpenPrintingDriverDB and test cases

	* jockey/oslib.py: [319] add OSLib.packaging_system()

2008-07-10  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py: [318] detection.py: catch errors when calling
	instance.name() as well, packages might not be available

2008-07-09  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/fglrx.py: [317] fglrx.py: Fix typo

2008-07-08  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py,
	* jockey/handlers.py,
	* tests/detection.py,
	* tests/sandbox.py: [316] support "free" and "license" fields in
	DriverIDs

	* jockey/handlers.py,
	* tests/handlers.py: [315] allow KMod handlers with nonexisting local
	kmods if they specify freeness, description, and package

	* jockey/handlers.py: [314] simplify FirmwareHandler.free()

	* tests/backend.py,
	* tests/detection.py,
	* tests/ui.py: [313] rename printer -> printer_deviceid in test suite,
	too

2008-07-07  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py: [312] fix code formatting

	* jockey/detection.py: [311] rename "printer" HardwareID type to
	"printer_deviceid", as agreed in LFDB

	* jockey/detection.py: [310] fix comment

	* jockey/backend.py: [309] backend.py: add missing D-BUS timeout reset
	and PK check to get_hardware()

2008-07-04  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py,
	* tests/backend.py,
	* tests/detection.py,
	* tests/ui.py: [308] add support for detecting printers

	* jockey/ui.py,
	* tests/ui.py: [307] add --hardware-ids mode to UI

	* jockey/backend.py,
	* tests/backend.py: [306] add Backend.get_hardware()

	* tests/backend.py: [305] tests/backend.py: simplify server stop, it's
	already done in timeout test

2008-06-28  Martin Pitt <martin.pitt@canonical.com>

	* tests/ui.py: [304] remove "pokes in internal data structures" TODOs,
	hard to do otherwise in the test suite

2008-06-25  Martin Pitt <martin.pitt@canonical.com>

	* README.txt: [303] README.txt: update dbus-python dependency
	description

2008-06-25  Martin Pitt <martin.pitt@canonical.com>

	* backend,
	* backend/com.ubuntu.DeviceDriver.conf,
	* backend/com.ubuntu.DeviceDriver.service,
	* backend/com.ubuntu.devicedriver.policy.in,
	* backend/jockey-backend,
	* jockey/backend.py,
	* tests/backend.py: Added.

	* examples/handlers/ipw3945.py: Removed.

	* README.txt,
	* examples/handlers/fglrx.py,
	* examples/handlers/nonfree.py,
	* examples/handlers/nvidia.py,
	* examples/handlers/pkg.py,
	* examples/handlers/sl_modem.py,
	* gtk/jockey-gtk,
	* gtk/jockey-gtk.desktop.in,
	* jockey/detection.py,
	* jockey/handlers.py,
	* jockey/oslib.py,
	* jockey/ui.py,
	* jockey/xorg_driver.py,
	* kde/jockey-kde,
	* kde/jockey-kde.desktop.in,
	* po/POTFILES.in,
	* po/de.po,
	* setup.cfg,
	* setup.py,
	* tests/detection.py,
	* tests/handlers.py,
	* tests/oslib.py,
	* tests/run-gtk,
	* tests/run-kde,
	* tests/sandbox.py,
	* tests/shipped_handlers.py,
	* tests/ui.py: Modified.

	[302] Merge dbus-backend branch: Split program into a privileged
	system D-BUS backend (access controlled by PolicyKit), and
	unprivileged frontend. This provides a cleaner design, gets rid of
	ugly hacks like open_app() and gksu/kdesu, and thus makes the program
	more portable.

2008-06-25  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [301] Use unicode-aware gettext.install() instead of
	textdomain() and KDE unicode() wrapping hack

	* jockey/ui.py: [300] ui.py: Set gettext domain earlier, so that
	--help gets translated

2008-06-24  Martin Pitt <martin.pitt@canonical.com>

	* do-release: Modified.

	* tests/run-qt: Renamed to tests/run-kde.

	[299] rename tests/run-qt to tests/run-kde for consistency

2008-06-20  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py: [298] add and fix debug logging in OSLib.open_app()

2008-05-28  Martin Pitt <martin.pitt@canonical.com>

	* tests/sandbox.py: [297] test sandbox AllAvailOSLib: provide
	temporary module_blacklist_file, so that handlers do not die with
	EPERM during tests

	* jockey/oslib.py,
	* tests/oslib.py: [296] check all /etc/modprobe.d/blacklist* files in
	module_blacklisted()

=== 0.4 ===
2008-05-20  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [295] release 0.4

	* README.txt: [294] update README.txt for dropped DriverPackageHandler

	* tests/detection.py: [293] test third-party driver package
	installation in XML-RPC cases

2008-05-19  Martin Pitt <martin.pitt@canonical.com>

	* jockey/handlers.py,
	* tests/handlers.py: [292] fix Handler to work with package
	repositories

	* jockey/oslib.py,
	* tests/sandbox.py: [291] add OSLib.repository_enabled() and tests in
	sandbox

	* tests/handlers.py: [290] tests/handlers.py: use
	TestOSLib.reset_packages()

	* jockey/oslib.py,
	* tests/sandbox.py: [289] add add/remove_repository() interface and
	sandbox items/tests

	* tests/handlers.py: [288] tests/handlers.py: do not use internal
	fake_pkg

2008-05-18  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/nvidia.py,
	* examples/handlers/pkg.py,
	* examples/handlers/sl_modem.py,
	* jockey/detection.py,
	* jockey/handlers.py,
	* jockey/xorg_driver.py,
	* tests/handlers.py: [287] drop DriverPackageHandler, functionality is
	in Handler now; this made ModulePackageHandler obsolete as well

	* tests/detection.py: [286] tests/detection.py: fix expected output,
	kmod:chocolate:VaporTech is disabled by default (package not
	installed)

	* jockey/handlers.py,
	* tests/handlers.py: [285] fold DriverPackageHandler into Handler,
	since it makes much more sense with the new general idea of third-
	party repositories

2008-04-28  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [284] jockey/ui.py, --check-composite: Re-check the
	system after attempting to enable the driver, and only signal success
	(exit with 0) if the driver was actually enabled. Otherwise,
	cancelling installation would invalidly signal success to the caller.
	(LP: #208026)

	* jockey/oslib.py: [283] OSLib.open_app(): Wait until the subprocess
	returned, so that we can check the system state afterwards.

	* examples/handlers/fglrx.py,
	* examples/handlers/nvidia.py,
	* jockey/xorg_driver.py: [282] XorgDriverHandler, nvidia, fglrx: Set
	identifiers for newly created sections, they are invalid without one.
	Thanks to Laszlo Pandy! (LP: #218478)

	* examples/handlers/nvidia.py: [281] nvidia.py: Fix "enabled"
	handling: check if the package is installed and module not
	blacklisted. (LP: #216650)

2008-04-26  Martin Pitt <martin.pitt@canonical.com>

	* tests/handlers.py: [280] remove some dead code in tests

	* examples/handlers/nvidia.py,
	* jockey/detection.py,
	* jockey/handlers.py,
	* tests/detection.py,
	* tests/handlers.py,
	* tests/sandbox.py: [279] Merge remotedb branch:  - XMLRPC DriverDB
	implementation (20080407 protocol)  - renamed/new DriverID properties
	(2000407 standard)  - add additional standard Handler properties
	(vendor, repository,    etc.)  - DriverDB caching infrastructure  -
	multiple instances of a Handler with different properties

	* tests/run: [278] check code coverage in tests/*.py, too

2008-04-25  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/fglrx.py: [277] fglrx.py: Do not override third-
	party fglrx driver. (LP: #221968)

	* tests/detection.py,
	* tests/handlers.py,
	* tests/oslib.py,
	* tests/sandbox.py,
	* tests/shipped_handlers.py,
	* tests/ui.py: [276] log test case methods to sandbox debug log

	* tests/run: [275] save debug log on test failure

	* jockey/handlers.py,
	* tests/handlers.py,
	* tests/sandbox.py: [274] consider BSD licensed kmods as free

2008-04-12  Martin Pitt <martin.pitt@canonical.com>

	* jockey/oslib.py,
	* tests/oslib.py,
	* tests/sandbox.py: [273] add OSLib.get_system_vendor_product()

2008-04-09  Martin Pitt <martin.pitt@canonical.com>

	* jockey/ui.py: [272] jockey/ui.py: Intercept IOErrors when writing to
	stderr. (LP: #204120)

2008-04-08  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/fglrx.py: [271] fglrx.py: Fix detection of
	autodetected radeon driver. (LP: #207957)

	* jockey/oslib.py,
	* tests/sandbox.py: [270] do not require system cache dir in test
	suite

	* jockey/oslib.py: [269] robustify get_os_version() to not assume
	whitespace vs. newline

2008-04-07  Martin Pitt <martin.pitt@canonical.com>

	* jockey/handlers.py,
	* tests/handlers.py: [268] add some missing handlers.py tests and fix
	some bugs

	* tests/detection.py,
	* tests/sandbox.py: [267] add tests to achieve 100% code coverage in
	detection.py

	* .bzrignore,
	* tests/run: [266] tests/run: Support usage of python-coverage

2008-04-07  Martin Pitt <martin.pitt@canonical.com>

	* po/sk.po: Added.

	[265] add sk.po

2008-04-07  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/nvidia.py: [264] nvidia.py: Drop AddARGBVisuals
	and AddARGBGLXVisuals options from legacy driver. (LP: #211752)

	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [263] pull current Launchpad translations

2008-04-06  Martin Pitt <martin.pitt@canonical.com>

	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [262] update translations

	* po/POTFILES.in: [261] POTFILES.in: Add missing desktop files

	* gtk/autostart/jockey-gtk.desktop.in,
	* kde/autostart/jockey-kde.desktop.in: [260] autostart .desktop files:
	Add Comment field. (LP: #146918)

	* examples/handlers/nvidia.py: [259] nvidia.py: Fix extra screen
	options to get quoted properly. (LP: #211368)

	* jockey/ui.py,
	* tests/ui.py: [258] Fix --update to not spawn GUI

2008-04-05  martin@piware.de

	* jockey/detection.py,
	* jockey/ui.py,
	* tests/detection.py,
	* tests/sandbox.py: [257] pass HardwareIDs to DriverDB.update()

	* jockey/ui.py: [256] jockey/ui.py: save detected hardware to avoid
	detecting multiple times (with --update)

	* jockey/detection.py: [255] simplify _connected_modaliases()

	* jockey/detection.py,
	* tests/detection.py: [254] wrap _connected_modaliases() into new
	official API get_hardware()

	* jockey/detection.py,
	* jockey/ui.py,
	* tests/detection.py,
	* tests/sandbox.py,
	* tests/ui.py: [253] add DriverDB.update(), make TestDriverDB a fake
	remote DB, implement and test --update

	* jockey/ui.py: [252] jockey/ui.py: foundation for multiple driver DBs

	* jockey/detection.py,
	* tests/detection.py: [251] get_handlers(): support multiple driver
	DBs

2008-04-01  Martin Pitt <martin.pitt@canonical.com>

	* jockey/handlers.py: [250] If rebinding a module fails, trigger
	reboot notification. (LP: #207928)

	* examples/handlers/nvidia.py: [249] nvidia.py: Add AddARGBGLXVisuals
	option to Screen section for nvidia-glx. (LP: #154596)

	* examples/handlers/nvidia.py: [248] nvidia.py: Do not advertise as
	enabling composite if driver is already loaded (i. e. installed
	manually). (LP: #202802)

	* examples/handlers/fglrx.py,
	* examples/handlers/nvidia.py,
	* jockey/ui.py,
	* jockey/xorg_driver.py,
	* tests/handlers.py,
	* tests/shipped_handlers.py,
	* tests/ui.py: [247] rename supports_composite() to
	enables_composite() for clarification

	* examples/handlers/fglrx.py,
	* examples/handlers/nvidia.py: [246] fglrx.py: Do not suggest
	installing fglrx if using the radeon X.org driver, since that already
	supports composite (LP: #207957)

	* tests/shipped_handlers.py: [245] tests/shipped_handlers.py: also
	test XorgDriverHandler methods

	* jockey/ui.py: [244] jockey/ui.py: Change --update-db to print an
	error message instead of exception (LP: #209594)

=== 0.3.3 ===
2008-03-27  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [243] release 0.3.3

	* jockey/xorg_driver.py: [242] jockey/xorg_driver.py: check if _row
	attribute is present (LP #201160)

	* tests/handlers.py: [241] tests/handlers.py: Add module subsection to
	test xorg.conf to reproduce LP #201160

	* jockey/ui.py,
	* tests/ui.py: [240] have --check-composite ask for confirmation (LP
	#202898)

	* jockey/ui.py,
	* po/de.po,
	* tests/ui.py: [239] add --confirm option

	* examples/handlers/nvidia.py: [238] nvidia.py: Enable
	AddARGBGLXVisuals option for standard nvidia driver (LP #154596)

	* kde/jockey-kde: [237] jockey-kde: Do not change check boxes  if
	enabling was cancelled

	* kde/jockey-kde: [236] jockey-kde: Formatting fixes

	* kde/jockey-kde: [235] jockey-kde: disable help button if help is not
	available (LP: #206169)

	* kde/jockey-kde: [234] jockey-kde: drop unicode() conversion in
	confirm_action(), strings are already unicode (LP #206169)

2008-03-20  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/fglrx.py,
	* examples/handlers/nvidia.py: [233] fglrx, nvidia handlers: fix
	copy&paste error to really fix nonexisting screen section (LP #200832)

2008-03-20  Martin Pitt <martin.pitt@canonical.com>

	* tests/shipped_handlers.py: Added.

	* tests/sandbox.py: Modified.

	[232] add testing of shipped handlers (in examples and data)

2008-03-20  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py,
	* tests/detection.py: [231] get_handlers(): add mode to return all
	handlers  (including for non-avail hw)

=== 0.3.2 ===
2008-03-18  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [230] release 0.3.2

	* do-release,
	* tests/run-qt: [229] do-release: run Qt test suite

	* tests/run-qt: [228] tests/run-qt: run noninteractively

	* kde/jockey-kde: [227] kde/jockey-kde: make --check notifications
	actually work (LP #193985)

	* jockey/oslib.py: [226] jockey/oslib.py: fix calling of gksu

	* tests/sandbox.py: [225] tests/sandbox.py: fix typo

	* kde/jockey-kde: [224] kde/jockey-kde, comfirm_action(): Fix string
	formatting (LP: #197777)

	* jockey/ui.py: [223] ui.py, check(): intercept ValueError from
	package query (LP #200089)

	* jockey/oslib.py: [222] OSLib ctor: abort gracefully if cache
	directory does not exist

	* examples/handlers/fglrx.py,
	* examples/handlers/nvidia.py: [221] fglrx, nvidia handlers: create
	screen section if it does not exist (LP #200832)

2008-03-13  Jonathan Riddell <jriddell@canonical.com>

	* data/icons/16x16/apps/jockey-kde.png,
	* data/icons/22x22/apps/jockey-kde.png,
	* data/icons/24x24/apps/jockey-kde.png,
	* data/icons/32x32/apps/jockey-kde.png,
	* data/icons/48x48,
	* data/icons/48x48/apps,
	* data/icons/48x48/apps/jockey-kde.png,
	* data/icons/scalable/apps/jockey-kde.svg: Added.

	* kde/autostart/jockey-kde.desktop.in,
	* kde/jockey-kde,
	* kde/jockey-kde.desktop.in: Modified.

	[220] merge from Ryan Kavanagh's branch https://code.launchpad.net
	/~kubuntu-users/jockey/jockey-kde

=== 0.3.1 ===
2008-03-10  Martin Pitt <martin.pitt@canonical.com>

	* setup.py: [219] release 0.3.1

	* do-release: [218] do-release: create tarball GPG signature

	* gtk/autostart/jockey-gtk.desktop.in,
	* jockey/ui.py,
	* kde/autostart/jockey-kde.desktop.in: [217] delay --check for a
	minute in XDG autostart desktop files

	* jockey/ui.py: [216] run --check with niceness 10

	* jockey/detection.py: [215] LocalKernelModulesDriverDB: use per-
	vendor modalias maps for speedup

	* jockey/ui.py,
	* tests/ui.py: [214] --enable and --disable should be noninteractive,
	remove confirmation

	* jockey/xorg_driver.py,
	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po,
	* tests/handlers.py: [213] create default xorg.conf when it does not
	exist

2008-03-06  Martin Pitt <martin.pitt@canonical.com>

	* README.txt: [212] add dependencies to README.txt

2008-03-06  Martin Pitt <martin.pitt@canonical.com>

	* README.txt: Added.

	* MANIFEST.in: Modified.

	[211] add README.txt

2008-03-06  Martin Pitt <martin.pitt@canonical.com>

	* examples/handlers/nvidia.py: [210] nvidia.py: only show as used if
	package is installed; otherwise, module will appear as used if you
	have a different nvidia-* package installed than the one indicated by
	the modalias overrides.

=== 0.3 ===
2008-03-04  Martin Pitt <martin.pitt@canonical.com>

	* MANIFEST.in: [209] MANIFEST.in: include KDE files

	* setup.py: [208] release 0.3

	* po/de.po: [207] complete German translation

	* jockey/detection.py,
	* tests/ui.py: [206] do not create on-the-fly kmod handler for
	available custom handler

	* jockey/ui.py,
	* tests/ui.py: [205] use UI confirmation for --enable/--disable

	* jockey/oslib.py,
	* jockey/ui.py,
	* tests/sandbox.py,
	* tests/ui.py: [204] implement --check-composite

	* examples/handlers/fglrx.py,
	* examples/handlers/nvidia.py,
	* jockey/xorg_driver.py,
	* tests/handlers.py: [203] add XorgDriverHandler.supports_composite()
	and implement it for fglrx and nvidia examples

	* jockey/oslib.py: [202] OSLib.open_app(): support custom argv

	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [201] po update

	* tests/ui.py: [200] tests/ui.py: move handler cleanup to tearDown()

	* jockey/ui.py,
	* tests/ui.py: [199] port --enable and --disable switches from r-m (LP
	#181832)

	* jockey/ui.py,
	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po,
	* tests/ui.py: [198] more user friendly and i18n'ed --list output

	* jockey/detection.py: [197] HardwareID.__eq__: use global re cache;
	not slightly faster than fnmatch instead of 10 times slower

	* jockey/detection.py: [196] slightly more elegant implementation of
	HardwareID.__eq__

	* jockey/handlers.py,
	* tests/handlers.py: [195] provide default implementation for
	Handler.id()

	* jockey/ui.py: [194] use handler ID instead of class/name for --check
	cache

	* jockey/handlers.py,
	* tests/detection.py,
	* tests/handlers.py,
	* tests/ui.py: [193] add handler IDs, add/adapt test cases

2008-03-03  Martin Pitt <martin.pitt@canonical.com>

	* jockey/detection.py,
	* tests/detection.py,
	* tests/sandbox.py,
	* tests/ui.py: [192] use re, not fnmatch for modalias pattern matching
	(LP #193521)

	* jockey/detection.py: [191] quiesce backtraces from failed handler
	instantiation (LP #195548)

	* examples/handlers/fglrx.py: [190] Update fglrx example handler for
	current upstream version:  - Supports composite now, so don't disable
	it  - Force DefaultDepth 24 to unbreak compiz LP #194963

2008-02-20  Martin Pitt <martin.pitt@canonical.com>

	* do-release: [189] add explanatory comment to do-release

2008-02-18  Martin Pitt <martin.pitt@canonical.com>

	* tests/run-qt: [188] fix pyc cleanup of tests/run-qt

	* jockey/ui.py,
	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [187] make window title consistent to .desktop files
	(LP #189689)

	* jockey/handlers.py,
	* jockey/xorg_driver.py,
	* tests/detection.py: [186] add debugging for enabled() to
	XorgDriverHandler and ModulePackageHandler

	* setup.cfg: [185] mangle setup.cfg to clean up properly

2008-02-14  Martin Pitt <martin.pitt@ubuntu.com>

	* kde/DownloadProgressQt.ui,
	* kde/ManagerWindowKDE4.ui,
	* kde/autostart,
	* kde/autostart/jockey-kde.desktop.in,
	* kde/jockey-kde,
	* kde/jockey-kde.desktop.in,
	* tests/run-qt: Added.

	* setup.cfg,
	* setup.py: Modified.

	[184] merge Martin B?hm's KDE branch

2008-02-14  Martin Pitt <martin.pitt@ubuntu.com>

	* gtk/jockey-gtk.desktop.in: [183] gtk/jockey-gtk.desktop.in: only
	hide in KDE

	* gtk/jockey-gtk.desktop.in,
	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [182] fix capitalization in GTK desktop file

2008-02-08  Martin Pitt <martin.pitt@ubuntu.com>

	* jockey/detection.py,
	* tests/detection.py,
	* tests/sandbox.py: [181] Do not ignore custom handlers for ignored
	kmods

	* jockey/detection.py,
	* tests/detection.py,
	* tests/ui.py: [180] LocalKernelModulesDriverDB: return all matching
	modules instead of arbitrarily picking the first one (which is just
	random). Need a better algorithm for picking in the future.

2008-02-07  Martin Pitt <martin.pitt@ubuntu.com>

	* jockey/detection.py,
	* tests/detection.py,
	* tests/sandbox.py: [179] At least on Linux 2.6.24 devices on the SSB
	bus do not produce modalias files, they just mention it in 'uevent'.
	Add detection for those and add test case (borrowed from the b43
	module).

2008-02-04  Martin Pitt <martin.pitt@ubuntu.com>

	* gtk/autostart/jockey-gtk.desktop.in,
	* gtk/jockey-gtk.desktop.in: [178] remove obsolete Encoding attribute
	in gtk .desktop files (LP: #146961)

	* po/de.po: [177] unfuzz de.po

2008-02-04  Martin Pitt <martin.pitt@ubuntu.com>

	* do-release: Added.

	[176] add do-release

=== 0.2 ===
2008-02-04  Martin Pitt <martin.pitt@ubuntu.com>

	* setup.py: [175] release 0.2

	* MANIFEST.in: [174] MANIFEST.in: include ChangeLog

	* tests/run: [173] test/run: exit with zero on success

2008-02-04  Martin Pitt <martin.pitt@ubuntu.com>

	* .bzrignore: Added.

	[172] add .bzrignore

2008-02-04  Martin Pitt <martin.pitt@ubuntu.com>

	* gtk/main.glade: [171] main.glade: set proper window icon (LP
	#187073)

	* gtk/main.glade: [170] remove bogus dialog from main.glade

	* gtk/autostart/jockey-gtk.desktop.in,
	* gtk/jockey-gtk.desktop.in,
	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/de.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: [169] update GTK .desktop file strings to avoid
	repeating "setup" in administration menu (LP #150205)

	* examples/handlers/nvidia.py: [168] nvidia.py: enable UseEdidFreqs
	for legacy driver (LP #151141)

	* examples/handlers/nvidia.py: [167] nvidia.py: move AddARGBVisuals
	option to legacy handler, not necessary any more with recent versions

	* jockey/ui.py: [166] suppress exceptions (like SIGPIPE) in logging
	(LP #188658)

	* jockey/detection.py,
	* tests/detection.py: [165] do not create default handlers for
	nonexisting kmods (LP #187148)

	* jockey/detection.py: [164] make LocalKernelModulesDriverDB a real
	subclass of DriverDB

	* jockey/detection.py,
	* tests/detection.py: [163] * add test for behaviour of
	KernelModuleHandler subclass for nonexisting module * fix modinfo
	error output for above case

	* gtk/jockey-gtk,
	* gtk/main.glade,
	* jockey/oslib.py,
	* tests/run-gtk,
	* tests/sandbox.py: [162] hide help button if help is not available

	* tests/ui.py: [161] tests/ui.py: Rename test_help() to
	test_cli_help(), since we will test GUI help, too

	* tests/sandbox.py: [160] tests/sandbox.py: ui_idle() dummy
	implementation

=== 0.1 ===
2008-01-31  Martin Pitt <martin.pitt@ubuntu.com>

	* setup.py: [159] release as 0.1

	* po/de.po: [158] complete German translation

2008-01-31  Martin Pitt <martin.pitt@ubuntu.com>

	* MANIFEST.in: Added.

	* setup.py: Modified.

	[157] add MANIFEST.in and tweak setup.py so that sdist gives an useful
	tarball

2008-01-31  Martin Pitt <martin.pitt@ubuntu.com>

	* tests/run-gtk: [156] run-gtk: clean up pyc file

	* po/de.po: [155] complete German translation

2008-01-31  Martin Pitt <martin.pitt@ubuntu.com>

	* po/jockey.pot: Removed.

	[154] remove accidentally versioned POT

2008-01-31  Martin Pitt <martin.pitt@ubuntu.com>

	* jockey/xorg_driver.py: [153] remove obsolete Xorg driver .olddriver
	backup handling; we backup the entire file already

	* gtk/jockey-gtk,
	* tests/run-gtk: [152] run-gtk: run message box selftests
	noninteractively, too

	* gtk/main.glade,
	* tests/run-gtk: [151] run-gtk: run download dialog tests
	noninteractively

2008-01-30  Martin Pitt <martin.pitt@ubuntu.com>

	* gtk/jockey-gtk,
	* gtk/main.glade,
	* jockey/ui.py,
	* tests/run-gtk: [150] implement GTK download progress bar, add tests

	* gtk/jockey-gtk: [149] avoid "glade not found" error when running
	from local tree

2008-01-30  Martin Pitt <martin.pitt@ubuntu.com>

	* tests/run-gtk: Added.

	[148] add tests/run-gtk: first cut of interactive tests of GTK
	implementation

2008-01-30  Martin Pitt <martin.pitt@ubuntu.com>

	* jockey/ui.py: [147] remove obsolete TODO item

	* jockey/ui.py,
	* tests/sandbox.py,
	* tests/ui.py: [146] port installed_packages status file, add tests
	for package installation/removal/logging

2008-01-30  Martin Pitt <martin.pitt@ubuntu.com>

	* po/af.po,
	* po/ar.po,
	* po/be.po,
	* po/bg.po,
	* po/ca.po,
	* po/cs.po,
	* po/el.po,
	* po/es.po,
	* po/eu.po,
	* po/fi.po,
	* po/fr.po,
	* po/gl.po,
	* po/hr.po,
	* po/hu.po,
	* po/id.po,
	* po/it.po,
	* po/ja.po,
	* po/jockey.pot,
	* po/ka.po,
	* po/ko.po,
	* po/lt.po,
	* po/lv.po,
	* po/mk.po,
	* po/nb.po,
	* po/nl.po,
	* po/nn.po,
	* po/pl.po,
	* po/pt.po,
	* po/pt_BR.po,
	* po/ro.po,
	* po/ru.po,
	* po/sl.po,
	* po/sr.po,
	* po/sv.po,
	* po/th.po,
	* po/tr.po,
	* po/uk.po,
	* po/vi.po,
	* po/zh_CN.po,
	* po/zh_HK.po,
	* po/zh_TW.po: Added.

	* po/de.po: Modified.

	[145] add usable translations from old restricted-manager

2008-01-30  Martin Pitt <martin.pitt@ubuntu.com>

	* jockey/handlers.py,
	* jockey/ui.py: [144] move FirmwareHandler strings to UI to make them
	reusable

	* jockey/handlers.py,
	* tests/handlers.py,
	* tests/sandbox.py: [143] DriverPackageHandler: test and fix failed
	package installation

2008-01-26  martin@piware.de

	* jockey/detection.py,
	* tests/detection.py,
	* tests/sandbox.py,
	* tests/ui.py: [142] test and fix instantiation of FirmwareHandler
	from a DriverDB

	* jockey/handlers.py,
	* tests/handlers.py: [141] fix and test FirmwareHandler.free()

2008-01-25  martin@piware.de

	* jockey/detection.py,
	* jockey/handlers.py,
	* tests/detection.py,
	* tests/handlers.py,
	* tests/sandbox.py: [140] revert extra_options, it is bad style (r133)

2008-01-24  martin@piware.de

	* setup.py: [139] remove obsolete TODO comment

2008-01-24  martin@piware.de

	* examples/handlers/fglrx.py,
	* examples/handlers/ipw3945.py,
	* examples/handlers/nonfree.py,
	* examples/handlers/nvidia.py,
	* examples/handlers/pkg.py,
	* examples/handlers/sl_modem.py,
	* gtk/main.glade,
	* jockey/oslib.py,
	* jockey/ui.py,
	* po/POTFILES.in,
	* po/de.po,
	* setup.cfg,
	* setup.py,
	* tests/detection.py,
	* tests/handlers.py,
	* tests/oslib.py,
	* tests/run,
	* tests/sandbox.py,
	* tests/ui.py: Modified.

	* data/icons-svg/driver-manager-16x16.svg: Renamed to data/icons-svg
	  /jockey-16x16.svg and modified.
	* data/icons-svg/driver-manager-22x22.svg: Renamed to data/icons-svg
	  /jockey-22x22.svg and modified.
	* data/icons-svg/driver-manager-32x32.svg: Renamed to data/icons-svg
	  /jockey-32x32.svg and modified.
	* data/icons/16x16/apps/driver-manager.png: Renamed to
	  data/icons/16x16/apps/jockey.png.
	* data/icons/22x22/apps/driver-manager.png: Renamed to
	  data/icons/22x22/apps/jockey.png.
	* data/icons/24x24/apps/driver-manager.png: Renamed to
	  data/icons/24x24/apps/jockey.png.
	* data/icons/32x32/apps/driver-manager.png: Renamed to
	  data/icons/32x32/apps/jockey.png.
	* data/icons/scalable/apps/driver-manager.svg: Renamed to
	  data/icons/scalable/apps/jockey.svg and modified.
	* driver_manager: Renamed to jockey.
	* gtk/autostart/driver-manager-gtk.desktop.in: Renamed to
	  gtk/autostart/jockey-gtk.desktop.in and modified.
	* gtk/driver-manager-gtk: Renamed to gtk/jockey-gtk and modified.
	* gtk/driver-manager-gtk.desktop.in: Renamed to gtk/jockey-
	  gtk.desktop.in and modified.

	[138] give this project a real name: jockey

2008-01-22  martin@piware.de

	* driver_manager/handlers.py,
	* tests/handlers.py: [137] move FirmwareHandler url to extra_options,
	so that we can put it into the remote driver db

	* driver_manager/detection.py,
	* driver_manager/handlers.py,
	* driver_manager/oslib.py,
	* driver_manager/ui.py,
	* driver_manager/xorg_driver.py,
	* gtk/driver-manager-gtk: [136] PEP8 style improvements

	* tests/ui.py: [135] work around HTTP test server startup race in the
	test suite

	* driver_manager/handlers.py,
	* tests/handlers.py: [134] add FirmwareHandler

2008-01-21  martin@piware.de

	* driver_manager/detection.py,
	* driver_manager/handlers.py,
	* tests/detection.py,
	* tests/handlers.py,
	* tests/sandbox.py: [133] allow passing of extra arguments to handlers

	* driver_manager/handlers.py: [132] make module rebinding a
	classmethod, so that we can use it from firmware handler, too

2008-01-20  martin@piware.de

	* driver_manager/ui.py,
	* gtk/driver-manager-gtk,
	* tests/sandbox.py,
	* tests/ui.py: [131] add AbstractUI.download_url() and tests

2008-01-17  Martin Pitt <martin.pitt@ubuntu.com>

	* gtk/autostart/driver-manager-gtk.desktop.in,
	* gtk/driver-manager-gtk.desktop.in: [130] fix categories of .desktop
	files

	* driver_manager/ui.py: [129] fix string comparison in --check, we
	wrap gettext in unicode()

	* tests/run: [128] force C locale in test suite so that installed
	translations do not break string comparisons

	* gtk/driver-manager-gtk,
	* po/de.po: [127] fix icon name

2008-01-17  Martin Pitt <martin.pitt@ubuntu.com>

	* data/icons-svg: Added.

	* data/icons/16x16/apps/driver-manager.svg: Renamed to data/icons-svg
	  /driver-manager-16x16.svg.
	* data/icons/22x22/apps/driver-manager.svg: Renamed to data/icons-svg
	  /driver-manager-22x22.svg.
	* data/icons/32x32/apps/driver-manager.svg: Renamed to data/icons-svg
	  /driver-manager-32x32.svg.

	[126] do not install non-scalable icon svg sources, keep them in icon-
	svg/

2008-01-17  Martin Pitt <martin.pitt@ubuntu.com>

	* driver_manager/ui.py,
	* gtk/driver-manager-gtk: [125] set gettext domain; drop setting the
	glade gettext domain, we keep all strings in ui.py

2008-01-17  Martin Pitt <martin.pitt@ubuntu.com>

	* gtk/autostart,
	* gtk/autostart/driver-manager-gtk.desktop.in: Added.

	* setup.cfg: Modified.

	[124] add GTK autostart .desktop file

2008-01-17  Martin Pitt <martin.pitt@ubuntu.com>

	* examples/handlers/fglrx.py: Added.

	* po/POTFILES.in,
	* po/de.po: Modified.

	[123] add fglrx example handler

2008-01-17  Martin Pitt <martin.pitt@ubuntu.com>

	* po/POTFILES.in,
	* po/de.po: [122] i18n and German translation for nvidia example
	handler

2008-01-17  Martin Pitt <martin.pitt@ubuntu.com>

	* examples/handlers/sl_modem.py: Added.

	* po/POTFILES.in,
	* po/de.po: Modified.

	[121] add sl-modem example handler

2008-01-15  Martin Pitt <martin.pitt@ubuntu.com>

	* gtk/fwhandler.glade: Removed.

	[120] remove fwhandler.glade, we want to query central db for firmware

2008-01-15  Martin Pitt <martin.pitt@ubuntu.com>

	* examples/modalias-override-generators,
	* examples/modalias-override-generators/fglrx_supported,
	* examples/modalias-override-generators/nvidia_supported: Added.

	[119] add fglrx and nvidia modalias generators

2008-01-15  Martin Pitt <martin.pitt@ubuntu.com>

	* gtk/driver-manager-gtk.desktop.in,
	* setup.cfg: Added.

	* po/POTFILES.in,
	* po/de.po: Modified.

	[118] add desktop file for GTK implementation

2008-01-15  Martin Pitt <martin.pitt@ubuntu.com>

	* po/de.po: Added.

	[117] add German translation

2008-01-14  Martin Pitt <martin.pitt@ubuntu.com>

	* tests/handlers.py: [116] add X.org driver handler test case for
	xorg.conf with pre-existing Modules section

	* driver_manager/oslib.py,
	* driver_manager/xorg_driver.py,
	* tests/handlers.py,
	* tests/sandbox.py: [115] add reboot notification API, use it in Xorg
	driver handler

2008-01-14  Martin Pitt <martin.pitt@ubuntu.com>

	* examples/handlers/pkg.py: Added.

	[114] add example DriverPackageHandler for testing

2008-01-14  Martin Pitt <martin.pitt@ubuntu.com>

	* tests/sandbox.py,
	* tests/ui.py: [113] implement ui_main_loop() in sandbox, so that the
	test suite runs again

	* driver_manager/ui.py: [112] driver_manager/ui.py, check(): fix
	regression in return code

	* gtk/driver-manager-gtk: [111] implement ui_notification() for GTK

	* driver_manager/oslib.py: [110] OSLib: add open_app() interface and
	default implementation for opening manager as root

2008-01-10  Martin Pitt <martin.pitt@ubuntu.com>

	* driver_manager/ui.py: [109] stay in main loop in --check mode, so
	that the tray icon does not disappear immediately

2008-01-09  Martin Pitt <martin.pitt@ubuntu.com>

	* AUTHORS: [108] update AUTHORS

2008-01-09  Martin Pitt <martin.pitt@ubuntu.com>

	* data/handlers: Added.

	* setup.py: Modified.

	[107] setup.py: install data/handlers

2008-01-09  Martin Pitt <martin.pitt@ubuntu.com>

	* setup.py: [106] setup.py: remove moclean stuff, python-distutils-
	extra is fixed now

	* driver_manager/ui.py: [105] TODO item

	* driver_manager/handlers.py,
	* tests/detection.py,
	* tests/handlers.py: [104] Handlers __str__(): add enabled/disabled

	* driver_manager/ui.py,
	* gtk/driver-manager-gtk: [103] add ui_idle() UI function and GTK
	implementation

2008-01-09  Martin Pitt <martin.pitt@ubuntu.com>

	* data/modalias-overrides: Added.

	* setup.py: Modified.

	[102] provide directory for shipping modalias overrides

2008-01-09  martin@piware.de

	* driver_manager/detection.py,
	* tests/detection.py: [101] implement and test module alias resetting

2008-01-08  Martin Pitt <martin.pitt@ubuntu.com>

	* driver_manager/detection.py: [100] add debugging for modalias file
	reading

	* driver_manager/detection.py: [99] add some debugging for multiple
	kmod candidates

	* driver_manager/handlers.py,
	* examples/handlers/nvidia.py,
	* tests/handlers.py: [98] introduce method for
	KernelModuleHandler.module_loaded() to avoid NoneType errors and
	poking in internal state

2008-01-08  Martin Pitt <martin.pitt@ubuntu.com>

	* attic.txt: Removed.

	[97] remove obsolete attic.txt

2008-01-07  Martin Pitt <martin.pitt@ubuntu.com>

	* driver_manager/detection.py: [96] avoid warning about failure of
	instantitation of XorgDriverHandler

2008-01-07  Martin Pitt <martin.pitt@ubuntu.com>

	* examples/handlers/nvidia.py: Added.

	[95] add (working) nvidia handlers to examples

2008-01-07  Martin Pitt <martin.pitt@ubuntu.com>

	* tests/handlers.py: [94] assert that XorgDriverConfig throws an
	exception if enabling an unchangeable handler

	* driver_manager/oslib.py,
	* driver_manager/xorg_driver.py,
	* tests/handlers.py,
	* tests/sandbox.py: [93] implement backing up/restore xorg.conf

2008-01-07  Martin Pitt <martin.pitt@ubuntu.com>

	* driver_manager/xorg_driver.py: Added.

	* driver_manager/oslib.py,
	* po/POTFILES.in,
	* tests/handlers.py,
	* tests/sandbox.py: Modified.

	[92] add XorgDriverHandler and test cases

2008-01-07  Martin Pitt <martin.pitt@ubuntu.com>

	* driver_manager/handlers.py,
	* tests/handlers.py: [91] test and fix HandlerGroup

	* driver_manager/handlers.py,
	* tests/handlers.py: [90] test and fix ModulePackageHandler

	* driver_manager/oslib.py,
	* driver_manager/ui.py,
	* tests/handlers.py,
	* tests/sandbox.py: [89] add interface for package installation, add
	tests for DriverPackageHandler

2007-12-27  Martin Pitt <martin.pitt@ubuntu.com>

	* examples/handlers/nonfree.py: Added.

	[88] add nonfree example handler for playing around and testing

2007-12-26  martin@piware.de

	* driver_manager/detection.py: [87] more elegant and correct way to
	filter out standard handlers from custom handler namespace

2007-12-23  martin@piware.de

	* driver_manager/detection.py,
	* tests/sandbox.py: [86] get along with handler import into global
	namespace, add robustness of handler instantiation

	* tests/run: [85] tests/run: exit with nonzero on test failure,
	commented out printing of log in failure case

2007-12-18  Martin Pitt <martin.pitt@ubuntu.com>

	* driver_manager/ui.py,
	* tests/run,
	* tests/sandbox.py,
	* tests/ui.py: [84] implement --check, add tests

	* tests/sandbox.py: [83] tests/sandbox.py: move handler python strings
	to the bottom, to unconfuse vim

	* driver_manager/oslib.py,
	* tests/oslib.py,
	* tests/sandbox.py: [82] add OSLib.check_cache and is_admin(), add
	test

2007-12-18  Martin Pitt <martin.pitt@ubuntu.com>

	* driver_manager/detection.py,
	* driver_manager/handlers.py,
	* driver_manager/ui.py,
	* examples/handlers/ipw3945.py,
	* gtk/driver-manager-gtk,
	* po/POTFILES.in,
	* setup.py,
	* tests/detection.py,
	* tests/handlers.py,
	* tests/oslib.py,
	* tests/run,
	* tests/sandbox.py,
	* tests/ui.py: Modified.

	* core: Renamed to driver_manager.

	[81] rename core module to driver_manager

2007-12-18  Martin Pitt <martin.pitt@ubuntu.com>

	* setup.py: [80] setup.py: fix cleaning

	* core/oslib.py,
	* core/ui.py,
	* gtk/driver-manager-gtk,
	* setup.py: [79] revert r73, do not import setup for project name; we
	do not install it

2007-12-18  Martin Pitt <martin.pitt@ubuntu.com>

	* setup.py: Modified.

	* gtk/ui.py: Renamed to gtk/driver-manager-gtk and modified.

	[78] don't install gtk impl as a module, just as a script

2007-12-18  Martin Pitt <martin.pitt@ubuntu.com>

	* setup.py: [77] setup.py: install glade files

	* core/ui.py,
	* setup.py: [76] fix "import setup"

2007-12-18  Martin Pitt <martin.pitt@ubuntu.com>

	* data,
	* data/icons/16x16/apps,
	* data/icons/22x22/apps,
	* data/icons/24x24/apps,
	* data/icons/32x32/apps,
	* data/icons/scalable/apps: Added.

	* gtk/main.glade,
	* setup.py: Modified.

	* icons: Renamed to data/icons.
	* icons/16x16/restricted-manager.png: Renamed to data/icons/16x16/apps
	  /driver-manager.png.
	* icons/16x16/restricted-manager.svg: Renamed to data/icons/16x16/apps
	  /driver-manager.svg.
	* icons/22x22/restricted-manager.png: Renamed to data/icons/22x22/apps
	  /driver-manager.png.
	* icons/22x22/restricted-manager.svg: Renamed to data/icons/22x22/apps
	  /driver-manager.svg.
	* icons/24x24/restricted-manager.png: Renamed to data/icons/24x24/apps
	  /driver-manager.png.
	* icons/32x32/restricted-manager.png: Renamed to data/icons/32x32/apps
	  /driver-manager.png.
	* icons/32x32/restricted-manager.svg: Renamed to data/icons/32x32/apps
	  /driver-manager.svg.
	* icons/scalable/restricted-manager.svg: Renamed to
	  data/icons/scalable/apps/driver-manager.svg.

	[75] turn setup.py into life, reorganize icons for p-distutils-extra

2007-12-18  Martin Pitt <martin.pitt@ubuntu.com>

	* po/POTFILES.in: Added.

	[74] add POTFILES.in

2007-12-18  Martin Pitt <martin.pitt@ubuntu.com>

	* setup.py: Added.

	* core/oslib.py,
	* core/ui.py: Modified.

	[73] centrally configure project name in setup.py

2007-12-18  Martin Pitt <martin.pitt@ubuntu.com>

	* core/ui.py: [72] core/ui.py: fix help for -H

2007-12-17  Martin Pitt <martin.pitt@ubuntu.com>

	* core/ui.py,
	* tests/ui.py: [71] set appropriate UI strings according to mode and
	handler availability

	* core/ui.py: [70] small optparse cleanup

	* core/ui.py,
	* tests/ui.py: [69] add UI mode option

	* core/detection.py,
	* tests/detection.py: [68] add license mode to get_handlers(), add
	tests

	* tests/detection.py: [67] tests/detection.py: change test case order
	to be logically bottom-up

	* tests/detection.py,
	* tests/sandbox.py: [66] tests/sandbox.py: make spam module free, for
	better future test coverage of license filtering

2007-12-17  Martin Pitt <martin.pitt@ubuntu.com>

	* examples,
	* examples/handlers,
	* examples/handlers/ipw3945.py: Added.

	[65] add ipw3945 example handler

2007-12-15  martin@piware.de

	* core/ui.py,
	* tests/sandbox.py,
	* tests/ui.py: [64] tests/ui.py: test toggle_handler()

	* tests/ui.py: [63] tests/ui.py: test get_handler_tooltip

	* tests/detection.py,
	* tests/sandbox.py,
	* tests/ui.py: [62] move common test handlers to sandbox.py

2007-12-15  martin@piware.de

	* tests/detection.py: Added.

	[61] forgot to add detection test module

2007-12-15  martin@piware.de

	* tests/ui.py: Added.

	* tests/run: Modified.

	[60] split out UI tests

2007-12-15  martin@piware.de

	* tests/run,
	* tests/sandbox.py: [59] split out detection tests

2007-12-15  martin@piware.de

	* tests/handlers.py,
	* tests/oslib.py: Added.

	* tests/run: Modified.

	[58] split out oslib and handlers tests

2007-12-15  martin@piware.de

	* tests/run,
	* tests/sandbox.py: [57] split out test suite consistency tests

2007-12-15  martin@piware.de

	* tests/sandbox.py: Added.

	* tests/run: Modified.

	[56] split out test suite sandbox environment

2007-12-15  martin@piware.de

	* attic.txt,
	* core/oslib.py,
	* gtk/ui.py: [55] remove Ubuntu specific UI help

	* core/ui.py,
	* gtk/ui.py: [54] move handler tooltip formatting to abstract UI

	* gtk/main.glade: [53] drop obsolete confirmation dialog from gtk
	glade

	* core/ui.py,
	* gtk/ui.py: [52] confirmation dialog: support custom action

	* core/ui.py,
	* gtk/ui.py: [51] confirm enabling/disabling of driver in UI

	* core/ui.py,
	* gtk/ui.py: [50] implement handler toggling, and abstract UI error
	message

	* gtk/ui.py: [49] use gtk stock refresh icon for reboot state

2007-12-14  martin@piware.de

	* gtk/main.glade,
	* gtk/ui.py: [48] GTK UI: show rationale as tooltip

2007-12-13  Martin Pitt <martin.pitt@ubuntu.com>

	* core/detection.py: [47] remove already solved TODO comment

	* core/ui.py: [46] ui.py: add --debug option

	* core/detection.py: [45] detection.py: add some debug logging

	* core/detection.py,
	* core/handlers.py,
	* tests/run: [44] replace debugging print commands with proper logging
	calls

	* core/detection.py,
	* tests/run: [43] do not trip over nonexisting modalias search paths

	* core/handlers.py: [42] silence warning about unbind/bind failure

	* core/detection.py,
	* core/handlers.py,
	* core/oslib.py,
	* tests/run: [41] OSLib: sys_devices -> sys, use for KernelModHandler
	rebinding, add test

2007-12-11  Martin Pitt <martin.pitt@ubuntu.com>

	* core/oslib.py,
	* core/ui.py,
	* tests/run: [40] couple of TODOs

	* tests/run: [39] tests/run: __del__ is unreliable, use atexit for
	cleaning up workdir

	* core/handlers.py,
	* core/oslib.py,
	* tests/run: [38] add tests for standard handlers, fix a few bugs that
	got uncovered by that

	* core/detection.py,
	* core/oslib.py,
	* tests/run: [37] implement modalias overrides

	* core/detection.py: [36] remove TODO comment; DriverID is just used
	internally, no need for a fancy interface

	* core/detection.py: [35] detection.py, get_handlers(): more elegant
	check for being a handler

	* core/detection.py,
	* tests/run: [34] fix duplicate autogenerated kernel module handlers

	* core/handlers.py,
	* tests/run: [33] test that drivers are enabled by default, and fix
	that

2007-12-11  Martin Pitt <martin.pitt@ubuntu.com>

	* gtk/fwhandler.glade,
	* gtk/main.glade,
	* gtk/ui.py: Added.

	[32] initial GTK UI implementation

2007-12-11  Martin Pitt <martin.pitt@ubuntu.com>

	* core/handlers.py,
	* tests/run: [31] add handler method ui_category()

	* core/ui.py: [30] core/ui.py: add ui_init() interface, so that UI
	does not need to be initialized for command line operations

	* core/ui.py: [29] core/ui.py: first set of common strings

	* core/ui.py: [28] core/ui.py: abstract mainloop

2007-12-10  Martin Pitt <martin.pitt@ubuntu.com>

	* attic.txt: [27] attic.txt: update ignored_modules for dpkg

	* attic.txt,
	* core/detection.py,
	* core/oslib.py,
	* tests/run: [26] OSLib: add set of ignored modules, for speeding up
	detection.py's LocalKernelModuleDriverDB

	* core/detection.py,
	* tests/run: [25] detection.py: prefer specialized kernel module
	handlers over standard ones

	* tests/run: [24] tests/run: make modules.alias file in fake
	environment for LocalKernelModulesDriverDB to pick up

	* tests/run: [23] tests/run: fix handling of multiple modinfo values
	per key in fake modinfo

	* core/handlers.py,
	* tests/run: [22] show module name in KernelModuleHandler.__str__()

2007-12-10  martin@piware.de

	* core/detection.py: [21] greatly speed up LocalKernelModulesDriverDB;
	still slightly too slow, though

	* attic.txt,
	* core/detection.py,
	* core/oslib.py,
	* core/ui.py: [20] first naive implementation of
	LocalKernelModulesDriverDB (way too slow)

2007-12-09  martin@piware.de

	* core/ui.py,
	* tests/run: [19] ui.py: add --handler-dir option, add test

	* core/detection.py: [18] detection.py: add caching to
	_connected_modaliases()

	* core/ui.py: [17] core/ui.py: define oslib singleton if used as
	__main__

	* core/ui.py: [16] move gettext() wrapper into AbstractUI and provide
	interface for keyboard accelerator conversion

2007-12-07  Martin Pitt <martin.pitt@ubuntu.com>

	* core/ui.py,
	* tests/run: [15] skeleton UI and tests

2007-12-06  Martin Pitt <martin.pitt@ubuntu.com>

	* core/detection.py,
	* core/oslib.py,
	* tests/run: [14] put a default handler dir to OSLib, use it in
	get_handlers()

	* attic.txt,
	* core/ui.py: [13] throw UI's {install,remove}_package() into the
	attic

	* tests/run: [12] simplify driver db get_handlers() test

	* core/detection.py,
	* tests/run: [11] implement driver db query in get_handlers(), add
	tests

	* core/handlers.py: [10] beautify Handler.__str__()

2007-12-05  Martin Pitt <martin.pitt@ubuntu.com>

	* core/detection.py,
	* core/handlers.py,
	* tests/run: [9] implement HardwareID modalias pattern matching, add
	tests

	* tests/run: [8] tests/run: fix expected output for recent HardwareID
	__repr__() change

	* core/detection.py: [7] Use **kwargs for DriverID

	* core/oslib.py: [6] add OS vendor/version to OSLib

	* core/detection.py: [5] core/detection.py: make DriverID suitable as
	a dictionary key

	* core/handlers.py,
	* core/oslib.py,
	* tests/run: [4] tri-state available() (returning None means "use
	driver db for detection")

2007-12-04  Martin Pitt <martin.pitt@ubuntu.com>

	* core/oslib.py,
	* tests/run: [3] implement module blacklisting in OSLib, add test
	cases

	* tests/run: [2] add test case for _connected_modalias()

2007-12-03  Martin Pitt <martin.pitt@ubuntu.com>

	* AUTHORS,
	* COPYING,
	* attic.txt,
	* core,
	* core/__init__.py,
	* core/detection.py,
	* core/handlers.py,
	* core/oslib.py,
	* core/ui.py,
	* gtk,
	* icons,
	* icons/16x16,
	* icons/16x16/restricted-manager.png,
	* icons/16x16/restricted-manager.svg,
	* icons/22x22,
	* icons/22x22/restricted-manager.png,
	* icons/22x22/restricted-manager.svg,
	* icons/24x24,
	* icons/24x24/restricted-manager.png,
	* icons/32x32,
	* icons/32x32/restricted-manager.png,
	* icons/32x32/restricted-manager.svg,
	* icons/scalable,
	* icons/scalable/restricted-manager.svg,
	* kde,
	* po,
	* tests,
	* tests/run: Added.

	[1] Initial commit:  - skeletons for basic handler types  - initial
	handler detection  - initial test suite  - icons