summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/service_harddrake.sh
blob: b3da8d1a45661a6a11d4fa03be361ac55600cfcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
#
# harddrake		This scripts runs the harddrake hardware probe.
#
# chkconfig: 345 05 95
# description: 	This runs the hardware probe, and optionally configures \
#		changed hardware.

# This is an interactive program, we need the current locale

[[ -f /etc/profile.d/lang.sh ]] && . /etc/profile.d/lang.sh

# Source function library.
. /etc/rc.d/init.d/functions


SUBSYS=/var/lock/subsys/harddrake

case "$1" in
 start)
# We (mdk) don't support updfstab (yet)
#	action "Updating /etc/fstab" /usr/sbin/updfstab

	gprintf "Checking for new hardware"
 	/usr/share/harddrake/service_harddrake 2>/dev/null
	RETVAL=$?
	if [ "$RETVAL" -eq 0 ]; then
  	   action "" /bin/true
	else
	   action "" /bin/false
	fi
	# We don't want to run this on random runlevel changes.
	touch $SUBSYS
#	[ /etc/modules.conf -nt /lib/modules/$(uname -r)/modules.dep ] && touch /lib/modules/$(uname -r)/modules.dep 2>/dev/null >/dev/null || : &
	exit $RETVAL
	;;
 status)
	   if [ -f $SUBSYS ]; then
		   gprintf "Harddrake service was run at boot time"
	   else gprintf "Harddrake service was not run at boot time"
	   fi
	;;
 reload)
        ;;
 stop)
	# dummy
 	rm -f $SUBSYS
 	;;
 *)
 	gprintf "Usage: %s {start|stop}\n" "$0"
	exit 1
	;;
