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
|
update-manager (1:0.96.4) jaunty; urgency=low
* DistUpgrade/DistUpgradeController.py:
- do not generate apport report against update-manager if
cache.commit() failed. the report is generated against
the failing package instead (LP: #311220)
* DistUpgrade/DistUpgrade.cfg:
- remove powermanagement-interface on upgrades for ubuntu
and kubuntu (no longer needed by them)
--
update-manager (1:0.96.3) jaunty; urgency=low
* DistUpgrade/DistUpgradeController.py:
- when syncing inconsitent components, only sync those
we know about (LP: #312092)
* tests/test_sources_list.py:
- add regression test for #312092
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 15 Jan 2009 14:14:01 +0100
update-manager (1:0.96.2) jaunty; urgency=low
* AutoUpgradeTester/UpgradeTestBackendQemu.py:
- add "NonInteractive","NoVirtio" switch
- enable virtio in the kvm backend by default
* AutoUpgradeTester/profile/server/DistUpgrade.cfg:
- updated for intrepid->jaunty
- add missing kernel removal section
* DistUpgrade/DistUpgrade.cfg:
- update KernelRemoval section for intrepid->jaunty
* DistUpgrade/DistUpgradeApport.py, README:
- add new RELEASE_UPRADER_NO_APPORT environement that can
be used to force the upgrader to not run apport on pkg failures
* DistUpgrade/DistUpgradeViewNonInteractive.py:
- use RELEASE_UPRADER_NO_APPORT in the non-interactive upgrade tests
* AutoUpgradeTester/profile/ubuntu/DistUpgrade.cfg:
- updated for intrepid->jaunty
* DistUpgrade/DistUpgrade.cfg:
- enable DistUpgrade/xorg_fix_proprietary.py to transition users
from proprietary drivers to free drivers if the proprietary
driver is no longer available after the upgrade
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 13 Jan 2009 20:56:36 +0100
update-manager (1:0.96.1) jaunty; urgency=low
* DistUpgrade/DistUpgradeController.py:
- deal better with upgrades from EOL releases by
testing if the new release is on the country mirror
or archive.ubuntu.com or still on old-releases.ubuntu.com
(LP: #264181)
* debian/control:
- disable the auto-upgrader-tester package, its not quite
ready yet
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 13 Jan 2009 14:52:18 +0100
update-manager (1:0.96) jaunty; urgency=low
* UpdateManager/Core/MetaRelease.py:
- deal with full disks better when downloading
the meta-release information (LP: #98666)
* DistUpgrade/DistUpgradeView.py:
- make the FuzzyTimeToStr() function not display
minutes when the total time is > 3h (LP: #144455)
* build update-manager-text package with text/newt based
update-manager frontend (update-manager-text)
* DistUpgrade/DistUpgradeQuirks.py:
- check if both grub and lilo are installed and remove
the one that is not used (LP: #314004)
* po/POTFILES.in, po/POTFILES.skip:
- updated
* po/update-manager.pot:
- refreshed
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 12 Jan 2009 14:12:27 +0100
update-manager (1:0.95.2) jaunty; urgency=low
* DistUpgrade/DistUpgradeQuirks.py:
- check the support of fglrx against the current
PCI card (LP: #284408)
* DistUpgrade/xorg_fix_intrepid.py:
- do not rewrite multiseat configs (LP: #292774)
* UpdateManager/Common/MyCache.py,
UpdateManager/Common/UpdateList.py:
- move the cache,updatelist implementation out into
its own file
* fix free space check on regular update-manager
invocations (LP: #105113)
* debian/rules
- remove the arch-build target
* DistUpgrade/DistUpgradeController.py:
- improvements to the sources.list rewriting, better tests
- when rewriting sources.list check for inconsistencies between what
components are enabled in intrepid vs intrepid-updates and
intrepid-security and automatically enable missing ones for
intrepid-updates and intrepid-security
- new test if the upgrade is run from a remote
login (LP: #301787)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 15 Dec 2008 10:39:27 +0100
update-manager (1:0.95.1) jaunty; urgency=low
* DistUpgrade/DistUpgrade.glade, DistUpgrade/window_main.ui:
- show 9.04 upgrade target
* debian/rules:
- calculate demotions based on intrepid->jaunty
* DistUpgrade/DistUpgradeCache.py:
- when the dist-upgrade calculation fails, show the reason
why in the error dialog (LP: #281286)
- when a meta package can not be upgraded, show a proper
error message with the package in question
* DistUpgrade/DistUpgradeQuirks.py:
- abort ugprade from hardy if evms is used in /proc/mounts
evms got removed from the archive in intrepid (LP: #292179)
- do not add "relatime" if "noatime" is already given (thanks
to Ken Geis)
* DistUpgrade/removal_blacklist.cfg:
- remove overly broad postgresql regexp
* DistUpgrade/DistUpgradeCache.py:
- do not limit the removal blacklist to downloadable packages,
this limits it too much
* check-new-release:
- install check for new releases into update-motd.d/daily
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 11 Nov 2008 11:22:41 +0100
update-manager (1:0.95) jaunty; urgency=low
* updated for jaunty
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 05 Nov 2008 09:56:51 +0100
update-manager (1:0.93.34) intrepid-proposed; urgency=low
* UpdateManager/UpdateManager.py:
- simply the changelog download logic and make changelog
fetching work properly again (now that the server side
got improved as well) LP: #40058
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 04 Nov 2008 18:53:54 +0100
update-manager (1:0.93.33) intrepid; urgency=low
[ Michael Vogt ]
* DistUpgrade/DistUpgradeQuirks.py:
- add detection for cards no longer supported via fglrx
and ensure transition to "ati" (LP: #284408)
* DistUpgrade/DistUpgradeCache.py:
- check if the package is actually downloadable in the
removal blacklist checking (LP: #293486)
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeViewKDE.py:
- handle translations of non-ascii string on Cancel button
correctly (LP: #291115)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 04 Nov 2008 14:58:10 +0100
update-manager (1:0.93.32) intrepid; urgency=low
* DistUpgrade/DistUpgradeQuirks.py:
- when transitioning from kubuntu-kde4-desktop to kubuntu-desktop
consider key dependencies as well even if kubuntu-kde4-desktop
is no longer installed (LP: #277285)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 24 Oct 2008 17:54:50 +0200
update-manager (1:0.93.31) intrepid; urgency=low
* DistUpgrade/DistUpgrade.cfg:
- remove goubuntu-desktop from metapackages, we do no
longer build it (LP: #283712)
* DistUpgrade/DistUpgradeCache.py:
- never remove packages in the "KeepInstalled" section
- keep the GUI alive when calculating the packages
to cleanup
* DistUpgrade/DistUpgradeQuirks.py:
- mark "language-pack-$lang" as manual installed to
workaround changes in "language-support-$lang"
(LP: #287551)
* po/:
- updated to the latest translations.launchpad.net
version
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 24 Oct 2008 15:02:03 +0200
update-manager (1:0.93.30) intrepid; urgency=low
* DistUpgrade/DistUpgradeViewText.py:
- ignore "default" argument handling in askYesNoQuestion
to fix incorrect prompt for cdrom question
* DistUpgrade/DistUpgradeQuirks.py:
- ensure "landscape-common" is not marked auto-install
(LP: #288051)
* DistUpgrade/ReleaseAnnouncement:
- updated for final release
* DistUpgrade/DistUpgradeAptCdrom.py:
- ignore "dist-upgrader" dirs when scanning for
packages (LP: #288169)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 23 Oct 2008 16:53:43 +0200
update-manager (1:0.93.29) intrepid; urgency=low
* fix incorrect case and typo in cpuHasSSESupport(), thanks
to Steve Langasek
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 20 Oct 2008 19:17:22 +0200
update-manager (1:0.93.28) intrepid; urgency=low
* DistUpgrade/DistUpgradeQuirks.py:
- do not install nvidia-glx-{173,177} on systems without
the "sse" cpu extension (LP: #272498)
- fix case-sensitive parsing when checking for the xorg
driver
* DistUpgrade/DistUpgrade.cfg:
- make sure that libflashsupport gets removed on upgrade
(LP: #285657)
* DistUpgrade/ReleaseAnnouncement:
- updated for the release candidate
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 20 Oct 2008 16:55:40 +0200
update-manager (1:0.93.27) intrepid; urgency=low
* DistUpgrade/xorg_fix_intrepid.py:
- only update the InputDevices if xserver-xorg-core
actually is version 2:1.5.0 or higher
- make section checks case-insensitive (thanks to
Alberto Milone)
* DistUpgrade/DistUpgrade.glade:
- remove has_focus default in the conffiel dialog
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 20 Oct 2008 09:47:57 +0200
update-manager (1:0.93.26) intrepid; urgency=low
* DistUpgrade/DistUpgradeController.py:
- workaround kde tmpfile permissions (LP: #277431)
* UpdateManager/Common/utils.py:
- do not crash if gconfd is not availabe/unusable
(LP: #281248)
* DistUpgrade/DistUpgradeViewKDE.py:
- do not use "kde" frontend during the upgrade, it
crashes because of the kde3->kde4 transition
if run at the wrong time (LP: #283942)
* DistUpgrade/DistUpgradeView.py:
- ignore SIGPIPE when forking the Dpkg::Pre-Install
scripts to fix error with etckeeper (LP: #283642)
* po/
- updated from rosetta
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 15 Oct 2008 22:03:05 +0200
update-manager (1:0.93.25) intrepid; urgency=low
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeQuirks.py:
- Fix crash from not having gettext imported
[ Michael Vogt ]
* revert the fglrx->ati transition (LP: #247376)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 15 Oct 2008 10:03:04 +0200
update-manager (1:0.93.24) intrepid; urgency=low
* DistUpgrade/DistUpgradeController.py:
- disable the apt.cron.daily script during the upgrade
(LP: #277079)
* DistUpgrade/DistUpgradeAptCdrom.py:
- work around the problem that the hardy "apt-cdrom add" will
fail when no uncompressed Packages files are on the CD
(LP: 276349)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 14 Oct 2008 16:30:41 +0200
update-manager (1:0.93.23) intrepid; urgency=low
* DistUpgrade/xorg_fix_intrepid.py:
- comment out input devices from xorg.conf (handled via
hal now). Thanks to Alberto Milone for his help,
LP: #247608
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 13 Oct 2008 20:35:06 +0200
update-manager (1:0.93.22) intrepid; urgency=low
* DistUpgrade/DistUpgradeQuirks.py:
- add rule to force kdelibs5-dev upgrade (LP: #279621),
thanks to ScottK
* DistUpgrade/DistUpgradeViewGtk.py:
- do not hang if a script fails to run (LP: #280236)
* DistUpgrade/DistUpgradeController.py:
- do not run post-upgrade quirks handler in partial upgrade
mode because they only apply to real release upgrades
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 10 Oct 2008 16:51:36 +0200
update-manager (1:0.93.21) intrepid; urgency=low
* Add useDevelopmentRelease and useProposed to DistUpgradeFetcherKDE.py
* Fix call to error() in DistUpgradeFetcherCore.py
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 08 Oct 2008 14:30:58 +0100
update-manager (1:0.93.20) intrepid; urgency=low
* DistUpgrade/DistUpgradeGettext.py:
- translated the empty "" into "" (the qt frontend
may call this on empty strings in translate_widget)
* DistUpgrade/DistUpgradeQuirks.py:
- make sure to write a final newline in /etc/fstab
when adding the relatime option (LP: #279093)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 07 Oct 2008 10:42:13 +0200
update-manager (1:0.93.19) intrepid; urgency=low
* UpdateManager/Core/MetaRelease.py:
- fix crash in CDROM upgrade (LP: #276363)
* DistUpgrade/DistUpgradeQuirks.py:
- fix crash in nvidia handling (thanks to
Spencer Janssen)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 02 Oct 2008 11:26:30 +0200
update-manager (1:0.93.18) intrepid; urgency=low
* DistUpgrade/DistUpgrade.cfg:
- add KeepInstalled rule for adept to help
the dependency resolver (thanks to MvG)
- add kubuntu-kde4-desktop metapackage so that
the meta package detection works for kde4 (LP: #274706)
* DistUpgrade/DistUpgradeCache.py:
- fix log for kept packages
- make the log of the obsolete removal less verbose
- fix kubuntu-kde4-desktop upgrades (LP: #274706)
* DistUpgrade/ReleaseAnnouncement:
- udpated for BETA
* DistUpgrade/DistUpgradeViewGtk.py:
- fix typo and unfuzzy translations. Thanks to Brian Murray
for the patch, LP: #272726)
* UpdateManager/UpdateManager.py:
- add gconf key /apps/update-manager/show_versions to show
version information (disabled by default, LP: #189406)
* DistUpgrade/DistUpgradeQuirks.py:
- add intrepidPreUpgrade() handler that detects
fglrx in xorg.conf and warns about it before the upgrade
- consolidate the various quirks into this file
- add check for the nvidia-glx-71 and nvidia-glx-96 drivers
and warn if they will be required
* DistUpgrade/xorg_fix_intrepid.py:
- add script that is run after the upgrade that ensures that
the xorg.conf file gets transitioned to a free driver if
the proprietary one does not work for intrepid
- transition from fglrx and nvidia-glx-{71,96} to the free
driver (LP: #274303)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 26 Sep 2008 14:16:56 +0200
update-manager (1:0.93.17) intrepid; urgency=low
[ Michael Vogt ]
* UpdateManager/UpdateManager.py:
- fix typo (thanks to "Richie", LP: #271139)
* DistUpgrade/DistUpgradeCache.py:
- remove the landscape-client stub package on
desktop upgrades
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeViewKDE.py fix crash when translating dialogue
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 19 Sep 2008 00:24:58 +0100
update-manager (1:0.93.16) intrepid; urgency=low
[ Michael Vogt ]
* DistUpgrade/DistUpgradeController.py:
- automatically add "relatime" to the mount options
of ext2/ext3
* UpdateManager/Core/MetaRelease.py:
- fix typo (thanks to Daniel Garcia)
* DistUpgrade/DistUpgradeCache.py:
- fix the removal of obsolete kernel packages when the
old kernel abi package gets removed from -update and/or
-security
* UpdateManager/UpdateManager.py:
- be more robust against server errors when fetching the
changelogs (LP: #262982)
* debian/control:
- update the version dependency for python-apt, we need
stuff from 0.7.5 (LP: #257781)
* DistUpgrade/DistUpgradeView.py:#
- make FuzzyTimeToStr() properly deal with plural forms
(LP: #267234)
[ Brian Murray ]
* UpdateManager/UpdateManager.py:
- preserve epoch in package version for changelogs at
launchpad.net (LP: #270527)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 16 Sep 2008 14:15:18 +0200
update-manager (1:0.93.15) intrepid; urgency=low
* UpdateManager/Core/DistUpgradeFetcherCore.py:
- fix incorrect import
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 15 Sep 2008 14:41:41 +0200
update-manager (1:0.93.14) intrepid; urgency=low
* po/*.po:
- updated to the latest launchpad translations
* DistUpgrade/DistUpgradeGettext.py:
- add more robust version of gettext() that does not
crash if incorrect number arguments is passed (LP: #269379)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 15 Sep 2008 13:07:54 +0200
update-manager (1:0.93.13) intrepid; urgency=low
* DistUpgrade/DistUpgrade.cfg:
- better KeyDependencies for ubuntu-desktop to make the
detection more robust
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 12 Sep 2008 21:56:11 +0200
update-manager (1:0.93.12) intrepid; urgency=low
* DistUpgrade: load DistUpgradeViewKDE not KDE4
* DistUpgradeViewKDE: Fix various translations
* DistUpgradeViewKDE: Add window icon
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 12 Sep 2008 13:17:52 +0100
update-manager (1:0.93.11) intrepid; urgency=low
[ Jonathan Riddell ]
* DistUpgradeViewKDE: don't use setHeaderHidden, doesn't exist in Qt 4.3
* DistUpgradeViewKDE: Disable terminal button until terminal exists
[ Michael Vogt ]
* rename DistUpgradeViewKDE4.py to DistUpgradeViewKDE.py
because adept runs this frontend explicitely (instead
of letting dist-upgrade.py decide)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 11 Sep 2008 12:42:10 +0200
update-manager (1:0.93.10) intrepid; urgency=low
[ Jonathan Riddell ]
* Add missing debian/update-manager-kde.install
[ Michael Vogt ]
* transition landscape.canonical.com to the main repository
(LP: #268551)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 10 Sep 2008 15:55:47 +0200
update-manager (1:0.93.9) intrepid; urgency=low
* do not build depend on nvidia-common for lpia
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 09 Sep 2008 13:56:20 +0200
update-manager (1:0.93.8) intrepid; urgency=low
[ Michael Vogt ]
* DistUpgrade/DistUpgradeCache.py:
- transition "kubuntu-desktop-kde4" to "kubuntu-desktop"
(thanks to Jonathan Riddell)
* DistUpgrade/DistUpgradeCache.py,
DistUpgrade/DistUpgradeController.py:
- fixes in the "AllowUnauthenticated" code (thanks to Adam
Conrad)
* debian/update-manager-hildon.install:
- install only selected bits from Comon/
[ Emmet Hikory ]
* Removed check to set automatic notifications in update-manager-hildon
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 05 Sep 2008 19:41:04 +0200
update-manager (1:0.93.7) intrepid; urgency=low
* Move Common/utils.py to update-manager-core
* Fix build when rebuilding with -nc
* UpdateManager/DistUpgradeFetcherKDE.py shouldn't import ReleaseNotesViewer
* DistUpgrade/cdromupgrade should be intrepid
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 04 Sep 2008 23:04:42 +0100
update-manager (1:0.93.6) intrepid; urgency=low
* Make DistUpgradeFetcherKDE.py work as a module not just a standalone script
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 28 Aug 2008 13:32:25 +0100
update-manager (1:0.93.5) intrepid; urgency=low
[ Michael Vogt ]
* DistUpgrade/DistUpgradeCache.py:
- install new recommends on the hardy->intrepid upgrade
(unless overwriten with the RELEASE_UPGRADE_NO_RECOMMENDS
environment)
* AutoUpgradeTester/UpgradeTestBackendQemu.py:
- run ssh in the auto tester with "-t"
* UpdateManager/UpdateManager.py:
- fix plural forms (thanks to Bruce Cowan, LP: #189921)
* DistUpgrade/DistUpgradeViewGtk.py:
- show kB/sec (LP: #257778)
[ Jonathan Riddell ]
* Add KDE upgrade checking tools for use by Adept
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 27 Aug 2008 15:19:01 +0100
update-manager (1:0.93.4) intrepid; urgency=low
* DistUpgrade/removal_blacklist.cfg:
- add openssh-blacklist-extra and openssh-extra
* UpdateManager/UpdateManager.py:
- do not crash if lsb_release can not be run (LP: #255319)
* DistUpgrade/DistUpgradeApport.py:
- do not generate apport reports against a package if
the error indicates that its a full disk, this is a bug
in update-manager than (failed to do the full disk checking)
* DistUpgrade/DistUpgrade.cfg:
- force obsoletion of cups-pdf on ubuntu-desktop, kubuntu-desktop
and xubuntu-desktop
* DistUpgrade/DistUpgradeController.py:
- increase KERNEL_INITRD_SIZE a bit
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 15 Aug 2008 19:40:46 +0200
update-manager (1:0.93.3) intrepid; urgency=low
* fix ftbfs on powerpc
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 05 Aug 2008 21:20:59 +0200
update-manager (1:0.93.2) intrepid; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- work around problem with packages with no priority
(LP: #253255)
* DistUpgrade/DistUpgradeViewGtk.py:
- detect ctrl-c presses in the terminal and warn the
user that it will kill the upgrade (LP: #90866)
* DistUpgrade/DistUpgrade.cfg:
- when being run by the sandbox-upgrader, do not
reboot automatically after the upgrade finished
* DistUpgrade/DistUpgradeController.py:
- when a upgrade is cancelt due to network errors,
inform that the downloaded files will be kept
(LP: #242111)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 05 Aug 2008 20:37:52 +0200
update-manager (1:0.93.1) intrepid; urgency=low
* UpdateManager/UpdateManager.py:
- make the init_proxy stuff look for the apt.conf proxy
as well (thanks to vega--)
* do-release-upgrade:
- unify proxy configuration between gtk and cli UI
* fix FBTFS by removing the kdepyuic calls during build
(no longer needed in qt4)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 30 Jul 2008 11:29:00 +0200
update-manager (1:0.93) intrepid; urgency=low
[ Michael Vogt ]
* UpdateManager/UpdateManager.py:
- fix typo (LP: #252195)
* DistUpgrade/DistUpgradeController.py:
- fix crash in cleanup code
[ Jonathan Riddell ]
* port the kde frontend to qt4
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 30 Jul 2008 09:01:45 +0200
update-manager (1:0.92) intrepid; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- use nvidia-common to detect what driver package is needed
and install it if the user had a previous nvidia driver
(thanks to Alberto Milone)
* improvements to the NonInteractive frontend
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 25 Jul 2008 09:26:47 +0200
update-manager (1:0.91.10) intrepid; urgency=low
* UpdateManager/Core/DistUpgradeFetcherCore.py:
- improved error handling for people who run
/tmp with noexec (LP: #219518)
* DistUpgrade/ReleaseAnnouncement:
- fixes in the announcement text (thanks to
Brian Murray, LP: #250693)
* DistUpgrade/removal_blacklist.cfg:
- remove nvidia-glx from the removal blacklist,
the naming schema changed in intrepid and the
old packages need to go way (LP: #249329)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 22 Jul 2008 12:04:34 +0200
update-manager (1:0.91.9) intrepid; urgency=low
* UpdateManager/Core/MetaRelease.py:
- make the default meta-release location easily
changable via /etc/update-manager/meta-release
* data/meta-release:
- make the default configuration easier configurable
* data/release-upgrades:
- default to "normal" upgrades for intrepid
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 16 Jul 2008 13:30:28 +0100
update-manager (1:0.91.8) intrepid; urgency=low
* data/glade/UpdateManager.glade:
- make the shortcut key in the auto-updates dialog
consistent with the main one (LP: 246321)
* DistUpgrade/ReleaseAnnouncement:
- updated for intrepid (LP: #246538)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 10 Jul 2008 14:40:14 +0300
update-manager (1:0.91.7) intrepid; urgency=low
* DistUpgrade/DistUpgradeController.py:
- add logging for kept packages
- make the "use-network" question on cdrom upgrades
more clear (LP: #229508)
- do not just exit on upgrades with errors but show
a proper finished message
* DistUpgrade/DistUpgradeApport.py:
- only run apport-{gtk,qt} if DISPLAY is set
* DistUpgrade/DistUpgradeView{Gtk,KDE}.py:
- do not show a error dialog for folloup errors from
earlier errors (thanks to Alexander Sack for the report)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 02 Jul 2008 13:10:56 +0200
update-manager (1:0.91.6) intrepid; urgency=low
* Make "--mode={server,desktop}" obsolete by adding automatic
detection for this. This eliminates the bugreports where
people run the text do-release-upgrade client that defaults
to server mode
* UpdateManager/UpdateManager.py:
- improve the changelog version number scanner
- if no information is available yet, display a launchpad link
for interested people (not fetching from there automatically to
not hammer LP too much)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 26 Jun 2008 17:33:30 +0200
update-manager (1:0.91.5) intrepid; urgency=low
* DistUpgrade/DistUpgradeController.py:
- support "old-releases.ubuntu.com" as a valid mirror and
auto transition from that to the regular archive
(LP: #235527)
- add extra paraonoia when adding a missing admin group
(thanks to LaMont Jones) LP: #241723
* UpdateManager/ChangelogViewer.py:
- support "exo-open" (xfce) too (LP: #240473)
* DistUpgrade/mirrors.cfg:
- remove ftp.caliu.info (LP: #231966)
* DistUpgrade/DistUpgradeController.py:
- fix typo and unfuzzy translations (LP: #220505)
* UpdateManager/UpdateManager.py, data/update-manager.schemas.in:
- provide a gconf key /apps/update-manager/autoclose_install_window
to make it possible to prevent automatic closing of the installation
window (LP: #183209)
* DistUpgrade/DistUpgrade.cfg.dapper:
- remove ports.ubuntu.com from powerpc, it is not available on
ports.ubuntu.com but on archive.ubuntu.com (LP: #241729)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 20 Jun 2008 20:02:50 +0200
update-manager (1:0.91.4) intrepid; urgency=low
* update-manager:
- string fixes (LP: #230865)
* UpdateManager/UpdateManager.py:
- support selecting/dselecting entire update
categories by double clicking on the list header
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 16 Jun 2008 12:22:35 +0200
update-manager (1:0.91.3) intrepid; urgency=low
* DistUpgrade/mirrors.cfg:
- remove ftp.caliu.info (LP: #231966)
* UpdateManager/UpdateManager.py, data/update-manager.schemas.in:
- provide a gconf key /apps/update-manager/autoclose_install_window
to make it possible to prevent automatic closing of the installation
window (LP: #183209)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 03 Jun 2008 12:25:11 +0200
update-manager (1:0.91.2) intrepid; urgency=low
[ Brian Murray ]
* String fix for "a unresolvable problem" (LP: #196269)
* String fix for "A upgrade to" (LP: #196229)
* String fix for "is in a inconsistent state" (LP: #197015)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 30 May 2008 17:19:29 +0200
update-manager (1:0.91.1) intrepid; urgency=low
* debian/control:
- add missing python-vte dependency to update-manager-hildon
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 30 May 2008 11:47:18 +0200
update-manager (1:0.91) intrepid; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- fix bug in withNetwork value propergation (LP: #227197)
* DistUpgrade/DistUpgradeController.py:
- fix bug with sources.list rewriting when mixed
deb http://unknown-miror\ndeb-src http://known-mirror
entries are used (#221730)
* UpdateManager/Common/utils.py:
- fix inhibit path (LP: #140754), thanks to
Andreas Dalsgaard
* DistUpgrade/DistUpgradeViewText.py:
- use sensible-pager first and fallback to "more" if
that is not available (thanks to Mithrandir)
* DistUpgradeView{Gtk,KDE,Text}.py:
- only overwrite the DEBIAN_FRONTEND if it is not set
already (thanks to Guy Sheffer)
* UpdateManagerHildon/UpdateManagerHildon.py:
- add hildon support (thanks to Tollef Fog Heen and
Emmet Hikory)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 21 May 2008 18:01:07 +0200
update-manager (1:0.90.0) intrepid; urgency=low
* merged branches:
- ~alefteris/update-manager/alefteris (thanks!)
* UpdateManager/Core/DistUpgradeFetcherCore.py:
- do not crash if the tarfile can not be read (LP: #203504)
* fix a bunch of spelling mistakes (LP: #213040), thanks
to Peter Cordes
* AutoUpgradeTester/automatic-upgrade-testing:
- add "--additional-pkgs" argument that can be used to install
the given packages (seperated with ",") into the VM before
the upgrade is performed
* DistUpgrade/DistUpgradeConfigParser.py:
- write error to log in getListFromFile() if file is not
found
* DistUpgrade/DistUpgradeCache.py:
- fix plural form text (LP: #226695)
* update-manager-core.install, update-manager.install:
- move the DistUpgrade part into update-manager-core
* DistUpgrade/DistUpgradeController.py, update-manager, dist-upgrade.py:
- move partialUpgrade() functionality into the controller and
expose it with --partial in dist-upgrade.py
* DistUpgrade/DistUpgrade.cfg:
- prepare for hardy->intrepid upgrades
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 06 May 2008 10:02:16 +0200
update-manager (1:0.87.27) hardy-proposed; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- make networkless upgrades more robust (LP: #227197)
* po/ko.po:
- fix translation for y/n prompt so that korean users
can actually continue (LP: #223419)
* DistUpgrade/DistUpgradeViewGtk.py:
- work around hang in svg loader (LP: #186465)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 09 May 2008 13:47:12 +0200
update-manager (1:0.87.26) hardy-proposed; urgency=low
* DistUpgrade/DistUpgradeController.py:
- run in server mode on a server CD (LP: #222895)
- deal with the landscape.canonical.com repository
(LP: #224308)
* DistUpgrade/DistUpradeCache.py:
- make the code more robust against unavailable
package records (LP: #223619)
* DistUpgrade/cdromupgrade:
- allow passing of arguments (like --mode=server)
to better support server upgrades with the dvd
(LP: #222895)
* po/uk.po:
- fix translation so that it gets the expected
number of arguments (LP: #224294)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 30 Apr 2008 22:15:44 +0200
update-manager (1:0.87.25) hardy-proposed; urgency=low
* DistUpgrade/DistUpgradeApport.py:
- fix typo in log dir (LP: #223743)
* DistUpgrade/DistUpgradeController.py:
- if the "Crux" theme is used on dapper during the upgrade,
switch to "Human" because Crux is known to crash
(LP: #69124)
* DistUpgrade/DistUpgradeCache.py:
- do not crash if a meta package is not available in
the cache (e.g. xubuntu-desktop that moved from main
to universe)
* DistUpgrade/DistUpgrade.cfg.dapper:
- fix incorrect xubuntu-desktop detection
* DistUpgrade/DistUpgradeView.py:
- make sure that self.confirmChangesMessage is always
initialized (LP: #221023)
* DistUpgrade/mirrors.cfg:
- added missing russion mirror (LP: #221730)
- fixed incorrect mirror lines
* DistUpgrade/DistUpgrade.cfg:
- better detection to missing dependencies to fix
ubuntustudio-desktop upgrade problem (LP: #219659)
* util/demotions.py:
- do not consider powerpc anymore, its not available on
archive.ubuntu.com anymore
* debian/rules:
- do not run tests in arch-build target (only useful
when there is a development release available to upgrade to)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 29 Apr 2008 12:49:16 +0200
update-manager (1:0.87.24) hardy; urgency=low
* DistUpgrade/ReleaseAnnouncement:
- modified https url to http so it is clickable (LP: #220386)
* po/en_GB.po:
- unfuzzy typo correction
-- Brian Murray <brian@ubuntu.com> Mon, 21 Apr 2008 14:58:17 -0700
update-manager (1:0.87.23) hardy; urgency=low
* DistUpgrade/DistUpgrade.cfg.dapper:
- Add 'bash' to BaseMetaPkgs. This is needed because ubuntu-meta
was uploaded into dapper-updates and that means that we the
detection of a missing main archive in sources.list will not
work correctly (LP: #220078)
* DistUpgrade/ReleaseAnnouncement:
- updated in preparation for the final release
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 21 Apr 2008 18:07:31 +0200
update-manager (1:0.87.22) hardy; urgency=low
* UpdateManager/UpdateManager.py:
- only set http proxy if hostname/port is valid (LP: #219227)
* DistUpgrade/DistUpgradeController.py:
- some more debug logging
- fix missing cache open
- smaller default network time out
- run the initial cache.update() on the unmodified sources.list
with only a single retry because it may contain sources that
do not respond
-- Michael Vogt <michael.vogt@ubuntu.com> Sat, 19 Apr 2008 00:18:25 +0200
update-manager (1:0.87.21) hardy; urgency=low
* DistUpgrade/DistUpgradeController.py:
- transition sparc users to ports.ubuntu.com on upgrade
* DistUpgrade/DistUpgrade.cfg.dapper:
- point to ports.ubuntu.com when fetching
release-upgrader-{apt,dpkg} on dapper->hardy upgrades
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 17 Apr 2008 20:24:19 +0200
update-manager (1:0.87.20) hardy; urgency=low
* DistUpgrade/DistUpgradeView.py:
- fix incorrect _() call (thanks to Timo Jyrinki)
* DistUpgrade/mirrors.cfg:
- fix ports.ubuntu.com mirror URI (LP: #215346)
* run dpkg with --force-overwrite by default on the server
too to make the upgrade more robust. this can be overwriten
with the RELEASE_UPGRADE_NO_FORCE_OVERWRITE environment
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 16 Apr 2008 21:37:49 +0200
update-manager (1:0.87.19) hardy; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- only try to upgrade held-back packages in the
edgyQuirks handler if they are actually upgradable
(thanks to Lamont Jones and James Troup)
* po/fi.po
- unfuzzy string (thanks to Timo Jyrinki)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 16 Apr 2008 20:51:05 +0200
update-manager (1:0.87.18) hardy; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- remove mail-notificaton, gnome-translate from hardy
quirks list (LP: #215690)
* UpdateManager/DistUpgradeFetcher.py:
- use sensible gksu prompt when asking for release
upgrade (LP: #161888)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 14 Apr 2008 21:44:43 +0200
update-manager (1:0.87.17) hardy; urgency=low
* DistUpgrade/DistUpgradeController.py:
- when run from a CDROM upgrade on dapper, ensure to
fetch the right files on tryUpdateSelf() (#215673)
- ensure that language-support-$lang packages get
upgraded if they are installed
* UpdateManager/Core/MetaRelease.py:
- support forceLTS option (#215673)
* DistUpgrade/DistUpgradeView.py:
- work around gutsy->hardy nvidia-glx uprade problem
when libqt-perl is used (#205079)
* DistUpgrade/ReleaseAnnouncement:
- updated for RC
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 11 Apr 2008 22:34:06 +0200
update-manager (1:0.87.16) hardy; urgency=low
* DistUpgrade/DistUpgradeViewText.py:
- show prompt again after showing details
- use pager for long change entries
(thanks to James Troup)
- fix text wrap to not break lines on "-" (e.g. in package
names)
* DistUpgradeController.py:
- do not leave 20archive.save files around
- make the code that asks about starting a new ssh daemon
(if run under ssh) more robust
- set status to "Calculating changes" again after displaying
demoted packages
- improve logging if prerequisites download fails
* DistUpgrade/DistUpgradeCache.py:
- improve the evms detection/removal (thanks to Lamont Jones)
* DistUpgrade/DistUpgrade.cfg.dapper:
- add "lvm2" to the KeepInstalledPkgs (LP: #211488)
- sync RemoveObsoletes, ForcedObsoletes, KeepInstalledSections
with DistUpgrade.cfg
- text wrap questions too
* po/*.po:
- updated translations (LP: #210699)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 04 Apr 2008 18:54:13 +0200
update-manager (1:0.87.15) hardy; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- fix fd leak
* DistUpgrade/DistUpgradeController.py:
- abort when debsig-verify is installed, it makes any
upgrade fail (LP: #208957)
- run migrate-fstab-to-uuid.sh as PostInstallScript (LP: #209347)
- set RELEASE_UPGRADE_MODE={server,desktop} environment
* DistUpgrade/DistUpgradeViewKDE.py:
- fix crash/race in terminal key press handler (LP: #205445)
- fix encoding issue (LP: #208390)
- call it 8.04 LTS (LP: #204659)
* DistUpgrade/DistUpgradeViewGtk.py:
- fix incorrect pango attribute assignment (LP: #207742)
- call it 8.04 LTS (LP: #204659)
* UpdateManager/UpdateManager.py:
- do not crash if gconf database is not writable (LP: #208687)
- do not crash on BadStatusLine exceptions (LP: #204075)
* po/*.po:
- make update-po
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 01 Apr 2008 22:30:42 +0200
update-manager (1:0.87.14) hardy; urgency=low
* DistUpgrade/ReleaseAnnouncement:
- Fix typo
* DistUpgrade/DistUpgradeViewKDE.py:
- Add show/hide to upgrade package list
* DistUpgrade/window_main.ui:
- Sync strings with GTK frontend to pick up translations
- Update icon to Oxygen
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 21 Mar 2008 12:04:51 +0000
update-manager (1:0.87.13) hardy; urgency=low
* DistUpgrade/DistUpgradeController.py:
- only ask once about the sshd (LP: #156625)
* DistUpgrade/DistUpgradeCache.py:
- add hardyQuirks handler to deal with a
gnome-translate upgrade issues (thanks to Daniel Holbach)
- fix naming of the quirksHandlers
* DistUpgrade/DistUpgrade.cfg:
- add "ksplash-engine-moodin" to ForcedObsoletes
* DistUpgrade/removal_blacklist.cfg:
- add "^postgresql-.*"to the removal blacklist
* DistUpgrade/DistUpgradeViewText.py:
- flush() output in updateStatus()
- show the demoted packages in a more readable
manner
- use textwrap when displaying text
* DistUpgrade/DistUpgradeCache.py:
- fix bug that prevented proper error message on
upgrade calculation error in the text frontend
- fix text download progress
* DistUpgrade/ReleaseAnnouncement
- updated for BETA
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 20 Mar 2008 16:06:56 +0100
update-manager (1:0.87.12) hardy; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py:
- fix display of non-ascii chars
- improve editing capabilities of the terminal (should be
fine with the readline fontend now)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 11 Mar 2008 22:01:36 +0100
update-manager (1:0.87.11) hardy; urgency=low
* DistUpgrade/DistUpgradeControler.py:
- when upgrading without network and with a empty sources.list,
do not ask to add network sources
* DistUpgrade/DistUpgradeCache.py:
- do not crash if lookupRecords() failed (LP: #199482)
* UpdateManager/UpdateManager.py:
- use absolute path when calling gksu (LP: #194166),
Thanks to Mihai Varzaru and James Westby
* data/update-manager.desktop.in:
- improve consistency with the rest of gnome (LP: #150205)
* DistUpgrade/DistUpgradeViewKDE.py:
- do no longer use konsole during upgrades but use a dumb
terminal instead that only supports basic editing
- log terminal activity to /var/log/dist-upgrade/term.log
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 11 Mar 2008 09:40:49 +0100
update-manager (1:0.87.10) hardy; urgency=low
* remove code duplication in the confirmChanges() code and make the
warning more readable (LP: #188724)
* DistUpgrade/DistUpgradeController.py:
- when adding prerequists, ensure that no duplicated lines are
added, plus add test for this (thanks to Kolbjørn Barmen)
- honor APT::Get::AllowUnauthenticated (thanks to Kolbjørn
Barmen)
* DistUpgrade/cdromupgrade:
- updated to hardy
- fix bug in path handling (LP: #155833)
* DistUpgrade/prerequists-sources.list:
- remove cruft
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 29 Feb 2008 23:23:38 +0100
update-manager (1:0.87.9) hardy; urgency=low
* rebuild due to python-central issues
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 19 Feb 2008 18:11:08 +0100
update-manager (1:0.87.8) hardy; urgency=low
* deal with packages in broken reqreinst state by
offering to remove them (LP: #1922578)
* UpdateManager/UpdateManager.py:
- display a meaningful message when no information
of the last update can be found (LP: 192328)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 18 Feb 2008 17:08:47 +0100
update-manager (1:0.87.7) hardy; urgency=low
[ Michael Vogt ]
* UpdateManager/Core/MetaRelease.py:
- honor DEBUG_UPDATE_MANAGER environment and give some
debug output on the meta-release fetching/parsing
* UpdateManager/DistUpgradeFetcher.py:
- cancel if the ReleaseNotes window is closed via the
window close control (thanks to Matthew Paul Thomas)
* DistUpgrade/DistUpgradeViewGtk.py:
- show update details in smaller font instead of italic
* more UI improvements as suggested by Matthew Paul Thomas
* DistUpgrade/DistUpgradeControler.py:
- enforce KeepInstalledSection rule only when running on
a network, otherwise we run into CD upgrade issues
- when fetching the prerequists, be more robust in the
mirror selection (and add tests for this)
* DistUpgrade/DistUpgrade.cfg:
- add slocate to the force obsoletes, mlocate replaces it
[ Brian Murray ]
* Dialog enhancements and typo fixes (LP: 182055)
-- Michael Vogt <michael.vogt@ubuntu.com> Sat, 16 Feb 2008 00:25:33 +0100
update-manager (1:0.87.6) hardy; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- fix removal of obsolete packages (regression from 0.87.5)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 08 Feb 2008 15:57:13 +0100
update-manager (1:0.87.5) hardy; urgency=low
* UpdateManager/UpdateManager.py:
- use /var/lib/apt/periodic/update-success-stamp for the
calculation when the last update was performed (LP: #185894)
* DistUpgrade/DistUpgradeController.py:
- if the upgrade can not be calculated in partial upgrade mode,
do not recommend reporting a bug (most likely transient anyway)
* DistUpgradeView/DistUpgradeViewText.py:
- make the restart required question more clear (LP: #155554)
* UpdateManager/Core/DistUpgradeFetcherCore.py:
- tidy up output when show authentication message
* data/update-manager.8:
- man page fixes (LP: #185615)
* update-manager:
- run gtk.init_check() to catch errors when DISPLAY is not
set (pygtk does not do that automatically)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 06 Feb 2008 18:11:45 +0100
update-manager (1:0.87.4) hardy; urgency=low
* UpdateManager/UpdateManager.py:
- run the partial upgrader with error correction
if the dependencies on the system are not ok
(it will fix most problems)
* DistUpgrade/DistUpgradeController.py, DistUpgradeCache.py:
- if dpkg was interrupted, run "dpkg --configure -a"
automatically
- if the prerequists can not be authenticated,
* DistUpgradeView/DistUpgradeView.py:
- when calculating the download time in estimatedDownloadTime,
use the average download speed so far (if available)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 25 Jan 2008 15:59:53 +0000
update-manager (1:0.87.3) hardy; urgency=low
* add ports.ubuntu.com to the valid mirrors (LP: #184663)
* add --proposed to the options for do-release-upgrade
(LP: #109290)
* fix crash in apport report duplicate checking
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 22 Jan 2008 15:50:28 +0000
update-manager (1:0.87.2) hardy; urgency=low
* DistUpgrade/DistUpgradeApport.py:
- better detection for followup errors when a package failed
earlier
* DistUpgrade/DistUpgradeController.py:
- Be more tolerant against errors in the initial apt-get update
operation. We disable third party sources on the later
sources.list rewrite anyway
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 16 Jan 2008 15:06:00 +0100
update-manager (1:0.87.1) hardy; urgency=low
* UpdateManager/UpdateManager.py:
- fix crash if /var/lib/apt/periodic/update-stamp does not exists
(LP: #181390)
- fix misleading string when cache is rebuild (LP: #179354)
* DistUpgrade/DistUpgradeCache.py:
- be more careful with the obsoletes checking and get not
confused if the hardy version is older than the gutsy one
(LP: #181201)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 09 Jan 2008 09:53:33 +0100
update-manager (1:0.87) hardy; urgency=low
* typo fixes (thanks to Brian Murray, LP: #99513, LP: #158175)
* fix incorrect textual description (thanks to Brian Murray,
LP: #145130)
* support release-upgrades from dapper for architectures on
ports.ubuntu.com
* UpdateManager/UpdateManager.py:
- remove the "from $version to $version" from the main
list as this is duplicated information from the details tab
- wording fixes (thanks to Matthew Paul Thomas)
- if the update was successful, automatically close the install
window
- when no updates are available, display the information when the
last apt-get update like operation was performed
- if there are broken dependencies on the system, try to fix
them on startup
* data/UpdateManager.glade:
- do not display what software updates are in startup progress
dialog, this is already displayed in the main UI
(thanks to Matthew Paul Thomas)
- align the ""Download size:" text so that it matches the text
inside the buttons
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 17 Dec 2007 14:56:12 +0100
update-manager (1:0.86) hardy; urgency=low
* DistUpgrade/DistUpgradeController.py:
- merged fixes from Brian Murray (thanks!);
LP: #162978, LP: #64473
- fix getting prerequists for ports.ubuntu.com
(thanks to lamont)
* DistUpgrade/DistUpgradeCache.py:
- keep the lists dir locked all the time to avoid a
possible race
* DistUpgrade/DistUpgrade.cfg:
- added gobuntu-desktop to the list of supported
meta-packages
* data/update-manager.desktop.in:
- remove deprecated entries (thanks to Kmos)
* UpdateManager/Core/MetaRelease.py:
- add support to prompt only for specifc release upgrades
(e.g. lts->lts)
* data/release-upgrades:
- set the default prompting for hardy to "Prompt only for
a new lts version"
* DistUpgrade/DistUpgrade.cfg.dapper,
DistUpgrade/prerequists-sources.list.dapper:
- add support for dapper->hardy upgrades
* DistUpgrade/DistUpgradeConfigParser.py:
- add overwrite support for the configuration to support
upgrades to multiple target releases with the same
upgrader
* data/update-manager.schemas.in:
- /apps/update-manager/check_dist_upgrades is deprecated
* utils/demotions.py:
- make it more flexible to support generating both
dapper and gutsy demotions
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 04 Dec 2007 15:56:22 +0100
update-manager (1:0.85.4) hardy; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- do not use python2.5 try:/expect:/finally: - we need to run
on 2.4 as well for dapper->hardy (LP: #164947)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 26 Nov 2007 10:47:57 +0100
update-manager (1:0.85.3) hardy; urgency=low
* DistUpgrade/DistUpgrade.cfg,
DistUpgrade/DistUpgrade.glade,
DistUpgrade/ReleaseAnnouncement,
DistUpgrade/window_main.ui:
- updated for hardy
* DistUpgrade/DistUpgradeControler.py,:
DistUpgrade/DistUpgradeCache.py:
- better description whats happening when calculating the
release-upgrade
- keep the GUI responsive while calculating the upgrade
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 23 Nov 2007 18:24:12 +0100
update-manager (1:0.85.2) hardy; urgency=low
* debian/control:
- added missing "XS-Vcs-Bzr" header (thanks to Brian
* debian/rules:
- dh_iconcache is obsolete, use dh_icons instead
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 09 Nov 2007 12:34:18 -0500
update-manager (1:0.85.1) hardy; urgency=low
* fix FTBFS
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 06 Nov 2007 08:24:57 -0500
update-manager (1:0.85) hardy; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- fix crash when packages get downgraded (LP: #154257)
* DistUpgrade/DistUpgradeController.py:
- fix typo in classname (thanks to Matt T. Proud)
* DistUpgrade/DistUpgrade.cfg:
- update for hardy
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 05 Nov 2007 21:12:13 -0500
update-manager (1:0.81) gutsy; urgency=low
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeViewKDE.py:
- Add word wrap to quesiton dialogue
[ Michael Vogt ]
* DistUpgrade/DistUpgradeControler.py:
- make the commercial archive transition more robust
- when forcing the evms removal, ensure that all
evms rdepends get obsoleted so that the safety checks
in the upgrader do not kick in and prevent the removal
- when calculating the size required in /boot take into account
that installed initramfs images create a .bak file
* updated list of demoted packages
* updated ReleaseAnnouncement to include final text
* updated demotions and mirrors to current gutsy
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 12 Oct 2007 19:08:34 +0200
update-manager (1:0.80) gutsy; urgency=low
* DistUpgrade/DistUpgradeControler.py:
- enable transition to gutsy partner repository on
upgrade now that we have a archive
- workaround kde tempdir handling (LP: #149186)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 05 Oct 2007 20:11:32 +0200
update-manager (1:0.79) gutsy; urgency=low
* DistUpgrade/DistUpgradeControler.py:
- do not log apts debug output to the user in server
upgrade mode
- when running in partial upgrade mode, do not run apport,
this is handled by the libapt apport integration now,
(LP:#139394)
* DistUpgrade/DistUpgradeCache.py,DistUpgradeControler.py:
- detect and workaround upgrade issues with envy
* update-manager:
- show version with --version (LP: #137353)
* DistUpgrade/DistUpgradeViewKDE.py:
- fix crash with invalid utf-8 in polish locale (LP: #145351)
* UpdateManager/UpdateManager.py:
- remove debug output (LP: #145494)
* DistUpgrade/DistUpgradeControler.py:
- fix lock detection (LP: #145463)
* UpdateManager/Common/utils.py:
- show "0 KB" download size if there is nothing to download
(LP: #145308)
* DistUpgrade/demoted.cfg, utils/demotions.py:
- do not display demotions if they are replaced by something that is
in main (e.g. gaim->pidgin, LP: #145767)
* DistUpgrade/ReleaseAnnouncement:
- update for the beta release
* DistUpgrade/DistUpgradeControler.py:
- fix typo in pre-requists (thanks to Stuart Bishop)
* debian/control:
- tighten update-manager depend on update-manager-core
* UpdateManager/Core/DistUpgradeFetcherCore.py:
- move country_mirror code into Core (LP: #145116)
* UpdateManager/Core/MetaReleaseCore.py,
tests/interactive_fetch-release_upgrader.py:
- fix test failure
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 01 Oct 2007 15:32:12 +0200
update-manager (1:0.78) gutsy; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py:
- Fix button in conffile dialogue
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 25 Sep 2007 23:09:35 +0100
update-manager (1:0.77) gutsy; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py:
- fix crash in conffile dialogue setup
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 25 Sep 2007 14:22:55 +0100
update-manager (1:0.76) gutsy; urgency=low
[ Michael Vogt ]
* DistUpgrade/DistUpgradeCache.py:
- ensure that the util-linux -> nfs-common transition
happens (LP: #141559)
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeViewKDE.py:
- copy Xauthority file if necessary
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 24 Sep 2007 19:49:17 +0200
update-manager (1:0.75) gutsy; urgency=low
* DistUpgrade/DistUpgradeViewGtk.py:
- work around broken vte forkpty() env add
* DistUpgrade/DistUpgradeControler.py:
- fix type of installed_demotions from apt.Package to pkgname
(LP: #144417)
* po/*.po:
- updated from latest launchpad translations
* UpdateManager/DistUpgradeFetcherCore.py:
- fix missing command line propergation when run as non-root
(LP: #144451)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 24 Sep 2007 10:52:16 +0200
update-manager (1:0.74) gutsy; urgency=low
* DistUpgrade/DistUpgradeCache.py:
- ensure that users with the "lowlatency" kernel get
transitioned correctly to a new kernel (LP: #129458)
* DistUpgrade/DistUpgradeControler.py:
- work around kde being too clever in tempdirs (LP: #139319)
* po/POTFILES.in:
- add missing files (LP: #141033)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 19 Sep 2007 23:15:39 +0100
update-manager (1:0.73) gutsy; urgency=low
* UpdateManager/UpdateManager.py:
- display new installs in the list
* UpdateManager/Common/utils.py:
- fix countrymirror to deal with non-utf8 locales (LP: #138299)
* tests/test_update_origin.py:
- added test for this country_mirror()
* DistUpgrade/DistUpgradeControler.py:
- check trust of pre-requists files before downloading them
- support pre-requists on the CD as well
- preserve the logs on self update from the net
* DistUpgrade/build-tarball.sh:
- fix auto-generation of target distro in cdromupgrade
script (LP:#138354)
* data/update-manager.8:
- new manpage (thanks to Bruno Mangin, LP: #107015)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 13 Sep 2007 15:42:34 +0200
update-manager (1:0.72) gutsy; urgency=low
* UpdateManager/Core/MetaRelease.py:
- fix target filename for meta-release files so that
correct I-M-S information is used
* DistUpgrade/DistUpgrade.cfg:
- use "release-upgrader-dpkg", "release-upgrader-apt" as
update-pre-requists to fully support dpkg triggers (LP: #134000)
- add mythubuntu-desktop to the valid metapackages
* DistUpgrade/DistUpgradeControler.py:
- fix pre-requists fetching, do not run the resolver as the udebss
are not installable on a regular system
- generate more log information to make diagnosing problems easier
- setup RELEASE_UPGRADE_IN_PROGRESS environemnt
- use custom invoke-rc.d during the upgrade so that failures to
restart a daemon are not fatal
* DistUpgrade/prerequists-sources.list:
- point to the archive for the pre-requists now
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 07 Sep 2007 23:29:40 +0200
update-manager (1:0.71) gutsy; urgency=low
[ Michel Vogt ]
* DistUpgrade/DistUpgradeViewGtk.py:
- fix crash in _terminal_log code
* DistUpgrade/DistUpgradeControler.py:
- disable archive.canonical.com for now until
a gutsy repository is created there
- fix size requirement reporting (LP: #137539)
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeViewKDE.py
- Implement show/hide button on conf file dialogue
* DistUpgrade/removal_blacklist.cfg
- Add xubuntu-desktop and gobuntu-desktop
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 05 Sep 2007 19:16:56 +0200
update-manager (1:0.70) gutsy; urgency=low
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeViewKDE.py
- Use apport for crashes
- Don't use dcop, it doesn't work with kdesudo
- Fix UI layout
[ Michael Vogt ]
* DistUpgrade/DistUpgradeControler.py:
- show human readable size when displaying "not enough free space"
error
- when rewriting sources.list, transition the commercial
package archive to the new location and "partner" name
* DistUpgrade/DistUpgradeCache.py:
- fix bogus log messages about missing "required" priority packages
* DistUpgrade/DistUpgradeViewGtk.py:
- remove debug messages
* DistUpgrade/DistUpgrade.cfg:
- remove gnome-cups-manager on upgrade, system-config-printer
replaces it (LP: #107766)
- set cursor to the start of the details list (LP: #134873)
- added ubuntustudio-desktop, ichthux-desktop to valid metapackages
(LP: #131936)
* DistUpgrade/dist-upgrade.py, DistUpgrade/DistUpgradeViewText.py,
DistUpgrade/DistUpgradeViewKDE.py, DistUpgrade/DistUpgradeViewGtk.py:
- make logdir a config option too
* UpdateManager/UpdateManager.py, UpdateManager/Common/utils.py:
- move inhibit_sleep(), allow_sleep() into common code and call
the freedesktop dbus interface instead of the deprecated gnome
interface (LP: #136617)
* tests/test_sources_list.py, tests/data-sources-list-test:
- added tests for sources.list rewriting
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 27 Aug 2007 16:39:10 +0200
update-manager (1:0.69) gutsy; urgency=low
[ Michael Vogt ]
* UpdateManager/Core/MetaRelease.py:
- remove zero size meta-release files (LP: #127263)
* utils/demoted.cfg:
- updated to current gutsy
* DistUpgrade/DistUpgrade.cfg:
- added "esound", "esound-common" to forced obsoleted
packages (replaced by pulseaudio)
[ Jonathan Riddell ]
* Change version text from 7.04 to 7.10 in KDE frontend
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 08 Aug 2007 12:41:02 +0200
update-manager (1:0.68) gutsy; urgency=low
* UpdateManager/DistUpgradeFetcherCore.py:
- be extra paranoid when using ${countrymirror}
* DistUpgrade/DistUpgradeControler.py:
- support countrymirror in prerequists.sources.list file
too
* UpdateManager/Common/utils.py:
- added country_mirror() function
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 06 Aug 2007 17:48:43 +0200
update-manager (1:0.67) gutsy; urgency=low
* UpdateManager/UpdateManager.py,
tests/test_update_origin.py:
- when checking for update category (Security, Important, ...)
not only check candidateVersion but all intermediate versions
too
- added test for the new matcher behaviour
* DistUpgrade/DistUpgradeControler.py:
- fix PreRequists fetching
- better error checking/logging
* DistUpgrade/DistUpgradeViewGtk.py,
DistUpgrade/DistUpgradeViewKDE.py,:
- improve error message when a package fails to install
(thanks to Chris Jones)
* DistUpgrade/DistUpgradeViewGtk.py:
- show "cancel" button while fetching stuff
* UpdateManager/DistUpgradeFetcher.py,
UpdateManager/DistUpgradeFetcherCore.py:
- support ${countrymirror} in meta-release information
* setup.py, setup.cfg:
- updated for new python-distutils-extra
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 25 Jul 2007 20:04:04 +0200
update-manager (1:0.66) gutsy; urgency=low
* DistUpgrade/DistUpgradeControler.py:
- support listing and fetching of upgrade PreRequists
- transition archive.canonical.com to new layout
- mark evms as obsolete if it is not in use
- transition powerpc users to ports.ubuntu.com
- implement Depends checking for the selected
View
(as speced in https://wiki.ubuntu.com/UpgradePrerequisites)
* DistUpgrade/Core/DistUpgradeFetcherCore.py:
- added ignore-time-conflict when calling gpg (thanks to
Evan)
* utils/demoted.cfg, DistUpgrade/mirrors.cfg,
DistUpgrade/ReleaseAnnouncement:
- updated for current gutsy
* DistUpgrade/DistUpgrade.cfg:
- mark desktop-effects as obsolete on ubuntu-desktop upgrades
(the appearance capplet replaces it)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 10 Jul 2007 10:57:02 +0100
update-manager (1:0.65) gutsy; urgency=low
* debian/rules:
- add test for fetching the upgrader to release to
arch-build target
* update-manager.py:
- fix breakage in "partial upgrade" mode
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 25 Jun 2007 12:19:59 +0200
update-manager (1:0.64) gutsy; urgency=low
* UpdateManager/DistUpgradeFetcher.py:
- add missing "import os"
* update-manager.py:
- fix incorrect STEP_FETCH_INSTALL import (Fixes LP:#120484)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 18 Jun 2007 11:49:28 +0200
update-manager (1:0.63) gutsy; urgency=low
* fix i18n issue (Fixes LP:#114207)
* DistUpgrade/DistUpgradeCache.py:
- if "386" (UP) kernel is installed on SMP machine, automatically
switch to SMP kernel (Fixes LP: #106387)
* DistUpgrade/DistUpgrade.cfg:
- set python2.3 to remove list to ensure smooth upgrade
(Fixes LP: #108147)
* DistUpgrade/DistUpgradeControler.py:
- show total needed space in not-enough-free-space message
(Fixes LP: #46775)
- fix in snapshot feature (Fixes LP: #108413)
- deal better with very slow downloads (disable cache cleanup)
- improve free space calculation in /boot (Fixes LP: #116163, #104337)
- implement SystemCleanup spec kernel removal
- implement SystemCleanup spec unused dependencies removal
* Separate downloading and upgrading (Fixes LP: #91978)
* Show demotions before runing the upgrade (Fixes LP: #91998)
* UpdateManager/UpdateManager.py:
- re-check for new releases too when the user clicks on
"Check" (Fixes LP: #107452)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 13 Jun 2007 18:33:23 +0200
update-manager (1:0.62) gutsy; urgency=low
* revert locking fix, it broke release upgrades
* fix upgrade string
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 25 May 2007 22:14:24 +0200
update-manager (1:0.61) gutsy; urgency=low
* add missing dh_gconf (LP#114569)
* fix mispelled entry in removal_blacklist (LP#107558)
* fix locking problem (LP#108446)
* make the wording of the free space message more clear
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 14 May 2007 10:09:54 +0200
update-manager (1:0.60) gutsy; urgency=low
* DistUpgrade/DistUpgradeControler.py:
- fix free space check when the dir checked is a symlink
(LP#106804)
- increase minAge for the apt cleanup cron job during the upgrade
to fix race for people with very slow network (LP#109548)
- deal with invalid lines in /proc/mounts when calculating
the free space (LP#108284)
* cdromupgrade:
- do not call any authentication mechanism, that is the
responsibility of the user (LP#107431)
* DistUpgrade/DistUpgradeViewKDE.py:
- fix a bug in the cdrom progress (LP#107451)
* DistUpgrade/DistUpgradeViewText.py:
- send correct package failure information to log (LP#109209)
* DistUpgrade/crashdialog.ui
- Fix bug report URL in crash dialogue (LP#108969)
* UpdateManager/Core/MetaRelease.py:
- fix in I-M-S 304 handling (LP#109216)
* DistUpgrade/DistUpgradeCache.py:
- check RemovalBlacklist early when removing a package to
work-around crash in problem resolver (LP#109014)
* DistUpgrade/DistUpgrade.cfg:
- updated for gutsy
- add "ltsp-client", "ltspfsd" to the remove list to ensure that
it does not get installed on a regular system (LP#109638)
* DistUpgrade/DistUpgradeApport.py:
- protect against errors when launching apport (LP#108131)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 24 Apr 2007 16:39:26 +0200
update-manager (1:0.59.21) feisty-proposed; urgency=low
* UpdateManager/Core/MetaRelease.py:
- send pragma: no-cache (LP#107716)
- fix bug in time representation for i-m-s (LP#107716)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 20 Apr 2007 10:43:08 +0200
update-manager (1:0.59.20) feisty; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py:
- do not crash in utf8() if the str is already unicode
(LP#106863)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 16 Apr 2007 19:07:04 +0200
update-manager (1:0.59.19) feisty; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py:
- disable apt-listchanges in the kde frontend too
- fix broken terminal interaction (LP#106367)
- ensure that there is only a single konsole widget
visible (LP#106541)
-- Michael Vogt <michael.vogt@ubuntu.com> Sat, 14 Apr 2007 23:27:48 +0200
update-manager (1:0.59.18) feisty; urgency=low
[ Michael Vogt ]
* DistUpgrade/DistUpgradeViewKDE.py:
- fix i18n initialization (LP#106221)
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeViewKDE.py:
- fix encoding in dialog_error (LP#106221)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 13 Apr 2007 16:32:33 +0200
update-manager (1:0.59.17) feisty; urgency=low
* DistUpgrade/DistUpgradeViewGtk.py:
- fix crash in on_window_main_delete_event() (LP#104701)
* DistUpgrade/apt-autoinst-fixup.py:
- set mdadm to manually installed (LP#105663)
* DistUpgrade/DistUpgradeControler.py:
- add python symlink sanity check (LP#75557)
* DistUpgrade/ReleaseAnnouncement:
- prepare for the final version
* po/
- updated to the latest translations from rosetta
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 13 Apr 2007 11:22:01 +0200
update-manager (1:0.59.16) feisty; urgency=low
* set useDevelopmentRelease=False in the self updater on
the CD (LP#99171)
* fix another issue with a unresponsive GUI
* work around upgrade issue with pango-libthai (LP#104384)
-- Michael Vogt <michael.vogt@ubuntu.com> Sun, 8 Apr 2007 12:35:00 +0200
update-manager (1:0.59.15) feisty; urgency=low
* DistUpgrade/DistUpgradeControler.py:
- keep the GUI alive while calculating the obsolete
packages
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 4 Apr 2007 22:40:58 +0200
update-manager (1:0.59.14) feisty; urgency=low
* DistUpgrade/DistUpgradeControler.py:
- fix sources.list rewriting for people with internal or
unofficial mirrors (LP#73463)
* DistUpgrade/DistUpgradeCache.py:
- workaround apache2/php5 upgrade failures (LP#95325)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 3 Apr 2007 16:08:58 +0200
update-manager (1:0.59.13) feisty; urgency=low
* po/POTFILES.in:
- reomove [type: ] this confused intltool
* DistUpgradeControler.py:
- work around problem with kde tempfile extraction
(LP#99380)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 2 Apr 2007 11:46:40 +0200
update-manager (1:0.59.12) feisty; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py:
- set debian frontend to "kde"
* DistUpgrade/DistUpgradeCache.py:
- do not crash when uname -r can't be parsed (LP#97663)
- remove the nfs upgrade question again, the kernel team
fixed the regression
* DistUpgrade/DistUpgradeApport.py:
- do not crash if no apport gui is available (LP#97498)
* DistUpgrade/DistUpgradeViewText.py:
- support details in text-mode (LP#94129)
* DistUpgrade/DistUpgradeControler.py:
- fix incorrect auto-installed information from meta-pkgs
(LP#86921)
- rewrite /etc/fstab cdrom entries (LP#86424,#79327)
- fix upgrade for people with no admin group (LP#93279)
- when encountering a error, first show the error dialog,
then run the recover (LP#92366)
* dist-upgrade.py:
- support fallback when a frontend view can not be imported
(LP#89568)
- log the version of the upgrader as well
* DistUpgrade/mirrors.cfg:
- updated with the current mirror RSS feed from LP
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 30 Mar 2007 20:53:17 +0200
update-manager (1:0.59.11) feisty; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py:
- fix crash in mediaChange (LP#96849)
* DistUpgrade/DistUpgradeViewText.py:
- fix crash on broken packages (LP#96444)
* DistUpgrade/DistUpgradeCache.py:
- ensure that the latest kernel is always selected (LP#96196)
- added nfs-common check in feistyQuirks and ask to install
it if it appears to be missing
* DistUpgrade/DistUpgradeControler.py:
- add any additional sanity check at the start of the upgrade
to check if the base distro is supported
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 27 Mar 2007 22:48:54 +0200
update-manager (1:0.59.10) feisty; urgency=low
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeViewKDE.py:
- i18n KDE frontend fixes, LP#95638, LP#94927
- set text on confirm dialogue buttons
- (re)spawn embedded konsole for each fork,
fixes crash when removing packages
- Add on_window_main_delete_event, stops the user closing the window
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 26 Mar 2007 23:56:31 +0100
update-manager (1:0.59.9) feisty; urgency=low
[Sebastian Heinlein]
* Hide help button - the outdated documentation is confusing (LP#44944)
[Michael Vogt]
* Use .update-manager-core dir
* Fix bug in writable check for /var/lib/update-manager (LP#95599)
* Ensure that /var/lib/update-manager is available
* inhibit sleep when runing the release upgrader(LP#70058)
* make sure that we do not run with a interactive debconf frontend
on server upgrade (for packages like quagga)
* fix race condition in free space checking (LP#96482), thanks
to Jane Silber for reporting
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 26 Mar 2007 11:29:00 +0200
update-manager (1:0.59.8) feisty; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py:
- fix crash in error dialog (LP#94229)
- i18n KDE frontend
* DistUpgrade/DistUpgradeCache.py:
- mention xubuntu-desktop too (LP#94443)
* DistUpgrade/DistUpgradeCache.py:
- fix in the logfile handling in server mode
* DistUpgrade/DistUpgrade.cfg:
- fix KeyDependency for xubuntu detection
* UpdateManager/UpdateManager.py:
- do not crash if UnInhibit dbus signal can not be send
(LP#86572)
-- Michael Vogt <michael.vogt@ubuntu.com> Sat, 24 Mar 2007 15:39:47 +0100
update-manager (1:0.59.7) feisty; urgency=low
* NEWS: removed empty file (LP#92250)
* DistUpgrade/DistUpgradeControler.py:
- fix wording of the "use network" question
- better apport integration
- fix in the progress reporting where the report was off-by-one
* DistUpgrade/DistUpgradeFetcherSelf.py:
- fix run_options argument
* UpdateManager/Core/MetaRelease.py:
- fix race conditin in download thread (thanks to Matt
Zimmerman for reporting the issue)
* do-release-upgrade:
- added option --frontend, --mode
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 21 Mar 2007 10:04:45 +0100
update-manager (1:0.59.6) feisty; urgency=low
* DistUpgrade/DistUpgradeView.py, DistUpgradeControler.py:
- fixes in the apport integration
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 14 Mar 2007 18:22:06 +0100
update-manager (1:0.59.5) feisty; urgency=low
* UpdateManager/fakegconf.py:
- Fix missing {get,set}_string() in fakegconf
* DistUpgrade/dialog_changes.ui
- Fix alignment of image
* DistUpgrade/dialog_error.ui
- Fix caption
- Make text box read only
* DistUpgrade/DistUpgradeViewKDE.py
- remove unused argument to reportBug()
- fix caption of information box
- show close button on error box
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 14 Mar 2007 11:05:22 +0000
update-manager (1:0.59.4) feisty; urgency=low
* data/glade/UpdateManager.glade:
- improve the wording of the dist-upgrade required dialog (LP#88706)
* update-manager:
- set better dialog caption (LP#88706)
* DistUpgrade/DistUpgradeControler.py:
- supress reboot notification when a upgrade is in progress (LP#91999)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 13 Mar 2007 22:11:11 +0100
update-manager (1:0.59.3) feisty; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py:
- Fix incorrect variable name, LP No 91887
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 13 Mar 2007 20:05:22 +0000
update-manager (1:0.59.2) feisty; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py:
- Fix reference to konsole_frame (LP No 84717 comment 33)
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 13 Mar 2007 11:12:01 +0000
update-manager (1:0.59.1) feisty; urgency=low
[ Michael Vogt ]
* DistUpgrade/DistUpgradeViewGtk.py:
- do not fail if loading the svg pixbuf loader fails (LP#91593)
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeViewKDE.py:
- import KRun, closes https://launchpad.net/bugs/91072
- fix non-existant variable use, closes https://launchpad.net/bugs/91386
- fix incorrect method name, closes https://launchpad.net/bugs/91295
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 12 Mar 2007 19:00:07 +0000
update-manager (1:0.59) feisty; urgency=low
* DistUpgrade/DistUpgradeViewKDE.py
- quit any running instances of Adept
* DistUpgrade/dist-upgrade.py
- improve error message when failing to load frontend
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 12 Mar 2007 13:08:07 +0000
update-manager (1:0.58) feisty; urgency=low
* UpdateManager/UpdateManager.py:
- do not crash if download size can not be calculated (LP#90547)
* fix build for all python versions (thanks to doko for help!)
(LP#90269)
* strip changelog epoch too (LP#45566)
* fix spelling mistakes (thanks to Bruce Cowan, LP#90833)
* update download size if "check/uncheck" all was selected from
right-click menu
* correct download speed string (LP#73721)
* fix in the german translation (LP#68384)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 9 Mar 2007 14:58:36 +0100
update-manager (1:0.57.8) feisty; urgency=low
* debian/rules:
- moved dist-upgrade_$version generation to binary-indep
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 2 Mar 2007 10:49:53 +0100
update-manager (1:0.57.7) feisty; urgency=low
* DistUpgrade/DistUpgradeView.py:
- revert earlier commit in FuzzyTimeToStr() to make it not crash
* debian/rules:
- strip the epoch before runing dpkg-addfiles
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 28 Feb 2007 14:25:39 +0100
update-manager (1:0.57.6) feisty; urgency=low
[ Jonathan Riddell ]
* DistUpgrade/DistUpgradeViewKDE.py
- Fix crash with incorrect connect() calls
[ Michael Vogt ]
* UpdateManager/ChangelogViewer.py:
- fix some margins (thanks to Sebastian Heinlein)
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 27 Feb 2007 21:32:45 +0000
update-manager (1:0.57.5) feisty; urgency=low
* UpdateManager/UpdateManager.py:
- check for None in toggled() (LP#88032)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 26 Feb 2007 15:41:51 +0100
update-manager (1:0.57.4) feisty; urgency=low
* DistUpgrade/DistUpgradeControler.py:
- workaround problem in python-apt (no support for PyLong in SizeToStr)
LP#84019
* DistUpgrade/DistUpgradeViewGtk.py:
- keep a reference of the svg pibbuf loader around (LP#86699)
* UpdateManager/fakegconf.py:
- fix crash on xubuntu when gconf is not available (LP#86673)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 22 Feb 2007 16:09:18 +0100
update-manager (0.57.3) feisty; urgency=low
* debian/rules:
- build a raw-dist-upgrader in additon to the debs
* data/glade/UpdateManager.glade:
- fix bad grammar (thanks to Matthew Thomas) LP#85258
- make Update Manager the consistent name (thanks to Matthew Thomas)
LP#85253
* merged ReleaseAnnouncement wording update from Brian Murray
* UpdateManager/Core/MetaRelease.py:
- fix missing import (LP#85515)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 22 Feb 2007 16:09:10 +0100
update-manager (0.57.2) feisty; urgency=low
* fix crash in upgrade mode (LP#84915)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 13 Feb 2007 18:41:17 +0100
update-manager (0.57.1) feisty; urgency=low
* fix proxy authentication parser (lp: #83563)
* fix crash in check_all_updates_installable() (LP#84776)
* fix exception when strange permissions are set on meta-release
file (LP#84724)
* fix error dialog if cache init fails (LP#83185)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 13 Feb 2007 13:27:09 +0100
update-manager (0.57) feisty; urgency=low
* added clickable CVE and buglinks
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 8 Feb 2007 12:11:04 +0100
update-manager (0.56.1) feisty; urgency=low
* fix FTBFS
* update po/
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 7 Feb 2007 21:18:39 +0100
update-manager (0.56) feisty; urgency=low
* added --proposed switch to fetch a release-upgrader from a different
location (similar to the -proposed pocket in the archive)
* split into update-manager and update-manager-core and support
cli release upgrades with the later
* added fdsend module to support file descriptor passing over sockets
this will allow a better seperation between frontend and backend
in the future
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 7 Feb 2007 18:02:35 +0100
update-manager (0.55.1) feisty; urgency=low
* fix FTBFS (missing cdbs b-d)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 5 Feb 2007 13:58:15 +0100
update-manager (0.55) feisty; urgency=low
* moved software-properties into its own source package to
support a kde frontend
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 5 Feb 2007 10:52:26 +0100
update-manager (0.53.6) feisty; urgency=low
* properly extract the package name that fails before
calling out to apports package_hook
* fix crash on exit before the main loop is run (lp: #82744)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 1 Feb 2007 23:32:02 +0100
update-manager (0.53.5) feisty; urgency=low
* update to the new exceptions from python-dbus in
setupDBus (lp: #81802)
* fix FTFBS
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 29 Jan 2007 13:19:21 +0100
update-manager (0.53.4) feisty; urgency=low
* fix python dependency (lp: #80976)
* add apport support to send in bugreports
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 25 Jan 2007 15:40:34 +0100
update-manager (0.53.3) feisty; urgency=low
* fix python dependency (lp: #80976)
* fix the GenericName in update-manager and software-properties
(lp: #78932)
* workaround problem when a meta-release file is created by root
in the users homedir (lp: #80713)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 22 Jan 2007 13:59:18 +0100
update-manager (0.53.2) feisty; urgency=low
* fix the cdromupgrade script to use feisty
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 15 Jan 2007 12:59:01 +0100
update-manager (0.53.1) feisty; urgency=low
* Build-depend on python-dev.
-- Matthias Klose <doko@ubuntu.com> Sun, 14 Jan 2007 23:46:46 +0100
update-manager (0.52) feisty; urgency=low
* UpdateManager/UpdateManager.py:
- more robust error reporting from libapt (lp: #74797)
* SoftwareProperties/SoftwareProperties.py:
- do not crash if template is missing (lp: #70580)
* updated to latest python policy
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 12 Jan 2007 18:18:12 +0100
update-manager (0.51) feisty; urgency=low
* data/channels/Ubuntu.info.in:
- updated for feisty
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 7 Dec 2006 17:46:10 +0100
update-manager (0.50) feisty; urgency=low
* support --disable-component (AlwaysEnableUniverseMultiverse spec)
* look for lsb_release in PATH instead of hardcoding it (lp: #73075)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 24 Nov 2006 08:52:33 +0100
update-manager (0.45.1) edgy-updates; urgency=low
* handle unexpected data from data more gracefuly (lp: #68553)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 27 Oct 2006 10:23:39 +0200
update-manager (0.45) edgy; urgency=low
* debian/control:
- added dependency on python-gconf
- removed recommends on python-gnome2
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 11 Oct 2006 18:32:17 +0200
update-manager (0.44.17) edgy; urgency=low
* memory leak fixed (lp: #43096)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 9 Oct 2006 15:24:40 +0200
update-manager (0.44.16) edgy; urgency=low
* fix proxy usage when runing in non-root mode (lp: #40626)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 6 Oct 2006 15:17:37 +0200
update-manager (0.44.15) edgy; urgency=low
* added missing python-vte dependency (lp: #63609)
* added missing gksu dependency (lp: #63572)
* don't remove xchat automatically anymore on upgrade (leftover
from breezy->dapper) (lp: #63881)
* do not come up with bogus dist-upgrade suggestions
* fix bad english grammar (lp: #63761, #63474)
* fix in the edgyUpdates quirks handler (lp: #63723)
* catch error from _tryMarkObsoleteForRemoval() (lp: #63617)
* fix plural forms for ro, pl (lp: #46421)
* properly escape comments before displaying them (lp: #63475)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 4 Oct 2006 21:10:40 +0200
update-manager (0.44.14) edgy; urgency=low
* fix some incorrect i18n markings (lp: #62681)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 2 Oct 2006 14:41:52 +0200
update-manager (0.44.13) edgy; urgency=low
* fix missing i18n declarations (lp: #62519)
* data/glade/SoftwareProperties.glade:
- fix missing "translatable" property (lp: #62681)
* DistUpgrade:
- deal better with the python transition and the hpijs
upgrade (lp: #62948)
* UpdateManager/UpdateManager.py:
- put the cancel button inside the text-area to avoid flickering
- make sure that src_ver is always initialized (thanks to
Simira for reporting)
- filter python-apt future warning (especially for seb128)
* DistUprade/DistUpgradeControler.py:
- check for self.sources, self.aptcdrom before using it (lp: #61852)
-- Michael Vogt <michael.vogt@ubuntu.com> Sat, 23 Sep 2006 00:53:06 +0200
update-manager (0.44.12) edgy; urgency=low
* DistUpgrade/DistUpgradeViewGtk.py:
- use '%d' instead of '%s' where appropriate (lp: #60239)
* fixed lots of typos (lp: #60633)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 18 Sep 2006 16:37:52 +0200
update-manager (0.44.11) edgy; urgency=low
* UpdateManager/UpdateManager.py:
- fix error in get_changelog (lp: #59940).
Thanks to Denis Washington
- bugfix in the ListStore
- use the update-manager desktop file when runing synaptic
as the backend to get a consistent UI
- UI improvements (thanks to Sebastian Heinlein!)
- remove branding
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 12 Sep 2006 20:37:55 +0200
update-manager (0.44.10) edgy; urgency=low
* aptsources.py:
- fix add_component() to avoid duplicated components
- added MirrorsFile key to DistInfo code to have a better idea
about the available mirrors
* debian/control:
- updated dbus dependencies (lp: #59862)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 11 Sep 2006 09:38:21 +0200
update-manager (0.44.9) edgy; urgency=low
* SoftwareProperties/SoftwareProperties.py:
- bugfix in the popcon enable code (lp: #59540)
-- Michael Vogt <michael.vogt@ubuntu.com> Sat, 9 Sep 2006 02:13:40 +0200
update-manager (0.44.8) edgy; urgency=low
* fix missing /var/log/dist-upgrade
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 8 Sep 2006 20:33:04 +0200
update-manager (0.44.7) edgy; urgency=low
* UpdateManager/UpdateManager.py:
- be more accurate about dependencies when the user selects only
a supset of the packages
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 6 Sep 2006 12:29:05 +0200
update-manager (0.44.6) edgy; urgency=low
* SoftwareProperties/SoftwareProperties.py:
- fix inconsistency in the new software-sources dialog
* integrate DistUpgrade code into UpdateManager to make sure
that after e.g. a CDROM upgrade the rest of the system can still
be fully upgraded over the net
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 5 Sep 2006 13:30:22 +0200
update-manager (0.44.5) edgy; urgency=low
* install the DistUpgrade package too
* data/channels/Ubuntu.info.in:
- warty is no longer officially supported
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 30 Aug 2006 11:32:24 +0200
update-manager (0.44.4) edgy; urgency=low
* SoftwareProperties/SoftwareProperties.py:
- don't bomb when searching for the mirror (lp: #57015)
* UpdateManager/UpdateManager.py:
- added "%s-proposed" to the list of known origins
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 24 Aug 2006 13:00:23 +0200
update-manager (0.44.3) edgy; urgency=low
* help/C/update-manager-C.omf:
- fix url (thanks to daniel holbach, lp: #45548)
* show the units better
* don't jump around on row activation
(thanks to Sebastian Heinlein)
* send "inhibit sleep" to power-manager while applying
updates (lp #40697)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 15 Aug 2006 18:06:53 +0200
update-manager (0.44.2) edgy; urgency=low
* added select all/unselect all (thanks to Sebastian Heinlein)
* wording fixes
* fix update counting bug
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 3 Aug 2006 17:52:09 +0200
update-manager (0.44.1) edgy; urgency=low
* make UpdateManager check for new distribution releases by
default again
* fix dist-upgrade fetching when run as non-root.
* sort the package list by the origin (UpdateManagerEdgy spec)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 2 Aug 2006 13:00:42 +0200
update-manager (0.44) edgy; urgency=low
* new SoftwareProperties GUI (thanks to Sebastian Heinlein)
* support easy Popcon pariticipation
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 28 Jul 2006 01:06:16 +0200
update-manager (0.43) edgy; urgency=low
* fixes in the changelog reading code
* speedup in the cache clear code
* runs as user by default now
* uses dbus to implement singleton behaviour
* updated the software-properties code to know about edgy
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 4 Jul 2006 11:16:31 +0200
update-manager (0.42.2ubuntu22) dapper; urgency=low
* UpdateManager/UpdateManager.py:
- fix a 'brown paperback' bug when the Meta-Release file
checked (#46537)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 25 May 2006 12:30:42 +0200
update-manager (0.42.2ubuntu21) dapper; urgency=low
* UpdateManager/UpdateManager.py:
- when a distribution release becomes available, display the
version, not the codename (as per
https://wiki.ubuntu.com/CodeNamesToVersionNumbers)
- fix a string that was not marked transltable
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 24 May 2006 15:07:19 +0200
update-manager (0.42.2ubuntu20) dapper; urgency=low
* SoftwareProperties/aptsources.py, channels/Ubuntu.info.in:
- remove the codenames from the releases (as per
https://wiki.ubuntu.com/CodeNamesToVersionNumbers)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 23 May 2006 16:04:39 +0200
update-manager (0.42.2ubuntu19) dapper; urgency=low
* help/C/figures:
- applied "pngcrush" on the figures in the manual,
this saves 4 MB uncompressed (ubuntu: #45901)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 22 May 2006 09:37:19 +0200
update-manager (0.42.2ubuntu18) dapper; urgency=low
* data/SoftwareProperties.glade:
- fix missing 'translatable="yes"' property (ubuntu: #44409)
- increase width to 620 (ubuntu: #40540)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 19 May 2006 01:45:22 +0200
update-manager (0.42.2ubuntu17) dapper; urgency=low
* debian/control:
- depend on later python-apt (#45325)
* SoftwareProperties/SoftwareProperties.py:
- fix key updating after import (ubuntu #44927)
* UpdateManager/UpdateManager.py:
- remove debug output
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 19 May 2006 00:04:02 +0200
update-manager (0.42.2ubuntu16) dapper; urgency=low
* use version and section of the source package (if this information is
available) when building the changelog URL (ubuntu #40058)
* SoftwareProperties/SoftwareProperties.py:
- if no config is found create a new one (ubuntu: #37560)
* UpdateManager/UpdateManager.py:
- fix problem in changelog reading code when matching against
installed versions with epochs (ubuntu: #40058)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 11 May 2006 17:33:40 +0200
update-manager (0.42.2ubuntu15) dapper; urgency=low
* disable the install button if there no updates (ubuntu: #42284)
(Thanks to Sebastian Heinlein)
* show main window *after* restoring the size (ubuntu: #42277)
(Thanks to Sebastian Heinlein)
* fix broken spelling, typos, wording (ubuntu: #42431, #28777,
#40425, #40727)
* help/C: merged from the docteam svn (ubuntu: 36092)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 2 May 2006 12:13:59 +0200
update-manager (0.42.2ubuntu14) dapper; urgency=low
* wording/glade file fixes (thanks to Sebastian Heinlein)
* many updates to the dist-upgrader code
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 28 Apr 2006 23:04:08 +0200
update-manager (0.42.2ubuntu13) dapper; urgency=low
* po/POTFILES.in: add missing desktop file (ubuntu: #39410)
* UpdateManager/UpdateManager.py:
- fix in the get_changelog logic (ubuntu: #40058)
- correct a error in the changelog parser (ubuntu: #40060)
- fix download size reporting (ubuntu: #39579)
* debian/rules: added dh_iconcache
* setup.py: install the icons into the hicolor icon schema
(thanks to Sebastian Heinlein)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 20 Apr 2006 18:23:54 +0200
update-manager (0.42.2ubuntu12) dapper; urgency=low
* channels/*.in: typo fix
* po/POTFILES.in: add missing files (ubuntu: #38738)
* fix the help string in update-manager (ubuntu: #23274)
* fix the bad grammar in "Cannot install all available updates"
(ubuntu: #32864)
* don't inform about new distro release on dapper by default (can be
changed via a gconf setting/commandline switch)
* fix UI issue of the edit dialog for given templates (thanks to
Chipzz for the patch)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 12 Apr 2006 20:23:21 +0200
update-manager (0.42.2ubuntu11) dapper; urgency=low
* debian/control:
- depend on unattended-upgrades
- move python-gnome2 to recommends (we only use gconf from it)
* UpdateManager/fakegconf.py: update for xubuntu (thanks to Jani Monoses)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 5 Apr 2006 14:46:10 +0200
update-manager (0.42.2ubuntu10) dapper; urgency=low
* update-manger: fix a missing import (#36138)
* typo fix (#36123)
* correct dapper version number (#36136)
* keybindings fixed (#36116)
* calc the update before downloading the changelog (#36140)
* add a fake gconf interface for xubuntu (nop for normal ubuntu)
(Thanks to Jani Monoses for the patch)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 4 Apr 2006 18:17:16 +0200
update-manager (0.42.2ubuntu9) dapper; urgency=low
* Better English (tm) (fixes #35985)
* Use the the number of available and not selected updates to determinate
if the system is up-to-date (fixes #35300)
* fix ui problem with software preferences (fixes #35987)
* fix width problem in SoftwareProperties
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 22 Mar 2006 21:57:28 +0100
update-manager (0.42.2ubuntu8) dapper; urgency=low
* fix a FTBFS
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 15 Mar 2006 17:54:08 +0000
update-manager (0.42.2ubuntu7) dapper; urgency=low
* various spelling fixes and ui-glitches
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 14 Mar 2006 16:58:01 +0000
update-manager (0.42.2ubuntu6) dapper; urgency=low
* po/pt_BR.po: updated translation
(thanks to Carlos Eduardo Pedroza Santiviago)
* po/pt.po: updated Portugise translation (thanks to Rui Azevedo)
* debian/control: arch: all now
* debian/rules: undo the detection in favour of the simpler update of
the desktop files
* data/gnome-software-properties.desktop.in, update-manager.desktop.in:
- added X-Ubuntu-Gettext-Domain
* help/*: updated to latest svn
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 20 Feb 2006 15:58:09 +0100
update-manager (0.42.2ubuntu5) dapper; urgency=low
* debian/rules: Add gettext domain to .server and .desktop files to get
language pack support for them. (Similarly to cdbs' gnome.mk)
-- Martin Pitt <martin.pitt@ubuntu.com> Thu, 23 Feb 2006 18:42:04 +0100
update-manager (0.42.2ubuntu4) dapper; urgency=low
* removed some of the gnome dependencies (gconf still in)
* the ReleaseNotes dialog has clickable links now (thanks to Sebastian
Heinlein)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 20 Feb 2006 13:24:55 +0100
update-manager (0.42.2ubuntu3) dapper; urgency=low
* fixed description of the ubuntu repository (#30813)
* use the new synaptic --parent-window-id switch when runing the backend
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 8 Feb 2006 20:53:46 +0100
update-manager (0.42.2ubuntu2) dapper; urgency=low
* SoftwareProperties/SoftwareProperties.py:
- re-added the internet update options (#27932)
* data/gnome-software-properties.desktop:
- use gksu instead of gksudo (#30057)
* wording fixes (#30296)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 7 Feb 2006 13:13:09 +0100
update-manager (0.42.2ubuntu1) dapper; urgency=low
* UpdateManager/MetaRelease.py:
- never offer a upgrade to a unsupported (i.e. developer) dist
* data/gnome-software-properties.desktop.in: use X-KDE-SubstituteUID=true
* small UI layout changes (should fix the cancel/close button problem)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 31 Jan 2006 09:48:13 +0000
update-manager (0.42.1ubuntu1) dapper; urgency=low
* UpdateManagert:
improved the HIG complicane more, removed some of the uglines
from the last version (Malone #22090)
* SoftwareProperties:
improved the HIG complicane (Malone #28530)
(thanks to Sebastian Heinlein)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 17 Jan 2006 17:27:15 +0100
update-manager (0.42ubuntu1) dapper; urgency=low
* improved the HIG comlicane, thanks to Sebastian Heinlein:
- Rename the button "close" to "cancel"
- Move status bar to a separate dialog
- Wording
- Add a wider border around the changelog and
description
- Align and capitalize the button "Cancel downloading"
(ubuntu: #28453)
* bugfixes in the cache locking
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 16 Jan 2006 12:56:29 +0100
update-manager (0.40.2) dapper; urgency=low
* SoftwareProperties/SoftwareProperties.py:
- fix a problem with transient/parent window in custom apt line
dialog (ubuntu #21585)
- fix a problem in the conf file writer that can lead to absurdly
large files
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 5 Jan 2006 12:37:33 +0100
update-manager (0.40.1) dapper; urgency=low
* SoftwareProperties/SoftwareProperties.py:
- make it embedded friendlier
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 16 Dec 2005 14:02:27 +0100
update-manager (0.40) dapper; urgency=low
* new upstream release:
- switched from autotools to distutils
- massive code cleanups
- use SimpleGladeApp now
- SoftwareProperties has a new GUI
- UpdateManager has support for upgrading from one dist to another
now (given that the required "recipe" for the upgrade is available)
See https://wiki.ubuntu.com/AutomaticUpgrade for details
- use python-apt for "reload" and "add cdrom" now
- improved the handling of sources.list a lot (including support for
/etc/apt/sources.list.d)
* support for the AutomaticUpgrades spec added via the meta-release
information
* data/update-manager.desktop.in:
- use X-KDE-SubstituteUID added and use gksu now
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 15 Nov 2005 17:22:12 +0100
update-manager (0.37.1+svn20050404.15) breezy; urgency=low
* added intltool to build-depends (for rosetta)
-- Michael Vogt <mvo@debian.org> Thu, 6 Oct 2005 17:30:38 +0200
update-manager (0.37.1+svn20050404.14) breezy; urgency=low
* debian/rules:
- run intltool-update -p for rosetta
* src/update-manager.in:
- release the lock before runing gnome-software-properties (ubuntu #17022)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 4 Oct 2005 22:28:43 +0200
update-manager (0.37.1+svn20050404.13) breezy; urgency=low
* src/update-manager.in:
- use the right column for type-ahead searching (ubuntu #16853)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 4 Oct 2005 11:01:58 +0200
update-manager (0.37.1+svn20050404.12) breezy; urgency=low
* added locking support
* use explicit path to python2.4 (thanks anthony!) (Ubuntu #16087)
* CTRL-{w,q} close the update-manager window (Ubuntu #15729)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 28 Sep 2005 17:40:05 +0200
update-manager (0.37.1+svn20050404.11) breezy; urgency=low
* fix a typo in the reload tooltip (thanks to P Jones) (ubuntu #14699)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 12 Sep 2005 14:49:13 +0200
update-manager (0.37.1+svn20050404.10) breezy; urgency=low
* fix for a typo in the source of the last upload (*cough*)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 31 Aug 2005 15:39:53 +0200
update-manager (0.37.1+svn20050404.9) breezy; urgency=low
* do a "save" dist-upgrade (add only, no removes)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 31 Aug 2005 12:09:20 +0200
update-manager (0.37.1+svn20050404.8) breezy; urgency=low
* if repository window is running from inside synaptic, don't show "Add
cdrom" button (it's available in the synaptic menu already)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 30 Aug 2005 14:12:50 +0200
update-manager (0.37.1+svn20050404.7) breezy; urgency=low
* if running from inside another application (e.g. synaptic), make sure
the dialogs get a correct parent (ubuntu #14001)
* if nothing changed, do not run "reload" if runing from inside synaptic
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 29 Aug 2005 12:09:12 +0200
update-manager (0.37.1+svn20050404.6) breezy; urgency=low
* remove (parts of) ubuntu branding from the application
* make it run only with python2.4 (ubuntu #10876)
* make sure to always properly escape the strings displayed
in the treeview
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 23 Aug 2005 16:49:54 +0200
update-manager (0.37.1+svn20050404.5) breezy; urgency=low
* updates where not shown sometimes, fixed that (ubuntu #13410)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 16 Aug 2005 10:49:46 +0200
update-manager (0.37.1+svn20050404.4) breezy; urgency=low
* re-read the sources.list after a "add-custom" (ubuntu #9855)
* settings window has a title (ubuntu #10756)
* default actions for the buttons (ubuntu #10741)
* various typos fixed (ubuntu #9866)
* make sure that no dialogs are opened without a parent (ubuntu #10284)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 15 Aug 2005 15:15:06 +0200
update-manager (0.37.1+svn20050404.3) breezy; urgency=low
* use breezy as default for newly created sources (ubuntu #13009)
* be more carefull with preserving the mirror
* a better explaination for the "Reload" button (ubuntu #11432)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 10 Aug 2005 12:07:55 +0200
update-manager (0.37.1+svn20050404.2) breezy; urgency=low
* fix a small problem in the parsing code (ubuntu #8754)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 6 May 2005 11:24:17 +0200
update-manager (0.37.1+svn20050404.1) hoary; urgency=low
* pickup the correct proxy settings from apt (#8668)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 6 Apr 2005 16:39:44 +0200
update-manager (0.37.1+svn20050404) hoary; urgency=low
* translation updates:
- xh, fr
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 4 Apr 2005 22:21:17 +0200
update-manager (0.37.1+svn20050403) hoary; urgency=low
* translation updates:
- pt_BR, tw
* documentation updates (thanks to Sean Wheller and
Jeff Schering)
* small fixes:
- make sure to not duplicate sources.list entires (even for
mirrors)
- added the hoary-updates to the templates and matchers (#8600)
- some missing i18n strings marked as such (thanks to Zygmunt Krynicki)
- don't fail on missing net connections
- always update the status label
-- Michael Vogt <michael.vogt@ubuntu.com> Sun, 3 Apr 2005 20:54:42 +0200
update-manager (0.37.1+svn20050323) hoary; urgency=low
* translation updates
* gui can set the new apt cache properties now
* warn about broken packages (#7688)
* only ask to reload the package list if something changed (#7871)
* various focus fixes (#7900)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 23 Mar 2005 01:18:38 +0100
update-manager (0.37.1+svn20050314) hoary; urgency=low
* new svn snapshot, lot's of bugfixes and i18n updates.
- fix for a ui problem (#6837)
- read pined packages correctly (#7058)
- update list correctly after reload (#7182)
- tell user when dist-upgrade is needed (#7271)
- cdrom sources can be added now too (#7315)
- meta-release file bugfix (#7330)
- translation updates (da, fr, es, ro, pl)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 14 Mar 2005 08:49:52 +0100
update-manager (0.37.1+svn20050304) hoary; urgency=low
* new snapshot, use python-apt depcache now
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 4 Mar 2005 22:55:46 +0100
update-manager (0.37.1+svn20050301) hoary; urgency=low
* new snapshot, better de.po, better i18n support
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 1 Mar 2005 12:06:39 +0100
update-manager (0.37.1+svn20050228.1) hoary; urgency=low
* fixed a FTBFS (because of the "cleanfiles" in Makefile.am)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 28 Feb 2005 19:12:28 +0100
update-manager (0.37.1+svn20050228) hoary; urgency=low
* get the correct candidate version for updatable packages
(ubuntu #6825)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 28 Feb 2005 11:00:38 +0100
update-manager (0.37.1+svn20050221) hoary; urgency=low
* new svn snapshot, fixes:
- #6756: window size too big
- #6767, #6780: gnome-software-properties window broken
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 21 Feb 2005 11:30:52 +0100
update-manager (0.37.1+svn20050219) hoary; urgency=low
* new svn snapshot, fixes:
- #6565, #6565 (typo)
- #6634 (remeber last details state)
- #6635 (progress dialog merged in main window)
- #6578 (hide details if no updates are available)
-- Michael Vogt <michael.vogt@ubuntu.com> Sat, 19 Feb 2005 00:32:50 +0100
update-manager (0.37.1) hoary; urgency=low
* typo (#6542)
* package list is sorted now
* applied "hide details if system is update-to-date" patch
(#6578, thanks to Jorge Bernal)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 15 Feb 2005 10:49:17 +0100
update-manager (0.37) hoary; urgency=low
* test for lock file and show error if the lock is already taken
* use utf8 for the description
* changelogs are fetched from http://changelogs.ubuntu.com/ now
(closes: #6315)
* handle 404 from http and set the error accordingly
* set main_window to not sensitive when downloading changelogs
* if no updates are available, hide the checkbox column (closes: #6443)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 14 Feb 2005 15:08:06 +0100
update-manager (0.36.6) hoary; urgency=low
* various bugfixes and embedding of synaptics progress windows
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 8 Feb 2005 22:12:53 +0100
update-manager (0.36.5) hoary; urgency=low
* disabled sources can now be displayed too (optional preference)
* comments can be added
* various bugfixes
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 3 Feb 2005 16:21:32 +0100
update-manager (0.36.4) hoary; urgency=low
* regression of the last upload fixed
* gnome-software-properties can be embedded into other windows now
(usefull for e.g. synaptic)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 31 Jan 2005 22:59:35 +0100
update-manager (0.36.3) hoary; urgency=low
* updates to the main window design
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 31 Jan 2005 16:59:41 +0100
update-manager (0.36.2) hoary; urgency=low
* new main window layout in update-manager
(Michiel design, looks _so_ nice)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 28 Jan 2005 12:20:57 +0100
update-manager (0.36.1) hoary; urgency=low
* columns are resizable now (closes: #5541)
* lot's of typo/gui-glitches fixes (closes: #5200, #5816, #5801, #5802)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 24 Jan 2005 16:14:45 +0100
update-manager (0.36) hoary; urgency=low
* new upstream release, added support to control APT::Periodic::*
variables in gnome-software-properties
-- Michael Vogt <mvo@debian.org> Wed, 19 Jan 2005 16:59:19 +0100
update-manager (0.35) hoary; urgency=low
* new upstream release
- typo fix (closes: #5200)
-- Michael Vogt <mvo@debian.org> Wed, 5 Jan 2005 12:23:55 +0100
update-manager (0.34) hoary; urgency=low
* new upstream release
-- Michael Vogt <mvo@debian.org> Fri, 24 Dec 2004 12:50:13 +0100
update-manager (0.33) hoary; urgency=low
* new upstream release, featuring the gnome-software-properties
-- Michael Vogt <mvo@debian.org> Tue, 30 Nov 2004 12:41:06 +0100
update-manager (0.32) hoary; urgency=low
* new upstream release
-- Michael Vogt <mvo@debian.org> Tue, 23 Nov 2004 15:28:09 +0100
update-manager (0.31-1ubuntu1) hoary; urgency=low
* Update Build-Deps and fix FTBFS.
-- Fabio M. Di Nitto <fabbione@fabbione.net> Mon, 22 Nov 2004 13:04:09 +0100
update-manager (0.31-1) hoary; urgency=low
* new upstream release, added icon, desktop file and bugfix
-- Michael Vogt <mvo@debian.org> Sat, 13 Nov 2004 11:30:37 +0100
update-manager (0.3-1) hoary; urgency=low
* New upstream release, inital ubuntu release
-- Michael Vogt <mvo@debian.org> Wed, 3 Nov 2004 14:48:14 +0100
update-manager (0.2-1) unstable; urgency=low
* New upstream release.
-- Michiel Sikkes <michiel@eyesopened.nl> Sat, 30 Oct 2004 02:22:12 +0200
update-manager (0.1-2) unstable; urgency=low
* Um Yeah.
-- Michiel Sikkes <m.sikkes@luon.net> Tue, 26 Oct 2004 13:16:13 +0200
update-manager (0.1-1) unstable; urgency=low
* Initial Release.
-- Michiel Sikkes <michiel@eyesopened.nl> Mon, 25 Oct 2004 21:49:07 +0200
|