esac
/a> 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162
- fix retrieving XML information (mga#9529)

Version 5.45 - 24 Mar 2013, Thierry Vignaud

- merge patch for mga#4918
- better dialog destruction
- signature verification:
  o do not update progress bar
  o use gurpm for informing (mga#9520)
- update GUI package list

Version 5.44 - 21 Mar 2013, Thierry Vignaud

- adapt to gurpmi enabling to cancel again downloads
- fix erase progress in global bar

Version 5.43 - 21 Mar 2013, Thierry Vignaud

- fix download progress with global progress bar (mga#9469)
- use global progress bar for download too

Version 5.42 - 19 Mar 2013, Thierry Vignaud

- do not offer to pick only update media unless using --expert (mga#2317)
- use a global progress bar when installing (mga#778)
- workaround a crash (mga#9197)

Version 5.41.2 - 16 Feb 2013, Funda Wang

- adapt to new group hierarchy

Version 5.40.1 - 16 January 2013, Thomas Backlund

- update translations

Version 5.40 - 6 December 2012, Thierry Vignaud

- add a fix for a rare crash (mga#7439)
- cleanups
- look at _all_ config files and only those instead of manually
  matching file paths beginning with "^/etc" (mga#8310)
- update GUI package list

Version 5.39 - 28 October 2012, Funda Wang

- adapt to new group hierarchy

Version 5.38 - 04 October 2012, Thierry Vignaud

- minor cleanups
- rpmdrake:
  o update GUI package list
- use new URPM API

Version 5.37 - 20 September 2012, Thierry Vignaud

- fix deselecting updates when clicking on "New dependancies"
- fix changelog highlighting
- rpmdrake:
  o make failing to open RPM DB non fatal when reseting selection (mga#7352)

Version 5.36 - 31 August 2012, Thierry Vignaud

- adapt to urpmi-7.5

Version 5.35 - 24 August 2012, Thierry Vignaud

- display package basenames when signature checking fails
- fix changelog highlighting
- makes --merge-all-rpmnew option slighty faster

Version 5.34 - 13 May 2012, Pascal Terjan

- rpmdrake:
  o update GUI package list

Version 5.33 - 28 March 2012, Thierry Vignaud

- display a graphical error message when debug environment does not exist
    (regression introduced with only "display latest updates" in 5.31)
- rpmdrake:
  o show all arches for a given package (mga#5047)

Version 5.32 - 26 March 2012, Thierry Vignaud

- rpmdrake:
  o display backported packages with a different icon
  o fix offering of updates from media not configured as update ones
  o install perl-{Glib,Gtk2} as priority upgrades prior to restart

Version 5.31 - 20 March 2012, Thierry Vignaud

- fix a rare crash when some packages are installed twice (mga#4972)
- rpmdrake:
  o only display latest updates, not all of them (mga#2258, mga#4534)

Version 5.30 - 02 March 2012, Thierry Vignaud

- separate paragraphs when displaing READMEs (mga#4697)

Version 5.29 - 17 January 2012, Thierry Vignaud

- even better packages sorting in searches (x86_64 first)
- sort packages the same way when browsing groups

Version 5.28 - 15 January 2012, Thierry Vignaud

- fix french translation (mga#1523)
- limit progress bar refreshes to 3 per second max (mga#2775)
- show 32bit packages last in searches on 64bit (mga#1261)

Version 5.27 - 10 December 2011, Thierry Vignaud

- fix opening URLs in root's firefox in some cases by redefining HOME (mga#287)

Version 5.26.11 - 14 Oct 2011, Thierry Vignaud

- better message for orphans (#902)
  (needs urpmi > 6.40)
- fix broken translations (mga#1399)
- update GUI package list

Version 5.26.10 - 26 May 2011, Anne Nicolas

- update translations

Version 5.26.9 - 14 May 2011, Anne Nicolas

- update translations

Version 5.26.8 - 28 March 2011, Thierry Vignaud

- unfuzzy translations after miss managed s/Mdv/Mageia/ (#455)
- typo fixes (#945)
- rpmdrake
  o update GUI package list

Version 5.26.7 - 05 March 2011, Thierry Vignaud
- rpmdrake
  o update GUI package list (MGA#263)

Version 5.26.6 - 21 February 2011, Ahmad Samir

- Update po files (dmorgan)
- Fix po/Makefile to fit now MageiaUpdate (dmorgan)
- Fix pm files to fit MageiaUpdate changes (dmorgan)
- Rename mandrivaupdate.desktop.in (dmorgan)

Version 5.26.5 - 24 October 2010, Thierry Vignaud

- add a minimal "testsuite" in order to prevent syntax errors such as MDV#60901

Version 5.26.4 - 16 July 2010, João Victor Duarte Martins

- fix wrong notice message for updates (MDV#60629)

Version 5.26.3 - 16 July 2010, Thierry Vignaud

- fix crashing when looking at update details (MDV#60153)
  (bug introduced in rpmdrake 5.25)

Version 5.26.2 - 5 June 2010, Thierry Vignaud

- rpmdrake:
  o fix displaying version numer in about dialog (MDV#59665)

Version 5.26.1 - 25 May 2010, João Victor Duarte Martins

- uninstalled package shows files list (bug MDV#58871)
- added auto_select and clean_cache options to conf file (bug MDV#48552)

Version 5.26 - 6 April 2010, João Victor Martins

- inactive backports are only listed in the "Backports" view (fixes
  MDV#40556)
- fix for a crash (MDV#56144)

Version 5.25 - 3 March 2010, Thierry Vignaud

- do not show file list if empty
- explain what are official, backports ... packages
- edit-urpm-sources:
  o fix crashing when deleting media with UTF-8 characters (MDV#57644)

Version 5.24 - 3 December 2009, Thierry Vignaud

- remove --root option that was deprecated since August 2007
- use gtksourceview-2 instead of gtksourceview-1
- rpmdrake:
  o fix crashing when running as user (MDV#55009)

Version 5.23 - 27 October 2009, Thierry Vignaud

- rename 'dependancies' as 'new dependancies' and tell there's no new
  dependency when list is empty (MDV#54697)
- use a scrolling window if needed when displaying list of orphan
  packages after removing some packages (MDV#54713)

Version 5.22 - 16 October 2009, Thierry Vignaud

- rpmdrake
  o display a graphical warning when trying more than one instance
    instead of silently exiting
  o match urpmi behavior when registering requested package
- MandrivaUpdate:
  o do not display the banner when height <= 480 instead of just < 480
    (MDV#54550)

Version 5.21.1 - 12 October 2009, Thierry Vignaud

- try harder to display help, bug wizards, ... as user

Version 5.21 - 9 October 2009, Thierry Vignaud

- edit-urpm-sources:
  o fix enabling for the first time a medium that never was enabled
    before (MDV#47110, #52636)
  o ignore rpmdrake's option regarding ignoring debug media
  o prevent crashing if one click on a media checkbox while another
    one is being processed (gtk+ was reentering the callback when we
    were processing refreshing events...) (MDV#46727)
- rpmdrake
  o fix searching on just names (MDV#54339)

Version 5.20 - 2 October 2009, Thierry Vignaud

- rpmdrake
  o display orphan packages after removing some packages
  o fix registering orphan package (MDV#51229)

Version 5.19 - 1 October 2009, Thierry Vignaud

- gurpmi.addmedia
  o fix message when adding distrib media (MDV#49566)
- rpmdrake
  o fix encoding of diff output (MDV#52994)  
  o fix for unreproductable crash (MDV#49273)
  o fix rare crash when medium is unknown (MDV#49901)
  o fix rare crash with packages without any URPM objects (MDV#52751)
  o update GUI package list

Version 5.18 - 1 October 2009, Thierry Vignaud

- edit-urpm-sources:
  o use proper stock icons for arrows
- rpmdrake
  o added dependencies section in package details panel (MDV#39491)
  o enable to apply priority updates without trying to select any
    package
  o search
    * clear search results too when cleaing searched text (MDV#49239)
    * default to OR like searches for searches among package names (MDV#37643)
    * enable to disable use of regular expression (default is: disabled)
    * enable to search in full or short package names (MDV#46473)
    * fix searching for summary on startup (MDV#49293)
    * rerun search after reloading package list (MDV#49834)
  o show rpmdrake version in about dialog instead of distribution
    version (MDV#49467)
  o warn on exit if some packages are selected (MDV#45404)

Version 5.17 - 1 June 2009, Thierry Vignaud

- consider chrooted /etc/product.id when detecting whether installed
  distro is stable or cooker
- do not restart if we didn't install any package (when having
  priority packages)
- fix not displaying importance and reasons of updates (MDV#51118)
  (regression introduced by MDV#50276 fix in 5.16.2)
- make 'urpmi-root' implying rpm-root so that the proper chrooted db
  got opened
- rpmdrake:
  o update GUI package list

Version 5.16.4 - 13 May 2009, Thierry Vignaud

- rpmdrake:
  o do not crash when running as root (MDV#50473)

Version 5.16.3 - 6 May 2009, Thierry Vignaud

- rpmdrake:
  o save "Compute updates on startup" setting
  o when searching in descriptions, do not search among packages not
    in current view (MDV#50638)

Version 5.16.2 - 30 April 2009, Thierry Vignaud

- rpmdrake:
  o fix listing _one_ non installed package as installed (MDV#50276)
  o fix swedish translation that broke menu structure (MDV#49989)
  o default "Compute updates on startup" to yes
    (fix "MandrivaUpdate and urpmi show updated rpm, while rpmdrake
    doesn't", MDV#47305)
  o manually list cedega, picasa, VariCAD, VariCAD_View &
    VMware-Player as GUI packages (MDV#50379)
  o update GUI package list

Version 5.16.1 - 15 April 2009, Thierry Vignaud

- ignore /etc/fstab for *.rpmnew (MDV#49887)
- rpmdrake:
  o update GUI package list

Version 5.16 - 3 April 2009, Thierry Vignaud

- revert using installer hack that prevents having gray wait message dialogs on
  dialog popup in favor of old rgs hack, else (when not on displayed desktop),
  it uses too much CPU and waits until it got the focus (MDV#48912)
- rpmdrake:
  o update GUI package list

Version 5.15 - 1 April 2009, Thierry Vignaud

- kill --no-splash option (useless since 4.17 (do not display a splash
  text anymore)), thus fixing MDV#49035)
- rpmdrake:
  o add a sensible tooltip for the "find" entry (MDV#39454)
  o suggest to switch to the 'all' view if there's no search results (MDV#38461)

Version 5.14 - 25 March 2009, Thierry Vignaud

- prevent dialog to enlarge too much when displaying downloads of
  media meta_data (eg: adding or updating media)
- gurpmi.addmedia:
  o fix success message when adding mirrorlist (MDV#48112)
- rpmdrake:
  o update GUI package list

Version 5.13 - 25 March 2009, Thierry Vignaud

- rpmdrake:
  o do not use Gtk2::Sexy anymore (sligthly reduce memory usage)
  o update GUI package list (MDV#49086)

Version 5.12 - 19 March 2009, Thierry Vignaud

- MandrivaUpdate:
  o select updates from all media on cooker instead of only from update media

Version 5.11.1 - 19 March 2009, Thierry Vignaud

- export a function for mdkapplet

Version 5.11 - 19 March 2009, Thierry Vignaud

- MandrivaUpdate:
  o fix width of title by workarounding Gtk+ (MDV#48259)
  o update all media on cooker instead of only update media
- rpmdrake:
  o do not try to update & parse inactive sources backports media

Version 5.10 - 17 March 2009, Thierry Vignaud

- MandrivaUpdate:
  o fix ignoring selected/unselected packages (embarassing bug MDV#29835)
    (regression introduced in 4.10 on 24 June 2008: "show type of
    update in mandrivaupdate (fix, security, ...)")

Version 5.9 - 23 February 2009, Thierry Vignaud

- rpmdrake:
  o add 'compute_updates' option that enable super fast startup by
    skipping computing updates on startup (MDV#42848)
  o do not try to update & parse inactive debug backports media
  o prevent running more than one instance (MDV#47755)
  o reduce memory usage
  o update GUI package list
  o use right icon

Version 5.8 - 15 February 2009, Thierry Vignaud

- fix crashing on uninstalling packages (MDV#47751)
- icons (MDV#44671):
  o update banner icons from mcc ones
  o use mcc icon for banners if availlable
- prevent crashing in URPM when using --env with relative paths
- edit-urpm-sources:
  o do not use the same shortcut for "Add a specific "media mirror"
    and "_Add a custom medium" menu entries (MDV#46027)
  o honnor canceling when the user closed the "updates/full_sources"
    dialog (MDV#47125)
  o honnor canceling when the user refused to access the network when
    adding a specific mirror from the menubar (MDV#46027)
  o use same icon as in mcc instead of rpmdrake one (MDV#44671)

Version 5.7 - 11 February 2009, Thierry Vignaud

- fix using --justdb option
- MandrivaUpdate:
  o warn when rebooting is needed after installing packages
- rpmdrake:
  o add C-F accelerator in order to focus on search entry (MDV#46404)

Version 5.6 - 9 February 2009, Thierry Vignaud

- edit-urpm-sources:
  o add media even if one failed instead of rollbacking all of them
    (regression introduced in urpmi-6.19)
  o fix displayling big list of media to remove (MDV#46773)
  o fix media selection dialog layout so that dialog behaves smoothly
    on resizing (MDV#47271)
- MandrivaUpdate:
  o use new proper API to select media, thus fixing not updating media
    (side effect of urpmi API changes, MDV#47209)
- rpmdrake:
  o update GUI package list

Version 5.5 - 9 December 2008, Thierry Vignaud

- rpmdrake:
  o searching:
    * fix a rare crash on searching (MDV#46225)
    * only look at name, not at full name (n-e-v-r) when performing
      search in names (MDV#45410)
    * scroll group list to search category
  o update GUI package list

Version 5.4 - 24 November 2008, Thierry Vignaud

- edit-urpm-sources:
  o do not drop 'ignore' flag when updating a medium (MDV#44930)
  o fix displaying type of altered mirrorlist media (MDV#44930)
- rpmdrake:
  o list plasma applets in GUI package list too (MDV#45835)
  o update GUI package list

Version 5.3 - 17 November 2008, Thierry Vignaud

- drop diagnostics, strict, vars and warnings pragmas (should help MDV#45361)
- edit_urpm_sources:
  o make clearer than DVD, CD-ROM are removable devices (MDV#30842)
  o prevent enabling one to tag media as update media when adding
    whole distro media
- rpmdrake:
  o update GUI package list

Version 5.2.1 - 6 October 2008, Thierry Vignaud

- fix displaying big list of conflicting packages
- fix loading options from chrooted config file
- rpmdrake:
  o update GUI package list

Version 5.2 - 16 October 2008, Thierry Vignaud

- better looking messages when downloading files
- do not read big debug media if 'ignore_debug_media' option is set
- try harder not to have gray wait message dialogs
  (needs drakxtools > 11.67)
- when using --env:
  o do not write chrooted .rpmdrake config file on exit
  o open the chrooted .rpmdrake config file
- gurpmi.addmedia:
  o fix return value when canceling
- rpmdrake:
  o enable to set 'noclean' option (MDV#13522)

Version 5.1 - 10 October 2008, Thierry Vignaud

- do not ask sources on startup
- open help & bug report as user instead of as root (MDV#44497)
- edit_urpm_sources:
  o fix displayed version in 'About' dialog
  o move "add media" menu entries from the "Options" menu into the
    "File" menu (MDV#44601)
- gurpmi.addmedia:
  o handle --urpmi-root
- MandrivaUpdate:
  o make bug importance icons be transparent (MDV#44745)
- rpmdrake:
  o fix too big "media to update" window (MDV#44518)
  o update GUI package list

Version 5 - 1 October 2008, Thierry Vignaud

- rpmdrake:
  o use radio buttons in order to show current search mode 
- edit_urpm_sources:
  o add an "Add media" menu item in order to still able to manually
    choose mirror
  o default to use mirrorlist (MDV#39898)
  o enable to edit mirrorlist media

Version 4.21 - 30 September 2008, Thierry Vignaud

- fix modality/transient hints
  (regression introduced in drakxtools-11.10.2 on 18 August 2008 while
  fixing focus issues)
- workaround crashing when tree selection wasn't realized yet (MDV#41010)
- rpmdrake:
  o only warn once per session when media XML metadata are newer than
    synthesis (MDV#42737)
    (meaning package list & metadata are not syncrhonised and that
    media need updates)

Version 4.20.3 - 24 September 2008, Olivier Blin

- gurpmi.addmedia:
  o fix crash in attempt to set dialog hint

Version 4.20.2 - 23 September 2008, Thierry Vignaud

- gurpmi.addmedia:
  o set dialog hint if drakx-matchbox-window-manager is used
    (for installer)

Version 4.20.1 - 20 September 2008, Thierry Vignaud

- rpmdrake:
  o update GUI package list

Version 4.20 - 20 September 2008, Thierry Vignaud

- basic managment of orphan packages (MDV#43723):
  o display them
  o handle --auto_orphans option
- rpmdrake:
  o remove short lived wait message when changing selected view to
    some 'update' view (security/bugfix/...) since it's too fast
  o remove short lived wait message when reloading the packages list
    (MDV#43955)

Version 4.19 - 17 September 2008, Thierry Vignaud

- do display conflicting packages instead of silently removing them
  (needs urpmi 6.11) (MDV#43501)
- do not display any (truncated) banner when embedded while updating
  media (like non-embedded case) (MDV#43815)
- do not display any banner when embedded while adding media
- rpmdrake:
  o fix listing updates per importance (MDV#41331)
    (regression introduced in 3.95 on 2007-09-14)

Version 4.18.2 - 10 September 2008, Thierry Vignaud

- fix opening the right RPM DB with --env
- workaround looping in URPM->traverse_tag when using --env

Version 4.18.1 - 9 September 2008, Thierry Vignaud

- rpmdrake:
  o fix crashing when selecting all packages (MDV#40025)

Version 4.18 - 9 September 2008, Thierry Vignaud

- all:
  o adapt to urpmi-6.6+ new API (which workaround urpmi API breakage
    MDV#43639)
  o do not ignore some options
  o handle --debug, --env, -q, --quiet, -v & --verbose options
- rpmdrake:
  o display a busy cursor while fetching package list on startup
  o remove short lived wait message when changing selected package
    group (MDV#43320) since it's too fast
  o update GUI package list

Version 4.17 - 4 September 2008, Thierry Vignaud

- all
  o be able to handle --expert
  o do not display a splash text anymore
- edit-urpm-sources:
  o by default do not enable to alter the 'update' flag (unless
    --expert is given)
- gurpmi.addmedia
  o instead of discarding --update when using --distrib, give it a meaning:
    only add media flagged "update"
- rpmdrake:
  o update GUI package list

Version 4.16 - 26 August 2008, Thierry Vignaud

- MandrivaUpdate:
  o fix sorting by type of update
- rpmdrake:
  o make --mode option work again
  o workaround crashing when media's MD5SUM are garbaged (MDV#41352)

Version 4.15 - 25 August 2008, Thierry Vignaud

- rpmdrake:
  o fix a rare crash when canceling (MDV#41970)
  o list meta tasks in GUI package list too (MDV#43114)
  o update GUI package list

Version 4.14 - 7 August 2008, Thierry Vignaud

- gurpmi.addmedia:
  o fix displaying --help
  o fix --urpmi-root option
- rpmdrake:
  o update GUI package list

Version 4.13 - 6 August 2008, Thierry Vignaud

- rpmdrake:
  o behaves like urpmi, allow to continue, thus skipping the bogus
    transaction instead of short-circuiting urpm::main_loop
  o fix some error dialogs not being modal
  o update GUI package list

Version 4.12 - 2 July 2008, Thierry Vignaud

- MandrivaUpdate, rpmdrake:
  o save & restore window size (MDV#25932)
- rpmdrake:
  o make sure searches with no results clear package list (MDV#34898)
  o show 'Group' in details (usefull for search results, MDV#39244)
  o stop packaging rpmdrake-remove (MDV#39485)
  o update GUI package list
 
Version 4.11 - 1 July 2008, Thierry Vignaud

- rpmdrake:
  o always create a search category in tree (MDV#29164)
  o open the search results category once searching is done

Version 4.10 - 24 June 2008, Thierry Vignaud

- MandrivaUpdate: show type of update in mandrivaupdate (fix,
  security, ...) [spec 216]
- rpmdrake:
  o update GUI package list

Version 4.9.16 - 16 June 2008, Thierry Vignaud

- rpmdrake:
  o fix crash in URPM with non standard package names (MDV#41002)
- MandrivaUpdate (MDV#40235):
  o laptop mode (height not bigger than 480): fix test

Version 4.9.15 - 23 May 2008, Thierry Vignaud

- rpmdrake:
  o list basesystem-* as meta-task too
- MandrivaUpdate (MDV#40235):
  o laptop mode (height not bigger than 480):
    * do not display banner
    * reduce Trees' height

Version 4.9.14 - 8 May 2008, Thierry Vignaud

- display URLs of packages (MDV#40571)
- handle gracefully locked RPM DB when trying to install some packages
  (MDV#40244)
- warn only once about priority upgrades (MDV#39737)
- MandrivaUpdate:
  o provide --no-splash option in order to skip splash screen when run
    from mdkapplet (MDV#40366)
- rpmdrake:
  o GUI packages view:
    * adapt to KDE3 moving into /opt
    * include KDE applets into GUI packages view (MDV#40073)
    * update list
  o do not list backports as unselected updates media in rpmdrake, not
    just in MandrivaUpdate (MDV#35009, #40556)
  o fix a crash when default view is unknown (MDV#39626)
  o fix searching when numeric pad's return key is pressed (MDV#40659)

Version 4.9.13 - 3 April 2008, Thierry Vignaud

- updated translations

Version 4.9.12 - 1 April 2008, Thierry Vignaud

- better error message while downloading mirror list (MDV#39675)
- rpmdrake:
  o fix view tooltip (MDV#39694)
  o really make "by update availability" view usable (MDV#39461)
  o split out installed packages if any in "by update availability" view

Version 4.9.11 - 1 April 2008, Thierry Vignaud

- rpmdrake:
  o really remove "--emmbedded <id>" from ARGV when restarting after
    priority upgrades, thus fixing displaying it when run from mcc
    (MDV#39262)

Version 4.9.10 - 30 March 2008, Thierry Vignaud

- rpmdrake:
  o do not crash if package is unknow (MDV#39608)
  o do not crash if config file set empty values for some variables
    (eg: after old buggy gurpmi.addmedia garbaged it) (MDV#39511)
  o fix priority upgrades:
    * do not preselect updates
    * do not recompute them when checking selection consistency just
      before actually installing

Version 4.9.9 - 28 March 2008, Thierry Vignaud

- gurpmi.addmedia:
  o handle --mirrorlist (Anssi)
  o drop 'with' parameter, it didn't work properly anymore (Anssi)
  o do not garbage ~/.rpmdrake
  o fix --distrib
  o fix --distrib --mirrorlist
- rpmdrake:
  o make "by update availability" view usable (MDV#39461)

Version 4.9.8 - 25 March 2008, Thierry Vignaud

- ensure we always restart if needed
- fix displaying garbaged UTF-8 descriptions (eg: cgoban1)
  (instead of displaying "none")
- remove "--emmbedded <id>" from ARGV when restarting after priority
  upgrades, thus fixing displaying it when run from mcc (MDV#39262)
- workaround crashing while performing medium name lookup (MDV#38793)

Version 4.9.7 - 21 March 2008, Thierry Vignaud

- make the focus default on "yes" in yes/no dialogs
  (Emmanuel Blindauer, MDV#39123)

Version 4.9.6 - 20 March 2008, Thierry Vignaud

- rpmdrake:
  o actually restrict "by_leaves" view to current mode (MDV#39090)
  o fix sorting in "by_source" view

Version 4.9.5 - 19 March 2008, Thierry Vignaud

- rpmdrake:
  o readd by_source view (MDV#30557, removed on 2006-07-09)

Version 4.9.4 - 19 March 2008, Thierry Vignaud

- rpmdrake:
  o handle migrating config file from rpmdrake <= 4.9
  o restore sorting packages in 'by_group' view
    (regression introduced in 4.8 while restoring flat mode)

Version 4.9.3 - 19 March 2008, Thierry Vignaud

- rpmdrake:
  o fix crash with cs, cy, eu, hu, nl, pl & zh_CN locales (MDV#39052)
    (regression introduced in 4.9: "move view pull down menu as a real
    menu")

Version 4.9.2 - 18 March 2008, Thierry Vignaud

- restore translation of "Find:" 

Version 4.9.1 - 18 March 2008, Thierry Vignaud

- rpmdrake:
  o add "search:" label again (was removed in 4.8 on 17 March 2008)

Version 4.9 - 18 March 2008, Thierry Vignaud

- fix displaying data about packages when choosing one while resolving
  dependancies (MDV#38854)
  (regression introduced in "display in bold that priority updates
  require restarting" in 4.6 on 10 March 2008)
- rpmdrake:
  o be nice with UMPC screens:
    * enable to shrink package groups tree (MDV#38762)
    * hide banner if screen height is small than 600 px (MDV#38943)
  o move view pull down menu as a real menu

Version 4.8 - 17 March 2008, Thierry Vignaud

- tell the user to "restart system" when needed (needs urpmi-5.14)
- rpmdrake:
  o add tooltips to pull down menus & to search entry
  o allow to sort packages by size (MDV#25417)
  o make find box larger and left-aligned (MDV#38298)
  o restore flat mode (MDV#25770)

Version 4.7 - 17 March 2008, Thierry Vignaud

- consider rpm-summary-non-free when fetching package summaries
- rpmdrake:
  o split filters (all, installed, non installed) from views (GUI,
    meta packages, updates, ...)
  o update GUI package list

Version 4.6.2 - 14 March 2008, Thierry Vignaud

- write configuration before restarting after priority upgrades so
  that we don't ask questions again
- rpmdrake:
  o kill "Mandriva choices"
  o only list priority upgrades if there're
  o warn there're priority upgrades when selecting other packages (MDV#38885)

Version 4.6.1 - 10 March 2008, Thierry Vignaud

- rpmdrake:
  o do not update media unlike MandrivaUpdate
    (regression introduced in 4.4: "remember latest view mode
    (MDV#38138)")

Version 4.6 - 10 March 2008, Thierry Vignaud

- display in bold that priority updates require restarting
- MandrivaUpdate:
  o faster startup if there're priority updates
  o only list priority updates if existing
- rpmdrake:
  o fix listing twice updates from media tagged as update
    (regression introduced in 4.4.2)

Version 4.5 - 7 March 2008, Thierry Vignaud

- reimplement priority upgrade support through urpmi-5.9's
  infrastructure
- when restarting after priority upgrade, free memory used by previous
  rpmdrake instance

Version 4.4.2.3 - 6 March 2008, Thierry Vignaud

- MandrivaUpdate:
  o list again unselect skipped updates (minor regression in 4.4.2)

Version 4.4.2.2 - 6 March 2008, Thierry Vignaud

- fix error introduced in 4.4.2.1

Version 4.4.2.1 - 6 March 2008, Thierry Vignaud

- fix error introduced in 4.4.2

Version 4.4.2 - 6 March 2008, Thierry Vignaud

- MandrivaUpdate:
  o fix not listing all updates (MDV#38595)
    (regression introduced in 4.4 with 'remember state of "Show
    automatically selected packages" (MDV#38138)'
- rpmdrake:
  o don't select all updates by default in rpmdrake (MDV#38611)
    (regression introduced in 4.3.2 with "handle priority upgrade list")

Version 4.4.1 - 5 March 2008, Thierry Vignaud

- fix crash (MDV#38514) due to not having commited all bits of 'remember
  state of "Show automatically selected packages" (MDV#38138)'
- rpmdrake:
  o do not reset search field (MDV#35244)

Version 4.4 - 5 March 2008, Thierry Vignaud

- do not warn about empty package names (MDV#38480)
- rpmdrake:
  o make search box larger (MDV#38298)
  o remember latest view mode (MDV#38138)
  o remember state of "Show automatically selected packages" (MDV#38138)

Version 4.3.2 - 5 March 2008, Thierry Vignaud

- adapt to urpmi-5.7 API:
  o don't want to force a device anymore
  o handle new "cdrom://" type
- handle --test
- handle priority upgrade list
- reuse more urpmi code

Version 4.3.1 - Wed Feb 27 2008, Thierry Vignaud

- rpmdrake's package list:
  o make select checkbox not activatable for base packages instead of
    popup an explanation
  o update icon set

Version 4.3 - Tue Feb 26 2008, Thierry Vignaud

- display size of data to downloaded (MDV#32154)
- make clearer why there's no medium (MDV#37033) (maybe should we just
  not display the medium for installed packages like old_rpmdrake
  did?)
- rpmdrake:
  o remove leading/trailing spacing in searched word when pasting (MDV#23249)
  o package list:
    * hide architecture column on non biarch systems
    * shrink some column headers
    * statut column:
      + add a label to its header
      + move it at end
      + no icon for uninstalled packages

Version 4.2.6 - Mon Feb 25 2008, Thierry Vignaud

- rpmdrake:
  o adapt to urpmi-5.6 API
  o show KDE4 apps in 'GUI packages' view too
- edit-urpm-sources:
  o display proper type for mirror lists

Version 4.2.5 - Sat Feb 23 2008, Thierry Vignaud

- edit-urpm-sources:
  o fix crashing on clicking on "Create media for a whole
    distribution" (regression introduced in rpmdrake-4.2)

Version 4.2.4 - Sat Feb 23 2008, Thierry Vignaud

- MandrivaUpdate:
  o adjust default layout repartition (MDV#36069)

Version 4.2.3 - Fri Feb 22 2008, Thierry Vignaud

- edit-urpm-sources:
  o add a progress bar while downloading mirrors list & enable to
    cancel it (MDV#34630)
  o fix crashing when adding a custom medium (regression introduced in
    4.2)
  o set 'ftp_proxy' with the same value as 'http_proxy' (MDV#31026)

Version 4.2.2 - Fri Feb 22 2008, Thierry Vignaud

- rpmdrake:
  o 'GUI packages' view now include graphical packages from all media

Version 4.2.1 - Thu Feb 21 2008, Thierry Vignaud

- edit-urpm-sources:
  o drop architecture choice 
  o only ask api.mdv.com for 'distrib' style URLs
  o rename "Quit" as "Close" (more consistent when run whithin
    rpmdrake)

Version 4.2 - Thu Feb 21 2008, Thierry Vignaud

- rpmdrake:
  o fix a bug in unused/unsupported parallel mode
  o fix calling help
- edit-urpm-sources:
  o display better formatted list when confirming removing media
  o drop support for "Relative path to synthesis/hdlist"
  o factorize some code
  o fix altering XML info policy on cancel
  o make all global options use combo boxes & simplify code
  o reorder 'File' menu ('Quit' is now last)

Version 4.1 - Tue Feb 19 2008, Thierry Vignaud

- rpmdrake:
  o default to 'GUI packages' view
- edit-urpm-sources:
  o allow user to specify how rpmdrake handles .xml.lzma files (MDV#37390)
  o fix menu entries in br locale
  o prevent rpmdrake to ask adding sources if already done through the
    media manager (MDV#37360)

Version 4.0 - Thu Feb 14 2008, Thierry Vignaud

- rpmdrake:
  o also list as GUI packages those having menu entries into
    /usr/share/applications/kde/ & old /usr/share/applnk/
  o do not quit rpmdrake if urpmi db is locked when running media
    manager

Version 3.144 - Wed Feb 13 2008, Thierry Vignaud

- fix garbaged accents in changelogs when they containing UTF-8 &
  ISO-8859-1 lines) ;
  only remaining ones are when rpm mixes strftime(localtime()) with
  mixed UTF-8/ISO-8859-1 changelogs (eg: 7.0-8mdv2007.0 in vim) ;
  not much we can do w/o fixing all /log in SVN
- rpmdrake:
  o do not crash when a icon is missing (MDV#37700)
  o fix a crash on searching (MDV#37626)
  o revert ignoring disabled backport media in rpmdrake too, not just
    in MandrivaUpdate (MDV#35009) since it's broken

Version 3.143 - Wed Feb 13 2008, Thierry Vignaud

- rpmdrake:
  o skip non existing packages (MDV#36529)
    (eg: when rpmdrake download info.xml.lzma on demand when searching
    or browsing whereas the package was updated in the mean time, the
    info file references the newer package whereas urpmi database only
    know the older version)

Version 3.142 - Wed Feb 13 2008, Thierry Vignaud

- ignore disabled backport media in rpmdrake too, not just in
  MandrivaUpdate (MDV#35009)

Version 3.141 - Tue Feb 12 2008, Thierry Vignaud

- rpmdrake:
  o add list of programs with GUI view (MDV#36486)
  o align search fields to right
  o ensure we never crash on garbaged UTF-8 while querying local files
    (which results in garbaged names in eg vim changelog instead of crashes)
  o move search types menu into Entry
  o only flush X11 queue every 100 packages (seems enough on medium
    machines)
  o really flush X11 queue only every 10 package

Version 3.140 - Mon Feb 11 2008, Thierry Vignaud

- add spacing between search & view widgets
- simplify GUI using Gtk2::Sexy::IconEntry

Version 3.139 - Mon Feb 11 2008, Thierry Vignaud

- downloading XML meta-data if needed while searching

Version 3.138 - Mon Feb 11 2008, Thierry Vignaud

- rpmdrake:
  o fix canceling search in file lists or in descriptions
  o flush X queue only every 10 packages while searching

Version 3.137 - Fri Feb  8 2008, Thierry Vignaud

- fix querying file list of installed packages (regression introduced
  in 3.134: "fix formating of file list of installed packages")
- highlight relevant parts of the changelog as italic (MDV#37208)
- render update fields as italic (type & reason of update)
- separate version and release by '-' in details
- use the same format for changelogs from XML metadata as for those
  coming from old hdlists and from queries on local packages

Version 3.136 - Thu Feb  7 2008, Thierry Vignaud

- adapt to new urpmi API for searching in XML meta-data, thus stopping
  from downloading hdlists, side effect of urpmi-5.x (MDV#37411)

Version 3.135 - Wed Feb  6 2008, Thierry Vignaud

- fix formating of file list of non installed packages

Version 3.134 - Wed Feb  6 2008, Thierry Vignaud

- add a meta packages view (MDV#34510)
- display a message in statusbar while extracting metada from a local
  package
- display size of selection (MDV#34123)
- do not display the download progress dialog when not downloading,
  only a statusbar message
- download & parse the needed XML meta data on demand (aka only
  download & parse the needed ones and not all of them) ;
  always update & fetch 'info' metada on click for descriptions
- fallback to get XML metada when RPM is missing from local medium
- fix extracting info from packages from local media (MDV#37354)
- fix formating of file list of installed packages
- fix setting UTF-8 locale when running rpm for query
- make progres dialogs not be grayed on initial display
- make sure we destroy the XML download progress dialog on error
- stop downloading & parsing the XML meta data on selecting a package (side
  effect of urpmi-5.x)

Version 3.133 - Mon Feb 04 2008, Thierry Vignaud

- fix MandrivaUpdate not ignoring backport media tagged as update (MDV#36654)
- fix a bug in unused/unsupported parallel mode

Version 3.132 - Mon Feb  4 2008, Thierry Vignaud

- display a progress bar while fetching XML metadata (MDV#37264) (needs
  urpmi-5.3)
- do not include architecture in SRPM names, thus fixing extracting
  info for SRPMS and RPM GPG keys
- fix a breakage in unused/unmaintained parralel mode
- fix encoding of rpm error message "package contains no file" (MDV#37428)

Version 3.131 - Wed Jan 30 2008, Thierry Vignaud

- gracefully handle "could not find foobar in" (MDV#37211)

Version 3.130 - Tue Jan 29 2008, Thierry Vignaud

- use urpmi downloader in order to retrieve mirror list from
  api.mandriva.com, instead of forcing curl (thus using urpmi's proxy
  settings)
- drop now useless curl XS binding 
- remove hard require on curl (now relying on urpmi requiring webfetch)
- rpmdrake is now a noarch package

Version 3.129 - Fri Jan 25 2008, Thierry Vignaud

- do not show "backports" in the list of filters if there's no
  inactive backport medium (MDV#37088)
- make sure a wait dialog always got killed (might fix MDV#36921)

Version 3.128 - Wed Jan 23 2008, Thierry Vignaud

- fix a crash on extracting package header (MDV#37122)
- prevent selecting basesystem packages earlier (MDV#36367)

Version 3.127 - Wed Jan 23 2008, Thierry Vignaud

- fix a crash when using empty inactive backport media (MDV#36720)

Version 3.126 - Tue Jan 22 2008, Thierry Vignaud

- adapt to new urpmi-5.x API and use XML info instead of hdlist when
  possible
- typo fix (Shlomi Fish, MDV#36365)

Version 3.125 - Wed Dec 19 2007, Thierry Vignaud

- fix reading urpmi options with new urpmi (MDV#36681)
- renamed Uzbek translations to follow the libc standard (MDV#35090)
- kill re-definition of %buildroot on Pixel's request

Version 3.124 - Thu Dec  6 2007, Thierry Vignaud

- fix sorting by using RPM version sorting logic (MDV#35209)

Version 3.123 - Wed Dec  5 2007, Thierry Vignaud

- ensure message is displayed in status bar instaneously
- explain long operations in status bar
- MandrivaUpdate: fix fetching updates from non update media (MDV#35009)

Version 3.122 - Thu Nov 29 2007, Thierry Vignaud

- edit_urpm_sources: update button labels & message in order to make
  the clearer and more up to date concerning current media structure
  (MDV#35834)
- rpmdrake:
  o drop --pkg-sel and --pkg-nosel broken options (introduced in
    rpmdrake-2.1.2-8mdk on Feb 26 2004 for MandrakeOnline which didn't
    use them since 2007.0)
  o use urpmi default values for 'split-level' and 'split-length' options

Version 3.121 - Fri Nov 23 2007, Thierry Vignaud

- add support for --wait-lock option

Version 3.120 - Tue Oct 23 2007, Thierry Vignaud

- MandrivaUpdate, rpmdrake: split "release" column from "version"
  column

Version 3.119 - Tue Oct 23 2007, Thierry Vignaud

- factorize some code
- edit_urpm_sources:
  o display nicer media with non ASCII characters in names (MDV#34906)
- MandrivaUpdate:
  o ensure mirror list got centered on MandrivaUpdate
  o explain the actual issue when there's no configured update medium
  o nicer names for update media

Version 3.118 - Mon Oct  8 2007, Thierry Vignaud

- MandrivaUpdate: do not add shadow 'in' around Gtk2::SimpleList since mygtk2
  already do it now
- split park-rpmdrake out of rpmdrake

Version 3.117 - Thu Oct  4 2007, Thierry Vignaud

- really report distro release in about dialog

Version 3.116 - Thu Oct  4 2007, Thierry Vignaud

- MandrivaUpdate, edit-urpm-sources:
  o install all update media (Main, restricted, Non-Free, ...)
    (needs urpmi-4.10.14)

Version 3.115 - Thu Oct 04 2007, Thierry Vignaud

- updated translation

Version 3.114 - Thu Oct 04 2007, Thierry Vignaud

- fix 2 untranslated strings in MandrivaUpdate

Version 3.113 - Fri Sep 28 2007, Thierry Vignaud

- do refresh package list after updating media (MDV#34241)

Version 3.112 - Thu Sep 27 2007, Thierry Vignaud

- workaround canceled selection still selected (MDV#34218);
  side effect: no more explanations for (un)selectioned dependencies

Version 3.111 - Wed Sep 26 2007, Thierry Vignaud

- fix sorting

Version 3.110 - Wed Sep 26 2007, Thierry Vignaud

- MandrivaUpdate:
  o display package name, version & arch as 3 separate columns rather
    than raw urpm fullname (for consistency with rpmdrake)
  o enable to sort these columns
  o show columns headers in package list

Version 3.109 - Wed Sep 26 2007, Thierry Vignaud

- prevent not-on-open errors to exec edit-urpmi-sources on next DB open

Version 3.108 - Tue Sep 25 2007, Thierry Vignaud

- kill get_name() hackery

Version 3.107 - Tue Sep 25 2007, Thierry Vignaud

- fix crashing while reporting db is locked (MDV#33921)

Version 3.106 - Mon Sep 24 2007, Thierry Vignaud

- properly account size of update packages (MDV#33851)
- use field code %f for Exec field of gurpmi.addmedia as only local
  files are accepted (anssi)

Version 3.105 - Fri Sep 21 2007, Thierry Vignaud

- make "Reset the selection" work if no group is selected in tree
- properly account size of update packages (MDV#33851)

Version 3.104 - Fri Sep 21 2007, Thierry Vignaud

- searches in summaries in rpmdrake:
  o make them an order of magniture faster
  o make them case insensitive like searches in package names

Version 3.103 - Thu Sep 20 2007, Thierry Vignaud

- revert a change that introduced a regression in MandrivaUpdate (no
  more selecting updates)

Version 3.102 - Fri Sep 20 2007, Thierry Vignaud

- buildrequires intltool
- fix build

Version 3.101 - Thu Sep 19 2007, Thierry Vignaud

- enable to copy/paste transaction errors
- fix a crash on removing packages
- fix counting size of selected package (MDV#32506)
- installing/removing confirmation dialog box:
  o always display "Is it ok to continue?"
  o better formatting
  o display added/removed size
  o make to be installed package & to be removed package lists look
    consistent
- make sure some progress dialogs disapear

Version 3.100 - Wed Sep 19 2007, Thierry Vignaud

- reports staring the browser in status bar rather than with an
  annoying popup
- rpmdrake:
  o do not show banner in media manager
  o enable to sort by state

Version 3.99 - Wed Sep 19 2007, Thierry Vignaud

- ensure perl-URPM returns UTF-8
- make sure MandrivaUpdate & rpmdrake hits the same code paths
- edit-urpm-sources: put menubar above banner

Version 3.98 - Tue Sep 18 2007, Thierry Vignaud

- better looking message for bad signatures
- register application/x-urpmi-media MIME type again (MDV#33436)
- rpmdrake:
  o enable to sort by selected status(MDV#27338)

Version 3.97 - Tue Sep 18 2007, Thierry Vignaud

- make package list be sortable

Version 3.96 - Mon Sep 17 2007, Thierry Vignaud

- hide all but main menu entries
- MandrivaUpdate, rpmdrake:
  o make package names appear in bold
- rpmdrake:
  o force align "name - summary" to the right with RTL languages (MDV#33603)
  o indent expanders' contents (details, file list, changelog)

Version 3.95 - Fri Sep 14 2007, Thierry Vignaud

- display update description for both the ia32 and the x86_64 packages
  (needs urpmi-4.10.10)
- fix reading descriptions from update media (got broken in 3.76 when
  switching ro urpmi for parsing "descriptions" files)
- gurpmi.addmedia:
  o display the URL when bogus
  o enable to use --urpmi-root & co options
  o handle --distrib (MDV#33435)

Version 3.94 - Thu Sep 13 2007, Thierry Vignaud

- force sizing of Labels in order to prevent garbaged wrapping with
  hebrew (MDV#32882)
- run the regular user browser (MDV#31021)

Version 3.93 - Wed Sep 12 2007, Thierry Vignaud

- make sure we reread the db if we added a new repository on startup
- further improve startup time by killing a costly
  urpm::media::configure that is only needed in some cases (MDV#33334)

Version 3.92 - Tue Sep 11 2007, Thierry Vignaud

- startup time (MDV#33334):
  o reduce package enumeration by 10%
  o shrink opening urpmi DB time by 30%
- edit-urpm-sources:
  o enable --urpmi-root options and the like
- rpmdrake:
  o make "Package" column use all available space
  o rephrasing (MDV#33188)

Version 3.91 - Mon Sep 10 2007, Thierry Vignaud

- rpmdrake:
  o do not try to convert into UTF-8, thus fixing a SIGV loop while inserting
    file list of "balazar" package
  o fix a crash (MDV#33283)
  o fix order of columns
  o simplify (since perl-URPM-1.56, perl knows that strings from rpm headers
    are UTF-8)

Version 3.90 - Mon Sep 10 2007, Thierry Vignaud

- edit-urpm-sources:
  o display a banner now that we don't display mcc's banner & menubar
    while embedded (side effect of MDV#33316's fix)

Version 3.89 - Thu Sep  6 2007, Thierry Vignaud

- fix not displaying summaries when already translated and encoded in
  UTF-8 in rpm
- rpmdrake:
  o list media from all backport media (needs urpmi' SVN)
  o package list:
    * add margins in package list's columns
    * add margins to columns titles

Version 3.88 - Thu Sep  6 2007, Thierry Vignaud

- gurpmi.addmedia: do not always adds repository as update medium (MDV#30440)
- rpmdrake: 
  o package list:
    * disable fixed mode
    * display package name, version & arch as 3 separate columns rather
      than raw urpm name; autosize them
    * display summary too
    * ellipsize package name column & make it resizable
    * show columns headers

Version 3.87 - Mon Sep  3 2007, Thierry Vignaud

- MandrivaUpdate:
  o make "Select all" button working (MDV#29892)
- rpmdrake: 
  o kill "help" button in button bar (which was there because we
    didn't have any menubar when embedded) (MDV#29883)

Version 3.86 - Mon Sep  3 2007, Thierry Vignaud

- edit-urpm-sources:
  o swap "add custom" and "add sources" between menubar and buttons bar
- rpmdrake: 
  o fix erasing all existing media when adding new media on first
    startup of rpmdrake (MDV#30883)

Version 3.85 - Tue Sep 03 2007, Thierry Vignaud

- fix a regression introduced in 3.84

Version 3.84 - Thu Aug 30 2007, Thierry Vignaud

- really fix --no-verify-rpm option
- edit-urpm-sources: display media type in media list (MDV#25043)
- rpmdrake: enable to select a package listed in urpmi's skip.list (MDV#31548)

Version 3.83 - Thu Aug 30 2007, Thierry Vignaud

- add --run-as-root option as equivalent to --root
- always enable scrolling when asking question in order to be able to
  copy/paste error messages
- deprecate --root option
- do not disable no-verify-rpm option if set in urpmi.cfg but not
  passed to rpmdrake through command line
- fix --no-verify-rpm option (got broken when introducing
  urpm::main_loop)
- temporary workaround gtk+ regression that mess up when shrinking a
  window (MDV#32613)
- use X-MandrivaLinux-CrossDesktop category in menu entries

Version 3.82 - Tue Aug 28 2007, Thierry Vignaud