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
|
gnome-panel (3.20.1-1) unstable; urgency=medium
* New upstream bugfix release.
* Add build-dependency on libgdm-dev, following configure.ac.
* Refresh fix_typelibdir.patch.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 12 Aug 2016 19:48:49 +0300
gnome-panel (3.20.0-1) unstable; urgency=medium
* New upstream release.
- Fixes wrong synopsis in the man page (closes: #807344).
* Bump libgtk-3-dev build-dependency to 3.19.6, following upstream.
* Bump gtk-doc-tools build-dependency to 1.25, following upstream.
- Drop relax_gtkdoc_check.patch, no longer needed.
* Migrate to automatic dbgsym packages.
- Build-depend on debhelper 9.20160114~ for this.
* Add two new symbols to debian/libpanel-applet0.symbols.
* Bump Standards-Version to 3.9.8, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 24 Apr 2016 14:13:58 +0300
gnome-panel (3.18.2-1) unstable; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 17 Feb 2016 15:09:43 +0300
gnome-panel (3.18.1-1) unstable; urgency=medium
[ Dmitry Shachnev ]
* New upstream release.
* Add libglib2.0-doc and libgtk-3-doc to Build-Depends-Indep for correct
docs linking.
* Move evolution-common from Recommends to Suggests, to avoid pulling in
evolution by default (LP: #1502570).
[ Michael Biebl ]
* Use https:// for Vcs-Browser.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 21 Oct 2015 14:56:43 +0300
gnome-panel (3.18.0-1) unstable; urgency=medium
* New upstream release.
* Drop update_size_hints.patch, applied upstream.
* Drop fix_text_color.patch, applied upstream.
* Update build-dependencies according to configure.ac.
* Add a patch to support building with gtk-doc 1.24: our package has
the needed change cherry-picked (relax_gtkdoc_check.patch).
* Add one new symbol to debian/libpanel-applet0.symbols.
* Drop libtelepathy-glib-dev build-dependency, support dropped upstream.
* Clean debian/rules a bit up.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 29 Sep 2015 12:31:03 +0300
gnome-panel (3.16.1-4) unstable; urgency=medium
* Backport upstream patch to fix text color for in-process applets
with Adwaita and HighContrast themes (fix_text_color.patch).
-- Dmitry Shachnev <mitya57@debian.org> Thu, 23 Jul 2015 20:36:47 +0300
gnome-panel (3.16.1-3) unstable; urgency=medium
* Drop debian/gnome-panel-data.maintscript, it was only needed for
upgrades from pre-wheezy.
* Backport upstream patch to fix crash when changing panel properties
(update_size_hints.patch).
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 21 Jun 2015 17:12:49 +0300
gnome-panel (3.16.1-2) experimental; urgency=medium
* debian/rules: Fix package name in dh_makeshlibs flags.
* Revert the convertion to multi-arch. We cannot yet do that because
paths to applets libraries are read from *.panel_applet files in
/usr/share/gnome-panel, and thus should be architecure-independent.
If in a future release .panel_applet files are moved into /usr/lib,
then we will be able to reconsider this change.
* Restore and refresh fix_typelibdir.patch.
* Move evolution-common from Depends to Recommends, following upstream
change in 3.16.1.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 11 Jun 2015 13:13:27 +0300
gnome-panel (3.16.1-1) experimental; urgency=medium
* New upstream release.
* Bump libgtk-3-dev and libgweather-3-dev build-dependencies, according
to configure.ac.
* Drop obsolete libice-dev and libxt-dev build-dependencies.
* Do not pass --with-in-process-applets=all option to configure, it is
now default.
* Add two new symbols to debian/libpanel-applet0.symbols.
* Convert to multi-arch.
* Drop fix_typelibdir.patch, no longer needed (as we now pass multi-arch
libdir to configure).
* Add debian/clean to fix build twice in a row.
* Remove dependencies on gnome-icon-theme. It has been superseded by
adwaita-icon-theme, which is pulled in by libgtk-3-common anyway.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 28 May 2015 16:14:48 +0300
gnome-panel (3.14.0-2) experimental; urgency=medium
* Recommend gnome-session-flashback 3.14.0, as that is the first
version providing GNOME-Flashback desktop name.
* Rebuild against libical1a.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 09 Jan 2015 19:25:18 +0300
gnome-panel (3.14.0-1) experimental; urgency=medium
* New upstream release.
* Remove gnome-session-f{all,lash}back packages, they have been
moved to the new source package (gnome-flashback).
* Update (build-)dependencies for 3.14.0 (no longer depend on
gconf2, python and network-manager).
* Break old libpanel-applet package and remove obsolete Breaks.
* Remove all previous patches, no longer needed or applied upstream.
* Rename packages for library name change:
- libpanel-applet-4-0 → libpanel-applet0
- libpanel-applet-4-dev → libpanel-applet-dev
- libpanel-applet-4-doc → libpanel-applet-doc
- gir1.2-panelapplet-4.0 → gir1.2-panelapplet-5.0
* Update libpanel-applet0.symbols.
* Pass --enable-gtk-doc to configure, to fix FTBFS twice in a row.
* Add a patch to fix typelibdir location.
* Use NEWS file as upstream changelog.
* Bump Standards-Version to 3.9.6, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 30 Oct 2014 21:34:19 +0300
gnome-panel (3.8.1-7) unstable; urgency=medium
* Fix crash when clicking on clock applet (closes: #769882).
* Require gweather 3.10.1 (where BGO #708586 was fixed).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 17 Nov 2014 12:42:35 +0300
gnome-panel (3.8.1-6) unstable; urgency=medium
* Build-depend on gobject-introspection 1.41.4-1~ as this is
the first version installing files into multiarch location.
* Do not ship Compiz session.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 21 Oct 2014 11:52:46 +0400
gnome-panel (3.8.1-5) unstable; urgency=medium
* Update Homepage URL.
* Add a CSS file for Adwaita and HighContrast themes (closes: #765835).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 20 Oct 2014 18:53:51 +0400
gnome-panel (3.8.1-4) unstable; urgency=medium
* Rename 01_gnome-wm.patch to 01_required_components.patch.
* Add gnome-flashback to required components of Flashback session
(closes: #731239, #762512).
* Make gnome-session-flashback depend on gnome-flashback.
* Add a patch to fix huge icons in the menu.
* Add a patch to make D-Bus calls to gnome-session asynchronous.
* Add gnome-panel-data.maintscript to remove the old configuration
file (closes: #762364).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 26 Sep 2014 13:27:20 +0400
gnome-panel (3.8.1-3) unstable; urgency=medium
* Install typelib file into MA libdir.
-- Iain Lane <iain@orangesquash.org.uk> Thu, 25 Sep 2014 12:58:12 +0100
gnome-panel (3.8.1-2) unstable; urgency=medium
[ Dmitry Shachnev ]
* Depend on evolution-common, the clock applet crashes when it
cannot find the org.gnome.evolution.calendar gsettings schema.
* Drop 11_compat_options.patch. We no longer need to restore saved
sessions from 2011.
* Drop 14_revert_timedate_change.patch. The old DateTimeMechanism
interface no longer exists in gnome-settings-daemon ≥ 3.3.5.
* Bump libwnck-3-dev build-dependency to 3.4.6. This allows us to
drop one hunk from 03_tasklist_orientation.patch.
* Add patch headers to 01_gnome-wm.patch.
[ Alberts Muktupāvels ]
* Fix crash when in-process applet is removed from panel and then
added back to panel. (LP: #1076830)
-- Dmitry Shachnev <mitya57@debian.org> Wed, 03 Sep 2014 19:42:41 +0400
gnome-panel (3.8.1-1) unstable; urgency=medium
* Team upload.
[ Dmitry Shachnev ]
* New upstream release.
* Drop the following patches, applied upstream:
- git_build_with_gweather_39.patch
- git_fix_moving_applets.patch
- git_drop_startupnotify.patch
- 01_menus_rename.patch
- 10_bookmarks_limit.patch
- fix-gweather-crash.patch
* Refresh 14_revert_timedate_change.patch.
* Add myself to Uploaders.
* Remove useless Recommends on gnome-session (closes: #742205).
* Update Homepage URL.
* Bump libgnome-menu-3-dev required version to 3.7.90.
* Bump debhelper compat level to 9.
* Run wrap-and-sort.
[ Josselin Mouette ]
* Make gnome-session-flashback depend on gnome-screensaver, it’s not
really an optional feature and GNOME doesn’t bring it in anymore.
-- Andreas Henriksson <andreas@fatal.se> Sat, 23 Aug 2014 20:59:17 -0700
gnome-panel (3.8.0-3) unstable; urgency=low
[ Dmitry Shachnev ]
* Backport upstream patches to:
- Fix moving applets in the panel (git_fix_moving_applets.patch);
- Fix issues with startup (git_drop_startupnotify.patch).
-- Andreas Henriksson <andreas@fatal.se> Sun, 16 Mar 2014 20:49:08 +0100
gnome-panel (3.8.0-2) unstable; urgency=low
[ Dmitry Shachnev ]
* Add apport hook (taken from Ubuntu).
* Backport upstream patch to fix building with gweather 3.9.2 and
newer versions.
* Move gnome-screensaver from Depends to Recommends (thanks to
Alberts Muktupāvels).
* Drop obsolete breaks on pre-squeeze versions of gnome-session and
gnome-power-manager.
* Bump Standards-Version to 3.9.5, no changes needed.
[ Emilio Pozuelo Monfort ]
* Bump libgweather b-d to ensure we build against the new soname.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 22 Feb 2014 19:17:40 +0100
gnome-panel (3.8.0-1) unstable; urgency=low
[ Fabian Greffrath ]
* Add dependency on nautilus (>= 3.8) to gnome-session-flashback
(Closes: #726575).
[ Dmitry Shachnev ]
* New upstream release.
* Drop patches applied upstream, refresh other patches.
* Bump Standards-Version to 3.9.4, no changes needed.
* Drop debian/scripts/gnome-session-flashback, use the script
provided by upstream instead.
* Link with --as-needed.
* Remove duplicate section declaration in debian/control.
* Add Homepage field.
[ Philipp Kaluza ]
* Remove patches/90-remove_artifact_on_icon_animation.patch
which had been applied upstream since 2012-11-22 (Thanks again
Yannick Gicquel)
* Bump evolution-data-server-dev dependency to 3.5.3.
-- Dmitry Shachnev <mitya57@gmail.com> Wed, 20 Nov 2013 19:25:37 +0400
gnome-panel (3.6.2-2) unstable; urgency=low
* Re-apply patch to fix a crash when adding a location to the clock.
-- Michael Biebl <biebl@debian.org> Mon, 14 Oct 2013 12:55:56 +0200
gnome-panel (3.6.2-1) unstable; urgency=low
[ Jeremy Bicha ]
* New upstream release
* Moved gnome-session-fallback from gnome-session and rename to
gnome-sesion-flashback:
- debian/control.in
- debian/gnome-session-flashback.*
- debian/gnome-wm.desktop
- debian/patches/01_gnome-wm.patch
- debian/patches/02_flashback_desktop.patch
- debian/scripts/
* 00-Add-the-GNOME-Flashback-session.patch:
- Backport patch to add session files for GNOME Flashback
* 00-Fix-the-GNOME-Flashback-session-name.patch:
- Backport another patch to make upgrades smoother
* 00_dont-require-nautilus-classic.patch:
- Backport a patch to not use nautilus-classic
* debian/control.in:
- Have gnome-session-flashback depend on gnome-screensaver per
.session file
- Update build dependencies
* debian/patches/git-build-with-gnome-desktop38*.patch
- Fix build with gnome-desktop3 3.8
* debian/patches/drop-gweather-xml-include.patch:
- Fix build with libgweather 3.8
* Backport several other fixes:
- 90-remove_artifact_on_icon_animation.patch
- 91-fix_panels_in_separate_screens.patch
- 92-fix_sunrise-times.patch
* Dropped patches applied in new version
- 15_avoid_applet_loading_failures.patch
- 16_remove_online_accounts_from_user_menu.patch
- 17_avoid_double_forking.patch
- 19_dconf_api_changes.patch
[ Emilio Pozuelo Monfort ]
* debian/patches/02_flashback_desktop.patch:
+ Patch the right file.
* debian/patches:
+ Stop applying 00_dont-require-nautilus-classic.patch. We need nautilus
running so that the desktop is drawn. Better have nautilus draw the
desktop and your icons than not having the desktop drawn at all.
* debian/control.in:
+ Fix mistake in gnome-session-flashback's Breaks.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 13 Oct 2013 23:43:05 +0200
gnome-panel (3.4.2.1-6) unstable; urgency=low
[ Andreas Henriksson ]
* Add debian/patches/20_eds-api.patch
* Update build-dependencies for above patch:
- Drop libedataserverui-3.0-dev (>= 2.91.2),
- Bump libecal1.2-dev to >= 3.5.3
- Bump libedataserver1.2-dev to >= 3.5.3
- Bump evolution-data-server-dev to >= 3.5.3
* Add debian/patches/clock-schema.patch
- missing schema from the tarball?! Needed by next patch....
* Add debian/patches/clock-applet-modern-gnome-tech.patch
- ports to gsettings, newer gweather, etc...
* debian/gnome-panel-data.install: don't install etc/gconf
* Bump build dependency on libgweather-3-dev to >= 3.5.1 for above patch
* Add debian/patches/drop-gweather-xml-include.patch
* Above changes closes: #722022
[ Sjoerd Simons ]
* debian/patches/fix-gweather-crash.patch:
- Added. Fix a crash when adding a location to the clock
-- Sjoerd Simons <sjoerd@debian.org> Sun, 22 Sep 2013 20:34:42 +0200
gnome-panel (3.4.2.1-5) unstable; urgency=low
* debian/patches/19_dconf_api_changes.patch: Adjust to DConf API changes.
Requires libdconf-dev (>= 0.13.4).
-- Michael Biebl <biebl@debian.org> Tue, 04 Jun 2013 06:52:48 +0200
gnome-panel (3.4.2.1-4) unstable; urgency=low
* Team upload.
* debian/patches/18_fix_force_quit_applet.patch: new patch, makes the
Force-Quit applet work again. (Closes: #698740)
-- Sébastien Villemot <sebastien@debian.org> Mon, 28 Jan 2013 16:11:28 +0100
gnome-panel (3.4.2.1-3) unstable; urgency=low
[ Josselin Mouette ]
* Drop obsolete suggests on epiphany & evolution.
[ Michael Biebl ]
* Avoid double-forking when starting applications via the menu or the Alt-F2
launcher since this breaks pkexec. Closes: #690338
* Rebuild with xz compression.
-- Michael Biebl <biebl@debian.org> Thu, 18 Oct 2012 20:05:21 +0200
gnome-panel (3.4.2.1-2) unstable; urgency=low
[ Michael Biebl ]
* debian/patches/15_avoid_applet_loading_failures.patch: Use on_bus_acquired
instead of on_name_acquired. This helps prevent race conditions at session
starts which can lead to panel applets failing to load. Closes: #649779
* debian/patches/16_remove_online_accounts_from_user_menu.patch: Remove
"Online Accounts" from user menu. It can be easily accessed via the
"System Settings" menu entry and doesn't need to be shown in such a
prominent place.
* Remove hard-coded dependency on gconf2 and rely on ${misc:Depends}
instead.
[ Josselin Mouette ]
* Rename 01_panel_submenus.patch to 01_menus_rename.patch.
+ Do the applications.menu → gnome-applications.menu prefixing in
another necessary place. See LP#798951.
-- Michael Biebl <biebl@debian.org> Tue, 22 May 2012 08:59:20 +0200
gnome-panel (3.4.2.1-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 15 May 2012 17:36:03 +0200
gnome-panel (3.4.1-1) unstable; urgency=low
[ Jeremy Bicha ]
* New upstream release.
* debian/control.in:
- Standards-Version 3.9.3
- Bump minimum gtk, glib, & gdk-pixbuf dependencies
- Bump gnome-menus dependency to 3.1.4 too
- Drop python and python-gconf dependencies since gnome-panel uses gsettings
now and gnome-panel-add doesn't work
- Break libpanel-applet2-0 since it won't work with gnome-panel any more
- Recommend gnome-session-fallback since it's needed to log in
* debian/gnome-panel.install: Don't install gnome-panel-add
* debian/patches/12_panel_icon_size_fixes.patch: Dropped, upstream
* debian/patches/14_revert_timedate_change.patch:
- Revert switch to systemd timedate protocol
[ Michael Biebl ]
* Refresh patches.
* Suggest gnome-user-guide instead of gnome2-user-guide.
* Drop explicit Build-Depends on gir packages.
* Add symbols file for libpanel-applet-4-0.
-- Michael Biebl <biebl@debian.org> Thu, 19 Apr 2012 20:05:30 +0200
gnome-panel (3.2.1-2) unstable; urgency=low
* debian/patches/12_panel_icon_size_fixes.patch:
- Fix icon sizes for application launchers and user menu. Closes: #651336
Patch cherry-picked from upstream Git.
* debian/control.in:
- Change section of gir1.2-panelapplet-4.0 to introspection.
-- Michael Biebl <biebl@debian.org> Thu, 08 Dec 2011 20:59:10 +0100
gnome-panel (3.2.1-1) unstable; urgency=low
* New upstream release.
* debian/control.in:
- Update Build-Depends on libgnome-menu-dev to libgnome-menu-3-dev
(>= 3.1.4).
* debian/libpanel-applet-4-dev.install:
- Stop installing static .a archives, no longer built by default.
* debian/patches/09_default_icons.patch:
- Removed, it no longer applies. The patch relied on a icon shipped by the
Humanity icon theme, so was not really that useful for Debian anyway.
-- Michael Biebl <biebl@debian.org> Sun, 20 Nov 2011 17:56:30 +0100
gnome-panel (3.0.2-1) unstable; urgency=low
[ Josselin Mouette ]
* Add missing epoch on g-c-c breaks. Closes: #626881.
* Require gnome-menus 3.0.1 to enforce a correct layout.
* New upstream release.
+ Fixes crash when not using gnome-session. Closes: #639725.
* 02_launcher_crash.patch: dropped, merged upstream.
* 04_modifier_contextmenu.patch: dropped, fixed upstream.
[ Michael Biebl ]
* Upload to unstable.
* debian/watch:
- Update to version 3.
- Switch to .xz tarballs.
- Don't run uupdate.
* debian/control.in:
- Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.
- Bump Standards-Version to 3.9.2. No further changes.
- Add Vcs-* fields.
* Bump debhelper compatibility level to 8.
- Update Build-Depends on debhelper.
- Strip debian/tmp/ from .install files.
* debian/rules:
- Remove old workaround which is no longer necessary.
-- Michael Biebl <biebl@debian.org> Fri, 14 Oct 2011 07:51:28 +0200
gnome-panel (3.0.0.1-2) experimental; urgency=low
* 04_modifier_contextmenu.patch: new patch. Make the context menu work
even when there are other keys in the modifier mask.
* 11_compat_options.patch: new patch. Support the --screen option for
compatibility, since it used to appear in saved sessions. It
disappeared in GTK3 and prevents such sessions to be restored.
* Drop build-dependencies on dbus-glib.
-- Josselin Mouette <joss@debian.org> Sat, 16 Apr 2011 22:29:02 +0200
gnome-panel (3.0.0.1-1) experimental; urgency=low
[ Josselin Mouette ]
* 02_launcher_crash.patch: new patch. Fix a crash when clicking on
launchers with the compositor enabled.
* Require d-conf 0.7. Closes: #620606.
* Break netspeed < 0.16-2.
[ Gustavo Noronha Silva ]
* Update to 3.0.0.1.
* Enable handling presence on the user menu by enabling telepathy support
+ debian/control:
- build-depend on libtelepathy-glib-dev >= 0.14.0
- add gnome-icon-theme-symbolic dependency to gnome-panel (used for the
presence in the user menu)
+ debian/rules:
- add --enable-telepathy-glib to the configure call
-- Gustavo Noronha Silva <kov@debian.org> Wed, 13 Apr 2011 20:22:06 -0300
gnome-panel (2.91.93-1) experimental; urgency=low
* New upstream pre-release.
* libpanel-applet changes API version.
* Massive update to build-dependencies.
* Simplify dependencies.
* Break gnome-applets < 3.
* Same for control-center and g-s-d.
* Remove gnome-panel-data.post{inst,rm}, should be useless now.
* Remove old maintfiles subdirectory.
* 0001-build-explicitly-link-to-xrandr.patch,
30_crasher_realize.patch, 31_crasher_pager.patch: dropped, merged
upstream.
* 01_panel_submenus.patch, 03_tasklist_orientation.patch: updated
for the new version.
* 02_mixer_applet.patch: dropped, obsolete with new g-s-d.
+ Note that this means experience without PA is radically
diminished.
* 06_clock_permissions.patch: dropped, obsolete.
* 09_default_icons.patch: refreshed.
* Abandon --as-needed, since for an unknown reason it fails to link
the required libX11.
* Update list of installed files.
* Move desktop file to gnome-panel; add corresponding Replaces.
* Add introspection package.
* Update copyright information.
* Distribute the GSettings files, stop distributing the .entries file.
-- Josselin Mouette <joss@debian.org> Thu, 31 Mar 2011 00:14:07 +0530
gnome-panel (2.30.2-4) unstable; urgency=low
* debian/patches/0001-build-explicitly-link-to-xrandr.patch:
+ New patch from upstream git, fix build with --as-needed.
* debian/patches/70_relibtoolize.patch,
debian/patches/99_ltmain_as-needed.patch:
+ Removed in favour of...
* debian/control.in,
debian/rules:
+ Use autoreconf.
* The rebuild picks up a new libecal. Closes: #614654.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 22 Feb 2011 22:53:31 +0000
gnome-panel (2.30.2-3) unstable; urgency=low
* Only recommend menu-xdg.
* 10_bookmarks_limit.patch: new patch. Limit the number of bookmarks
before putting them in a submenu to 8 instead of 5. Closes: #610558.
-- Josselin Mouette <joss@debian.org> Mon, 24 Jan 2011 17:57:39 +0100
gnome-panel (2.30.2-2) unstable; urgency=low
* 03_tasklist_orientation.patch: new patch. Pass the task list
orientation for the applet. It should fix #524117 for good.
Closes: #592781
* Require libwnck 2.30.0-3 for the new API.
* Demote gnome-control-center to Recommends.
* 30_crasher_realize.patch, 31_crasher_pager.patch: stolen upstream.
Fix a pair of crashers that had been here for a long time.
-- Josselin Mouette <joss@debian.org> Sat, 18 Sep 2010 10:31:50 +0200
gnome-panel (2.30.2-1) unstable; urgency=low
* Drop type-handling usage. Closes: #587878.
* Bump standards version accordingly.
* New upstream release.
+ Fixes notification area on Zaphod multi-screen setups.
Closes: #531103.
* 70_relibtoolize.patch: updated for the new version.
-- Josselin Mouette <joss@debian.org> Wed, 07 Jul 2010 22:52:30 +0200
gnome-panel (2.30.0-2) unstable; urgency=low
[ Emilio Pozuelo Monfort ]
* debian/control.in:
- Restore evolution data server support on Hurd.
[ Josselin Mouette ]
* 02_mixer_applet.patch: put back the mixer applet in place. We don’t
ship PhailAudio by default.
-- Josselin Mouette <joss@debian.org> Sat, 29 May 2010 11:00:32 +0200
gnome-panel (2.30.0-1) unstable; urgency=low
[ Sebastian Dröge ]
* New upstream stable release:
+ debian/patches/30_xrandr_crashes.patch,
debian/patches/10_clock_applet_link_gnome_desktop.patch:
- Dropped, merged upstream.
+ debian/patches/70_relibtoolize.patch:
- Regenerated for the new version.
+ debian/control.in:
- Update build dependencies and dependencies.
[ Josselin Mouette ]
* Drop 02_panel_logout.patch to avoid bringing back libgnome
dependencies.
* Drop 03_switch-user_lock.patch and 04_gnome-panel-logout.patch as
well since they depend on it.
* Break gnome-session < 2.26 accordingly.
* Break gnome-control-center < 2.26 and gnome-power-manager < 2.26,
since earlier versions might need it.
* 08_clock_applet_event.patch: dropped, upstream integrated a
different fix.
* Switch to 3.0 source format.
* Remove patch translations, not needed anymore.
-- Josselin Mouette <joss@debian.org> Wed, 05 May 2010 19:55:08 +0200
gnome-panel (2.28.0-3) unstable; urgency=low
[ Josselin Mouette ]
* Fix typos in descriptions. Closes: #557401, #557402.
* Drop build-dependencies on PolicyKit 0.x. Closes: #557886.
[ Emilio Pozuelo Monfort ]
* debian/patches/10_clock_applet_link_gnome_desktop.patch:
- Patch from upstream git, make the clock applet link against
libgnome-desktop. Fixes a FTBFS in the Hurd.
* debian/patches/70_relibtoolize.patch:
- Regenerate on top of the above patch.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 27 Nov 2009 13:40:00 +0100
gnome-panel (2.28.0-2) unstable; urgency=low
[ Josselin Mouette ]
* 30_xrandr_crashes.patch: stolen upstream. Fixes various cases where
the panel would crash because XRandR hasn’t been initialized as
expected. Closes: #549180.
-- Andreas Henriksson <andreas@fatal.se> Mon, 26 Oct 2009 08:41:03 +0100
gnome-panel (2.28.0-1) unstable; urgency=low
* Drop .la file, it’s not referenced anywhere anymore.
* Drop clean-la.mk include as well.
* New upstream release.
* Bump shlibs for libpanel-applet.
* Drop references to gnome-system-tools.
* Update build-dependencies.
* Switch to PolicyKit 1.
* 02_panel_logout.patch, 04_gnome-panel-logout.patch,
06_clock_permissions.patch, 70_relibtoolize.patch: updated for the
new version.
* Depend on python-gnome2, python-gconf for gnome-panel-add.
* Install gnome-panel-add.
* Remove useless b-d-i field.
-- Josselin Mouette <joss@debian.org> Tue, 29 Sep 2009 21:41:06 +0200
gnome-panel (2.26.3-1) unstable; urgency=low
* New upstream release.
* Do not build-depend on network-manager-dev and libnm-util-dev on non-Linux
architectures like kfreebsd-amd64.
-- Julian Andres Klode <jak@debian.org> Tue, 11 Aug 2009 15:12:46 +0200
gnome-panel (2.26.2-1) unstable; urgency=low
* Require gnome-desktop 2.26. Closes: #526680.
* 02_panel_logout.patch: correctly check whether GDM allows shutdown
in case gnome-session 2.26 is not running. Closes: #526807.
* Remove scrollkeeper dependency.
* Add libglib2.0-doc and libgtk2.0-doc to b-d-i to ensure proper
xrefs.
* New upstream release.
+ Removes the need for scrollkeeper, fixes FTBFS in experimental.
* Regenerate 70_relibtoolize.patch.
-- Josselin Mouette <joss@debian.org> Fri, 29 May 2009 11:40:28 +0200
gnome-panel (2.26.0-1) experimental; urgency=low
* New upstream release.
* Bump build-deps on glib/gtk, drop scrollkeeper.
* Bump shlibs to 2.26.0.
* 02_panel_logout.patch: update for new version, using the patch from
Gentoo instead, which allows to support the new gnome-session with a
clean fallback to XSMP/GDM if it is not available.
* 04_gnome-panel-logout.patch: use the new API, so that we actually
talk to gnome-session if possible when invoking gnome-panel-logout.
* 05_clock_dbus.patch: dropped, merged upstream.
* Refresh other patches.
* 70_relibtoolize.patch: updated for the new version.
* Fix debugging package section.
* Update licensing information to match reality.
-- Josselin Mouette <joss@debian.org> Sun, 12 Apr 2009 12:34:28 +0200
gnome-panel (2.24.3-1) unstable; urgency=low
[ Loic Minier ]
* Let gnome-panel suggest evolution and epiphany-browser as their launchers
are part of the default panel layout and gnome-session (>= 2.23.6) | gdm
as gnome-panel attempts to talk to them for shutdown.
[ Josselin Mouette ]
* Standards version is 3.8.1.
* New upstream release.
* 70_relibtoolize.patch: updated for the new version.
* Don’t pass gksu to time-admin anymore.
* 05_clock_dbus.patch: new patch, stolen upstream. Fix the D-Bus
configuration so that the applet can actually talk to the helper.
* 06_clock_permissions.patch: new patch. Fix the security hole in the
PolicyKit configuration that otherwise allows everyone to modify the
system time.
* Recommend policykit-gnome.
-- Josselin Mouette <joss@debian.org> Tue, 07 Apr 2009 12:07:19 +0200
gnome-panel (2.24.2-3) experimental; urgency=low
* Recommend gnome-icon-theme 2.24.
* Bump gnome-menus dependency to match the build-dependency.
* 02_panel_logout.patch: revert the logout code to the version
without the gnome-session 2.24 requirement.
* 03_switch-user_lock.patch, 04_gnome-panel-logout.patch: re-add the
two patches that we applied on top of this old code. Update the
latter to other code changes.
* 70_relibtoolize.patch: regenerated.
* Include patch-translations.mk; bump gnome-pkg-tools requirement to
0.14.
* Use it to add translations for 02_panel_logout.patch.
+ Add panel-logout.c to POTFILES.in so that it is translated.
* Add 72 translations from the gnome-panel 2.22 sources.
-- Josselin Mouette <joss@debian.org> Sun, 28 Dec 2008 03:39:24 +0100
gnome-panel (2.24.2-2) experimental; urgency=low
* 10_requires_private.patch: removed, it breaks applets builds since
these dependencies are actually part of the expected API.
-- Josselin Mouette <joss@debian.org> Fri, 26 Dec 2008 21:49:46 +0100
gnome-panel (2.24.2-1) experimental; urgency=low
[ Emilio Pozuelo Monfort ]
* debian/libpanel-applet2-doc.doc-base: fix section.
[ Josselin Mouette ]
* Relax the build-dependency on scrollkeeper.
[ Loic Minier ]
* Use lt-nl in version compare instead of testing for $2 in postinst.
[ Josselin Mouette ]
* New upstream release.
+ Opens evolution on the correct day. Closes: #366970.
* Update build-dependencies and -dev dependencies accordingly; enable
PolicyKit support.
* 02_switch-user_lock.patch, 03_gnome-panel-logout.patch: dropped,
obsolete.
* 08_clock_applet_event.patch: updated to apply cleanly.
* 10_appointment_colors.patch: dropped, merged upstream.
* 70_relibtoolize.patch: updated for the new version.
* 10_requires_private.patch: new patch; use Requires.private in
libpanel-applet.
* Recommend gvfs for g_app_info_launch_uris to work.
* Don’t build-depend on -1 revisions.
* Install PolicyKit files.
-- Josselin Mouette <joss@debian.org> Fri, 26 Dec 2008 17:52:36 +0100
gnome-panel (2.22.2-1) experimental; urgency=low
[ Josselin Mouette ]
* Don’t install /etc/gconf, it is already in /usr/share/gconf.
* Require libedataserver1.2-dev 1.11.2. Closes: #485602.
[ Sebastian Dröge ]
* New upstream bugfix release:
+ debian/patches/90_dont-cleanup-calendard-backend-when-not-loaded.patch:
- Dropped, merged upstream.
+ debian/patches/70_relibtoolize.patch:
- Updated for the new version.
* debian/control.in:
+ Update Standards-Version to 3.8.0, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Wed, 25 Jun 2008 08:37:53 +0200
gnome-panel (2.22.1.3-2) experimental; urgency=low
* debian/patches/10_appointment_colors.patch
- Added. Fixes appointment colors to be different in evolution and the
clock applet (gbz #503581)
-- Sjoerd Simons <sjoerd@debian.org> Fri, 25 Apr 2008 14:52:44 +0200
gnome-panel (2.22.1.3-1) experimental; urgency=low
[ Loic Minier ]
* Refresh patches 02_switch-user_lock, 03_gnome-panel-logout,
60_caldav-clock-appointments and 99_ltmain_as-needed to apply cleanly.
* New patch, 90_dont-cleanup-calendard-backend-when-not-loaded, avoids
crashing when shutting down evolution forcefully as intlclock tries to
cleanup data from the calendar backend it didn't load; GNOME #378854.
[ Sjoerd Simons ]
* New upstream release
* debian/patches/03_gnome-panel-logout.patch
debian/patches/09_default_icons.patch
debian/patches/70_relibtoolize.patch
debian/patches/90_dont-cleanup-calendard-backend-when-not-loaded.patch
- Refreshed to apply again
* debian/patches/60_caldav-clock-appointments:
- Removed. Merged upstream
- Refreshed
* debian/patches/80_from_bugzilla_use_correct_current_timezone.patch:
- Removed. Merged upstream
[ Sebastian Dröge ]
* New upstream release:
+ Fixes FTBFS with newer libgweather (Closes: #476668).
+ debian/control.in:
- Require libgweather-dev (>= 2.22.1).
-- Sebastian Dröge <slomo@debian.org> Sat, 19 Apr 2008 20:13:26 +0200
gnome-panel (2.22.0-1) experimental; urgency=low
* New upstream stable release:
+ Upload to experimental first because of intrusive changes.
+ debian/control.in:
- Update build dependencies and dependencies.
+ debian/patches/05_missing_includes.patch:
- Dropped, merged upstream.
+ debian/patches/03_gnome-panel-logout.patch,
debian/patches/70_relibtoolize.patch:
- Updated for the new version.
+ debian/gnome-panel-data.install:
- Update paths.
+ debian/patches/08_clock_applet_event.patch:
- Show multi day events not only on the first day. Patch taken from
the Ubuntu package.
+ debian/patches/09_default_icons.patch:
- Show an default icon for .desktop files that don't have one. Patch
taken from the Ubuntu package.
+ debian/patches/80_from_bugzilla_use_correct_current_timezone.patch:
- Use the correct current timezone. Patch taken from the Ubuntu package.
-- Sebastian Dröge <slomo@debian.org> Mon, 17 Mar 2008 13:14:39 +0100
gnome-panel (2.20.3-3) unstable; urgency=low
* 03_gnome-panel-logout.patch: correctly call gtk_main_quit to avoid
leaking processes, d’uh. Closes: #466070.
-- Josselin Mouette <joss@debian.org> Sat, 16 Feb 2008 17:52:30 +0100
gnome-panel (2.20.3-2) unstable; urgency=low
[ Loic Minier ]
* Update patch 60_caldav-clock-appointments to not use a colon for now, it
seems it's encoded in the URI in some way; closes: #454318, #462026,
#463780.
-- Josselin Mouette <joss@debian.org> Sat, 16 Feb 2008 03:03:36 +0100
gnome-panel (2.20.3-1) unstable; urgency=low
[ Loic Minier ]
* New patch, 60_caldav-clock-appointments, allows display of caldav://
calendars in clock applet; thanks Roland Mas; closes: #454318.
[ Josselin Mouette ]
* Switch to quilt for patch handling; build-depend on quilt.
* Refresh patches to apply cleanly.
* 03_gnome-panel-logout.patch: new patch; build a gnome-panel-logout
binary that can be used to invoke the logout window from other
programs.
* 70_relibtoolize.patch: relibtoolize the whole.
* 99_ltmain_as-needed.patch: updated to match the changes.
[ Sebastian Dröge ]
* New upstream release with translation updates only.
* 70_relibtoolize.patch: regenerated.
* Update Standards-Version to 3.7.3, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Sat, 12 Jan 2008 06:56:51 +0100
gnome-panel (2.20.2-2) unstable; urgency=low
* debian/gnome-panel-data.postinst:
+ Don't fail if removing a directory fails because it doesn't exist
(Closes: #453881).
-- Sebastian Dröge <slomo@debian.org> Sun, 02 Dec 2007 11:51:41 +0100
gnome-panel (2.20.2-1) unstable; urgency=low
[ Josselin Mouette ]
* gnome-panel-data.post*: cleanup.
* Remove the menu methods and everything related. Closes: #447474.
* gnome-panel-data.postinst: remove these files upon upgrade, and
purge /var/lib/gnome/Debian as well.
[ Sebastian Dröge ]
* New upstream bugfix release with translation updates.
-- Sebastian Dröge <slomo@debian.org> Sat, 01 Dec 2007 18:24:51 +0100
gnome-panel (2.20.1-1) unstable; urgency=low
* New upstream bugfix release.
-- Sebastian Dröge <slomo@debian.org> Tue, 30 Oct 2007 15:25:18 +0100
gnome-panel (2.20.0.1-3) unstable; urgency=low
* 02_switch-user_lock.patch: don't call gtk_window_get_screen on an
already destroyed object.
-- Josselin Mouette <joss@debian.org> Sat, 13 Oct 2007 00:13:54 +0200
gnome-panel (2.20.0.1-2) unstable; urgency=low
* 02_switch-user_lock.patch: new patch; lock screen when switching
user. Closes: #433259
* Don't run dh_makeshlibs for gnome-panel.
-- Josselin Mouette <joss@debian.org> Sun, 07 Oct 2007 04:16:59 +0200
gnome-panel (2.20.0.1-1) unstable; urgency=low
[ Josselin Mouette ]
* gnome-panel recommends alacarte (closes: #437320, #437335).
[ Sebastian Dröge ]
* New upstream release.
* Upload to unstable, drop check-dist include.
* debian/control.in:
+ Add libglib2.0-dev (>= 2.13.0) dependency to the -dev package (taken
from Ubuntu).
[ Loic Minier ]
* Drop the version in the scrollkeeper dependency.
-- Loic Minier <lool@dooz.org> Sun, 23 Sep 2007 20:41:59 +0200
gnome-panel (2.19.5-1) experimental; urgency=low
* New upstream release series; these are development releases, the API may
still change incompatibly; no API change in this release though.
- Target at experimental; include check-dist.
- Build-dep on libglib2.0-dev (>= 2.13.0), bump up build-dep and dep on
libgtk2.0-dev to >= 2.11.3, bump up libwnck-dev build-dep to >= 2.19.5.
- Build-dep on evolution-data-server-dev for evolution-data-server-1.2.pc
and on libx11-dev for x11.pc.
- Drop patch 02_custom-launcher-icon, fixed differently upstream.
- Drop patch 06_gksu_time_admin and pass --with-clock-time-utility="gksu
time-admin" to configure instead.
- Bump shlibs to >= 2.19.3 (from Ubuntu).
- Update install files and drop obsolete libpanel-applet2-dbg.install.
* Include CDBS' utils.
-- Loic Minier <lool@dooz.org> Wed, 11 Jul 2007 15:06:37 +0200
gnome-panel (2.18.3-1) unstable; urgency=low
* New upstream stable release; no API change; bug fixes and translations.
* Don't pass --dbg-package to dh_strip as we build-dep on a cdbs >= 0.4.37.
-- Loic Minier <lool@dooz.org> Fri, 06 Jul 2007 22:34:43 +0200
gnome-panel (2.18.2-2) unstable; urgency=low
[ Josselin Mouette ]
* 06_gksu_time_admin.patch: check that the command called by gksu
exists (closes: #427714).
* 99_ltmain_as-needed.patch: get --as-needed back to work.
[ Guilherme de S. Pastore ]
* debian/control.in: revamp the package descriptions.
-- Guilherme de S. Pastore <gpastore@debian.org> Mon, 25 Jun 2007 23:00:00 -0300
gnome-panel (2.18.2-1) unstable; urgency=low
* New upstream stable release; no API change.
* Misc cleanups; drop obsolete snippets in maintainer scripts.
-- Loic Minier <lool@dooz.org> Mon, 28 May 2007 16:49:33 +0200
gnome-panel (2.18.1-2) unstable; urgency=low
[ Loic Minier ]
* Fix duplicate build-dep on libgnome-menu-dev.
[ Josselin Mouette ]
* Depend on gnome-icon-theme 2.18 (closes: #420553).
[ Loic Minier ]
* Downgrade the gnome-icon-theme dependency to a Recommends; other icon
themes work fine with gnome-panel 2.18.
[ Sebastian Dröge ]
* 01_panel_submenus.patch: Use correct menu file filenames to allow adding
submenus as menu to the panel (Closes: #422827). Thanks to Andreas Degert
for the patch.
[ Sven Arvidsson ]
* New patch, 06_gksu_time_admin; use gksu to launch time-admin; from Ubuntu
(Closes: #412074)
[ Josselin Mouette ]
* 02_custom-launcher-icon.patch: patch from Ubuntu to provide a
default icon for custom application launchers (closes: #422401).
-- Josselin Mouette <joss@debian.org> Sat, 19 May 2007 17:26:11 +0200
gnome-panel (2.18.1-1) unstable; urgency=low
[ Riccardo Setti ]
* New upstream release; no API change.
- Added libpango1.0-dev as build-dep.
- Built with --with-in-process-applets=all.
- Dropped 01_default-setup_evolution.patch, new version of evolution
doesn't ship a versioned .desktop file.
- Dropped 02_menu_initial_size.patch, applied upstream.
[ Loic Minier ]
* Add a libedataserver1.2-dev (>= 1.2.0) build-dep.
* New upstream stable release; no API change.
* Upload to unstable; drop check-dist include.
* Wrap build-deps and deps.
* Add a ${misc:Depends}.
* Only run update-gconf-defaults if it's available.
* Use http in copyright.
* Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-dep on
cdbs >= 0.4.41.
* Cleanups.
* Take advantage of the applets rename to stop shipping *.la files.
-- Loic Minier <lool@dooz.org> Sun, 22 Apr 2007 18:43:41 +0200
gnome-panel (2.16.3-1) experimental; urgency=low
[ Josselin Mouette ]
* Remove 04_menus_rename.patch.
* Build-depend on libgnome-menus-dev 2.16.1-1.
* 01_default-setup_evolution.patch: call evolution-2.8.desktop, as
evolution.desktop doesn't exist (closes: #404878).
* 02_menu_initial_size.patch: stolen from the SVN. Fix for the arrows
appearing in a menu when installing new applications. See Bugzilla
#331780.
[ Loic Minier ]
* Add a get-orig-source target to retrieve the upstream tarball.
* Include the new check-dist Makefile to prevent accidental uploads to
unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
* New upstream release; no API change.
- Drop patch 10_panel-transparency-after-resolution-change, merged
upstream.
* Bump up libgnomeui-dev build-dep to >= 2.16.0-2 to make the package
autobuildable.
-- Loic Minier <lool@dooz.org> Mon, 12 Mar 2007 11:42:00 +0100
gnome-panel (2.16.2-1) experimental; urgency=low
* New upstream release.
* Require intltool 0.35.0.
* Update build-dependencies and -dev dependencies.
* Build-depend on gtk-doc-tools.
* Generate less strict shlibs for the library.
* Rename the -dbg package to gnome-panel-dbg and include all debugging
symbols in this package.
* Switch to debhelper mode 5, build-depend accordingly.
* Don't generate cdbs build-depends automatically, thanks.
* Use ${gnome:Version} and ${gnome:NextVersion}.
* Call clean-la.mk and gnome-version.mk.
* Require gnome-pkg-tools 0.7.
* Regenerate the Debian manpages to remove French iso-8859-1 text.
-- Josselin Mouette <joss@debian.org> Sun, 3 Dec 2006 23:25:17 +0100
gnome-panel (2.14.3-3) unstable; urgency=low
* Sync with overrides: set libpanel-applet2-dbg's priority to extra.
* Fix upstream version computation to allow "-" in upstream versions.
* New patch, 10_panel-transparency-after-resolution-change, to fix wrong
geometry calculation of the root window after a resolution change which
broke gnome-panel transparency; taken from GNOME #353781; patch by
bugreports@nn7.de; thanks Soeren Sonnenburg.
-- Loic Minier <lool@dooz.org> Fri, 24 Nov 2006 14:31:19 +0100
gnome-panel (2.14.3-2) unstable; urgency=low
[ Josselin Mouette ]
* Move menu-xdg to a Depends: instead of a Recommends:
(closes: #322517).
Rationale: people who don't want the Debian menu can remove "menu"
and the "empty menu" bug has been fixed some time ago.
[ Loic Minier ]
* Only update-gconf-defaults on removal, not on purge. (Closes: #387925)
* Cleanup postinst and postrm.
-- Loic Minier <lool@dooz.org> Sun, 17 Sep 2006 21:11:15 +0200
gnome-panel (2.14.3-1) unstable; urgency=low
* New upstream release; no API changes.
-- Loic Minier <lool@dooz.org> Tue, 8 Aug 2006 11:05:53 +0200
gnome-panel (2.14.2-2) unstable; urgency=low
* Install default entries properly (closes: #369858).
+ rules: move the entries to /usr/share/gconf/defaults.
+ control.in: depend on gconf2 2.14.0-2 instead of ${misc:Depends}.
+ Call update-gconf-defaults in postinst and postrm.
+ gnome-panel-data.postinst: recursively unset the entries in /etc.
From now on, the administrator will be able to use this place to
customize the default panel layout.
-- Josselin Mouette <joss@debian.org> Thu, 3 Aug 2006 00:01:42 +0200
gnome-panel (2.14.2-1) unstable; urgency=low
[ Josselin Mouette ]
* Remove the dependency on this broken gamin package, and remove fam
as well as gnome-menus now use gnome-vfs as a backend
(closes: #349835, #367094, #351093).
[ Loic Minier ]
* Make gnome-panel Recommend evolution-data-server. (Closes: #372567)
* Drop the useless libnspr4-dev build-dep, thanks Steve Langasek.
[debian/control, debian/control.in]
* New upstream release.
- Bump up libgnomevfs2-dev build-dep to >= 2.14.2.
[debian/control, debian/control.in]
* Use ${binary:Version} instead of ${Source-Version}.
* Add ${misc:Depends}.
* Update watch file to track stable series.
-- Loic Minier <lool@dooz.org> Sat, 24 Jun 2006 11:14:15 +0200
gnome-panel (2.14.1-1) unstable; urgency=low
[ Guilherme de S. Pastore ]
* New upstream release.
* debian/control.in, debian/control:
- updated e-mail address.
- updated Standards-Version to 3.7.2.
- updated build dependencies according to configure.in.
- changed build-dep on libnspr-dev to libnspr4-dev to use xulrunner.
* debian/patches/06_sync_clear_documents.patch:
- dropped; libegg updated upstream.
* debian/patches/99_reautogenization.patch:
- dropped; the gnome-panel maintainer runs a Debian derivative.
[ Marco Cabizza ]
* debian/control.in:
- changed build-dep on deprecated libpng3-dev to libpng12-dev.
[ Ross Burton ]
* Build-depend on libecal1.2-dev, not libedata-cal1.2-dev
[ Josselin Mouette ]
* Make the package binNMU-safe.
- Build-depend on dpkg-dev 1.13.19.
- Use ${source:Version}.
* Remove a useless ${Source-Version}.
-- Guilherme de S. Pastore <gpastore@debian.org> Mon, 8 May 2006 15:54:43 -0300
gnome-panel (2.12.3-2) unstable; urgency=low
* Simple rebuild to get rid of references to Xcursor.la and Xrender.la.
-- Loic Minier <lool@dooz.org> Sun, 23 Apr 2006 21:31:36 +0200
gnome-panel (2.12.3-1) unstable; urgency=low
[ Guilherme de S. Pastore ]
* debian/control.in:
- General cleanups
- Added the alternative on x-terminal-emulator back, as gnome-panel
obeys the GNOME prefered applications settings.
[ Loic Minier ]
* Depend on gamin | fam since gnome-vfs deps are not enough to ensure it's
there. (Closes: #353164)
[debian/control, debian/control.in]
[ Sjoerd Simons ]
* New upstream release
* Let libpanel-applet2-dev depend on liborbit2-dev >= 2.12.4. It defines the
new ORBIT2_MAYBE_CONS macro the code generator uses. (Closes: #350883)
* debian/patches/99_reautogenization.patch
+ Updated.
-- Sjoerd Simons <sjoerd@debian.org> Mon, 20 Feb 2006 22:56:36 +0100
gnome-panel (2.12.2-3) unstable; urgency=low
* Upload to unstable (Closes: #347881)
[ Josselin Mouette ]
* Suggest gnome-terminal only, as x-terminal-emulator won't be used
(closes: #291058).
-- Guilherme de S. Pastore <guilherme.pastore@terra.com.br> Fri, 13 Jan 2006 13:40:37 -0200
gnome-panel (2.12.2-2) experimental; urgency=low
* Build-depend on libedataserverui1.2-dev (>= 1.3.0), so control-center and
gnome-panel can't be build with conflicting e-d-s libraries.
-- Sjoerd Simons <sjoerd@debian.org> Tue, 27 Dec 2005 19:54:59 +0100
gnome-panel (2.12.2-1) experimental; urgency=low
* New upstream release
* debian/patches/02_panel-menu-items.c.patch:
- dropped; applied upstream
* Don't build on a separate directory, it breaks gnome-doc-utils
-- Guilherme de S. Pastore <guilherme.pastore@terra.com.br> Wed, 30 Nov 2005 14:30:20 -0200
gnome-panel (2.12.1-2) experimental; urgency=low
* New maintainer
Thanks for all your work, Marc!
* debian/patches/06_sync_clear_documents.patch:
- patch from upstream CVS to force update when Gamin/FAM
notification is not available (Closes: #319800, #330847)
-- Guilherme de S. Pastore <guilherme.pastore@terra.com.br> Fri, 11 Nov 2005 20:54:11 -0200
gnome-panel (2.12.1-1) experimental; urgency=low
[ Gustavo Noronha Silva ]
* New upstream release
* debian/patches/01_defaults_add_notifarea.patch,
debian/patches/02_clockapplet_reload_timezone.patch,
debian/patches/03_libpanel-applet_X11_link_missing.patch
- removed, applied upstream or fixed otherwise
* debian/patches/02_panel-menu-items.c.patch:
- added, from Ubuntu's package packaging patch, which added it
from GNOME's bugzilla #315322
* debian/patches/99_reautogenization.patch:
- updated with:
libtoolize -c -f --automake && aclocal-1.9 && autoheader && \
automake-1.9 -acf && autoconf && rm -rf autom4te.cache
* debian/patches/04_menus_rename.patch:
- updated
* debian/rules:
- disable scrollkeeper on build, based on Ubuntu's change
* debian/watch:
- updated for 2.12 major
* debian/control.in:
- updated Build-Depends according to Ubuntu's package and on the
upstream package's configure.in pkgconfig stuff
[ Guilherme de S. Pastore ]
* debian/control.in:
- moved menu-xdg from Suggests to Recommends (Closes: #315782)
[ Loic Minier ]
* Clarify "Copyright" versus "License".
-- Gustavo Noronha Silva <kov@debian.org> Sat, 29 Oct 2005 19:54:10 -0200
gnome-panel (2.10.2-2) UNRELEASED; urgency=low
* Menu transition, part 1 and 2: move from #!/usr/sbin/install-menu to
#!/usr/bin/install-menu. [debian/gnome-vfolder-user,
debian/gnome-panel-data.menu-method.experimental,
debian/gnome-panel-data.menu-method]
-- Loic Minier <lool@dooz.org> Thu, 20 Oct 2005 16:33:49 +0200
gnome-panel (2.10.2-1) unstable; urgency=low
* New upstream release
* Removed 06_fr_po_fix.patch now included upstream.
* Re-autogen-ized.
* Increased Standards-Version (no changes needed).
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Tue, 28 Jun 2005 23:30:00 +0200
gnome-panel (2.10.1-5) unstable; urgency=medium
* Don't overwrite DEB_CONFIGURE_SCRIPT_ENV completely.
* Remove most replaces and conflicts fields, they are unused now.
* gnome-panel only Recommends: gnome-session.
* gnome-panel-data only Recommends: gnome-panel (breaking a dependency
cycle).
-- Josselin Mouette <joss@debian.org> Sat, 25 Jun 2005 19:45:52 +0200
gnome-panel (2.10.1-4) unstable; urgency=low
* Replaced Suggests on menu by menu-xdg (Closes: #313011).
* Added patch to fix missing includes from Dann Frazier (Closes:
#314692).
* Fix fr translation s/Environnement de bureau/Bureau/ (from GNOME
CVS) (Closes: #313351).
* Now building in 'debian/build/' directory (cleaner).
* Pass --as-needed to LDFLAGS to reduce dependencies if possible.
* Disabled evolution-data-server support on Hurd (thanks to Michael
Banck).
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Sun, 19 Jun 2005 11:51:40 +0200
gnome-panel (2.10.1-3) unstable; urgency=low
* Upload to unstable (Closes: #312609).
* Added patch to solve menu files conflicts with other desktop
environnements (Closes: #307098) (thanks to seb128).
* Removed clean rule hack to work around #299010.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Tue, 7 Jun 2005 23:44:00 +0200
gnome-panel (2.10.1-2) experimental; urgency=low
* Some more build-depends, depends, and suggests update (gnome-about
and new gnome-menus are now dependencies).
* Fixed in 2.10 branch :
+ drawer does not open at the right place on dual-screen display
(Closes: #260480).
+ click repeat rate in calendar view for clock applet is too fast
(Closes: #272885).
+ panel won't scale some SVGs properly (Closes: #275215).
+ translation error in pt-BR (Closes: #293656).
* Removed 'gnome-panel-screenshot' man page (command moved to gnome-
utils).
* Fixed stupid cut-and-paste mistake in 'debian/copyright'.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Sun, 17 Apr 2005 02:25:16 +0200
gnome-panel (2.10.1-1) experimental; urgency=low
* New upstream release
* Removed the following patches now included upstream :
+ 03_french_typo.patch
+ 06_translation_silliness.patch
+ 08_improved_run_in_term_speed.patch
* Mass build-depends and depends update.
* Patched libpanel-applet to correctly link with X11.
* Re-autogen-ized.
* Removed '/usr/share/gnome-panel' not used anymore in 'debian/gnome-
panel-data.install'.
* Updated 'debian/watch'.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Sun, 10 Apr 2005 21:06:35 +0200
gnome-panel (2.8.3-1) unstable; urgency=medium
* Marc Dequènes:
+ Rebuilt with fixed libgnomeui without non-free howl stuff
(Closes: #298887) (thus urgency).
+ Used revised timezone patch for clock applet made by Stephen Gildea
(Closes: #294591).
+ Made load of gconf config quiet (Closes: #293204).
+ Readded 'userprefix' in menu-method as it broke 'favorites://' in
nautilus (Closes: #295091).
+ Added a menu-method to produce a customisable Debian menu made by
Bill Allombert (not activated by default, see README.Debian)
(Closes: #259400).
* Sjoerd Simons:
+ New upstream release
+ debian/patches/07_empty_desktop_keys.patch
- Removed. Merged upstream.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Sun, 13 Mar 2005 11:01:55 +0100
gnome-panel (2.8.2-2) unstable; urgency=medium
* urgency high because menu bug is very bad for sarge, and custom
lauchers are an important feature which is unfortunatly broken.
* menu : (thanks to Bill Allombert)
+ updated suggests and added conflicts for nice woody transition
(Closes: #291085).
+ removed unuseful 'userprefix' in menu-method.
* Added patches :
+ custom lauchers fix from Sjoerd Simons (Closes: #291185).
+ run-application typing completion speed improvements (from
gnomezilla) (Closes: #287120).
* Corrected doc-base index location (Closes: #285650).
* Corrected descriptions to please lintian.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Fri, 28 Jan 2005 23:58:50 +0100
gnome-panel (2.8.2-1) unstable; urgency=low
* New upstream release :
+ no longer respond to delete event (Closes: #254972).
* CDBS Tweaks.
* Regenerated '05_clockapplet_reload_timezone.patch'.
* Regenerated relibtoolize patch.
* Updated policy to 3.6.1.1 (no changes needed).
* Patched or and uk translations : some translators should _really_
learn how to read english.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Fri, 10 Dec 2004 02:31:05 +0100
gnome-panel (2.8.1-2) unstable; urgency=low
* Upload to unstable.
-- Sebastien Bacher <seb128@debian.org> Fri, 19 Nov 2004 13:14:18 +0100
gnome-panel (2.8.1-1) experimental; urgency=low
* New upstream release.
* Removed '03_define_types.patch' not necessary anymore.
* Regenerated relibtoolize patch.
* Reintroduced '04_french_typo.patch' removed by mistake.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Thu, 14 Oct 2004 01:28:31 +0200
gnome-panel (2.8.0.1-1) experimental; urgency=low
* New upstream release :
+ clock applet : fixed padding on a 24px panel (Closes: #258323).
+ fix panel orientation badly set/remembered (Closes: #216997).
+ fix freakiness with autohiding and snap-to-screen-edge
(Closes: #255608).
* [JHM] Added devhelp doc symlink (Closes: #273491)
* Dropped '04_french_typo.patch' now included upstream.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Sun, 3 Oct 2004 15:09:48 +0200
gnome-panel (2.8.0-2) experimental; urgency=low
* Version 2.8.0 corrects :
+ run in terminal works again (Closes: #262487).
+ custom launcher command browser was lacking navigation entries
(Closes: #254443).
* Enabled evolution-data-server support (Closes: #272061).
* Updated versions in 'debian/control'.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Wed, 22 Sep 2004 00:50:02 +0200
gnome-panel (2.8.0-1) experimental; urgency=low
* New upstream release.
* Updated watch file.
* Regenerated relibtoolize patch.
* Made build idempotent (typo patch for 'po/fr.po' was causing
problems)
* Added 'autotools-dev' to build dependencies to take advantage of the
CDBS automatic 'config.*' management.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Tue, 14 Sep 2004 21:16:42 +0200
gnome-panel (2.7.92-1) experimental; urgency=low
* New upstream release :
+ correct pointer detection problem on multiscreen causing several
problems like autihiding not always working (Closes: #178710)
+ new add applet dialog (Closes: #247982) (bug obsoleted)
* NOTICE : panel settings dialog was removed upstream, use gconf
editor instead.
* Build-Depends/Depends versions update (Closes: #261327).
* Ported changes from 2.6.2-2 & 2.6.2-3.
* Removed 03_po_gu_fix.patch now included upstream.
* Patch added to correct a typo in french translation (Closes:
#268618).
* Corrected quoting problem in description (Closes: #244071).
* Patch from gnomezilla to reload timezone in clock applet (Closes:
#61611).
* Regenerated relibtoolize patch.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Sun, 12 Sep 2004 17:57:49 +0200
gnome-panel (2.7.91.1-1) experimental; urgency=low
* New upstream development release.
* [debian/control.in] Bumped libwnck build dependency as per configure.in.
* [debian/patches/02_relibtoolise.patch] Regenerated.
* [debian/gnome-panel-data.install] Removed
debian/tmp/usr/share/control-center-2.0 .
* [debian/rules] Ensure at build time that all symbols are resolvable; make
the linker work a bit harder to speed up dynamic loading.
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Sat, 21 Aug 2004 13:22:47 +0200
gnome-panel (2.7.4.1-1) experimental; urgency=low
* New upstream release :
+ updated translations (Closes: #247982, #247984).
* Regenerated relibtoolize patch.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Wed, 21 Jul 2004 18:24:00 +0200
gnome-panel (2.7.3-1) experimental; urgency=low
* New upstream release
* Regenerated relibtoolize patch.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Tue, 6 Jul 2004 14:38:10 +0200
gnome-panel (2.7.1-1) experimental; urgency=low
* New upstream release
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Thu, 24 Jun 2004 20:30:55 +0200
gnome-panel (2.6.2-1) unstable; urgency=low
* New upstream release.
* Updated some Build-Depends versions.
* Regenerated '02_relibtoolise.patch'.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Sat, 19 Jun 2004 11:14:06 +0200
gnome-panel (2.6.1-4) unstable; urgency=low
* GNOME Team Upload.
* Upload in unstable.
* debian/control.in:
+ Don't Build-Depends on evolution-data-server since this package is
not in unstable
-- Sebastien Bacher <seb128@debian.org> Wed, 26 May 2004 16:38:41 +0200
gnome-panel (2.6.1-3) experimental; urgency=low
* GNOME Team Upload.
* Rebuilt with new evolution-data-server (Closes: #250807).
-- Sebastien Bacher <seb128@debian.org> Tue, 25 May 2004 19:38:22 +0200
gnome-panel (2.6.1-2) experimental; urgency=low
* Added missing Build-Depends on 'libxmu-dev' (Closes: #247285).
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Thu, 20 May 2004 18:39:24 +0200
gnome-panel (2.6.1-1) experimental; urgency=low
* New upstream release :
- fixed visibility problem with solid-color background
(Closes: #179871).
* Recreated and split relibtoolize patch.
* Improved tight versioning rules.
* Deactivated gtk-doc documentation regeneration (see GNOME Policy on
Alioth for details).
* Removing all remaining 'Makefile' files in clean rule.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Wed, 21 Apr 2004 02:47:43 +0200
gnome-panel (2.6.0-5) experimental; urgency=low
* Gustavo Noronha Silva:
- debian/gnome-panel-data.postinst:
+ add a call to gconftool-2 to --load the .entries file which
contains the default panel configuration
-- Gustavo Noronha Silva <kov@debian.org> Thu, 15 Apr 2004 22:14:40 -0300
gnome-panel (2.6.0-4) experimental; urgency=low
* Added missing Replaces for 'libpanel-applet2-dev' on 'gnome-panel-
data' for 2.4->2.6 transition.
* J.H.M. Dassen (Ray):
- [debian/patches/01_relibtoolise.patch] New. Cut down direct
dependencies.
* Jordi Mallach:
- debian/control.in: build-depend on an epoched libglade2-dev.
- debian/rules: don't let clean fail if find returns error.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Fri, 9 Apr 2004 04:02:26 +0200
gnome-panel (2.6.0-3) experimental; urgency=low
* Rebuilt to use 'evolution-data-server'.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Mon, 29 Mar 2004 23:56:27 +0200
gnome-panel (2.6.0-2) experimental; urgency=low
* Corrected 'gnome-applet' tight dependency on 'libpanel-applet2-0'.
* Corrected missing Build-Depends on 'cdbs'.
* Updated Depends & Recommends.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Sun, 28 Mar 2004 23:29:52 +0200
gnome-panel (2.6.0-1) experimental; urgency=low
* New Maintainer (Closes: 238884).
* New upstream release:
+ fix X resource leak (Closes: #235903).
+ fix auto-open behaviour for drawers (Closes: #216577).
* Switched to CDBS.
* Updated Uploaders and using the 'gnome-pkg-tools' pkg.
* Added some Replaces/Conflicts for smoother upgrade.
* Compatibility level switched to 4, and old patches were deactivated.
* Cleaned dirty 'debian/*' made by CM, now using simple and clean CDBS
rules and '*.install' files.
* Improved 'debian/copyright'.
* Removed now unused 'go.uue' to genrate 'go.png'.
* 'debian/control', 'debian/changelog' and 'debian/copyright' are now
UTF-8 encoded.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Sun, 28 Mar 2004 23:21:32 +0200
gnome-panel (2.4.2-4) unstable; urgency=low
* the right
-- Christian Marillat <marillat@debian.org> Fri, 19 Mar 2004 15:39:39 +0100
gnome-panel (2.4.2-3) unstable; urgency=low
* Remove DTD hack and update scrollkeeper dependency to 0.3.14-5
* Add outputencoding="UTF-8" in menu-method file (Closes: #230804)
-- Christian Marillat <marillat@debian.org> Sun, 8 Feb 2004 11:09:26 +0100
gnome-panel (2.4.2-2) unstable; urgency=low
* Suggests gnome-system-tools for gnome-panel, needed if you want to set
up the system time (Closes: #229043)
-- Christian Marillat <marillat@debian.org> Fri, 23 Jan 2004 11:52:49 +0100
gnome-panel (2.4.2-1) unstable; urgency=low
* New upstream release.
* Remove 05_manpage patch, included by upstream
-- Christian Marillat <marillat@debian.org> Fri, 16 Jan 2004 10:22:17 +0100
gnome-panel (2.4.1-7) unstable; urgency=low
* debian/prerm Unregister schemas file from the database.
-- Christian Marillat <marillat@debian.org> Fri, 9 Jan 2004 15:48:01 +0100
gnome-panel (2.4.1-6) unstable; urgency=low
* Add a version (>= 2.4.0) to the gnome-applets recommends (Closes: #223550)
-- Christian Marillat <marillat@debian.org> Wed, 31 Dec 2003 09:21:18 +0100
gnome-panel (2.4.1-5) unstable; urgency=low
* Add a -dbg package for libpanel-applet2 library (Closes: #220734)
* Add missing manpages.
-- Christian Marillat <marillat@debian.org> Sun, 7 Dec 2003 11:05:31 +0100
gnome-panel (2.4.1-4) unstable; urgency=low
* Panel should conflicts with metacity <= 2.6.0 (Closes: #217122)
* Patch from bugzilla to fix duplicate entries in the help message (Closes: #183130)
* debian/control update build-dependecies to GNOME 2.4 packages (Closes: #217497)
-- Christian Marillat <marillat@debian.org> Sat, 25 Oct 2003 09:54:07 +0200
gnome-panel (2.4.1-3) unstable; urgency=low
* Register default panel configuration with gconftool (Closes: #216600)
-- Christian Marillat <marillat@debian.org> Mon, 20 Oct 2003 01:19:20 +0200
gnome-panel (2.4.1-2) unstable; urgency=low
* gnome-panel-data should replaces gnome-desktop-data (Closes: #216458)
* Rebuild to remove liblinc dependency in the -dev package
-- Christian Marillat <marillat@debian.org> Sun, 19 Oct 2003 10:01:36 +0200
gnome-panel (2.4.1-1) unstable; urgency=low
* New upstream release.
* Should suggest a terminal emulator for the run program dialog (Closes: #214650)
* Don't need to depends on xbase-clients
-- Christian Marillat <marillat@debian.org> Sat, 18 Oct 2003 10:36:24 +0200
gnome-panel (2.2.2.2-2) unstable; urgency=low
* Change userprefix in menu-method. You can access user generated Debian
menus with favorites:/// in nautilus
* Use theme folder icons for Debian menus (Closes: #207494)
* New patch to fix manpage entry for gnome-panel (Closes: #212037)
-- Christian Marillat <marillat@debian.org> Sun, 21 Sep 2003 23:33:11 +0200
gnome-panel (2.2.2.2-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Tue, 15 Jul 2003 15:28:51 +0200
gnome-panel (2.2.2.1-2) unstable; urgency=low
* Patch 04_drawer.c to fix a panel crash when a new drawer is added
(Closes: #198695)
-- Christian Marillat <marillat@debian.org> Sat, 28 Jun 2003 14:35:49 +0200
gnome-panel (2.2.2.1-1) unstable; urgency=low
* New upstream release
* Add a gnome-control-center (>= 2.2.2) dependency (Closes: #198371)
* New patch (01) to fix broken translation in bn.po (Closes: #193635)
-- Christian Marillat <marillat@debian.org> Sun, 22 Jun 2003 15:44:58 +0200
gnome-panel (2.2.2-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Fri, 16 May 2003 17:45:28 +0200
gnome-panel (2.2.1-2) unstable; urgency=low
* Only add longtitle as tooltip in Debian menu (Closes: #186697)
* Update section
* Add go icon
-- Christian Marillat <marillat@debian.org> Sun, 13 Apr 2003 08:29:10 +0200
gnome-panel (2.2.1-1.1) unstable; urgency=low
* zero source change NMU to resolve problems on ia64 that binary NMU caused
-- Bdale Garbee <bdale@gag.com> Fri, 11 Apr 2003 02:13:24 -0600
gnome-panel (2.2.1-1) unstable; urgency=low
* New upstream release.
* Remove notification applet patch
-- Christian Marillat <marillat@debian.org> Tue, 11 Mar 2003 15:51:00 +0100
gnome-panel (2.2.0.1-2) unstable; urgency=low
* Patch to fix the notification applet crash (Closes: #180133)
-- Christian Marillat <marillat@debian.org> Mon, 17 Feb 2003 16:04:23 +0100
gnome-panel (2.2.0.1-1) unstable; urgency=low
* New upstream release.
* Remove replaces libpanel-applet-dev in the -dev package.
-- Christian Marillat <marillat@debian.org> Tue, 4 Feb 2003 14:36:28 +0100
gnome-panel (2.2.0-2) unstable; urgency=low
* Conflicts with system-tray-applet (Closes: #178278)
* Add versioned conflicts for gnome-core (Closes: #178401)
-- Christian Marillat <marillat@debian.org> Sat, 25 Jan 2003 23:52:18 +0100
gnome-panel (2.2.0-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Tue, 21 Jan 2003 15:33:47 +0100
gnome-panel (2.1.90.1-1) unstable; urgency=low
* New upstream release.
* Add a quick-lounge-applet (<= 0.98-1) conflicts, this applet crash the panel.
* Launcher are restored properly (Closes: #172385)
* Menu panel doesn't disappears (Closes: #172848)
* Fixes panel hogging the CPU when hide_delay and show_delay are zero (Closes: #174002)
* Fix inbox monitor randomly displays wildly inaccurate info (Closes: #168877)
* debian/control Add yelp and gnome2-user-guide in Suggests for the panel
-- Christian Marillat <marillat@debian.org> Sat, 18 Jan 2003 17:12:02 +0100
gnome-panel (2.0.11-3) unstable; urgency=low
* Bump Standards-Version to 3.5.8
-- Christian Marillat <marillat@debian.org> Sat, 28 Dec 2002 17:55:58 +0100
gnome-panel (2.0.11-2) unstable; urgency=low
* Move libpanel documentation in a -doc package (Closes: #171007)
-- Christian Marillat <marillat@debian.org> Fri, 20 Dec 2002 16:18:00 +0100
gnome-panel (2.0.11-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Fri, 15 Nov 2002 14:40:58 +0100
gnome-panel (2.0.10-2) unstable; urgency=low
* Upload to unstable
* Gnome-hints has been removed (Closes: #152335)
* Fix in clock update (Closes: #156401)
* Applets save their properties (Closes: #135569)
* No more buttons in the tasklist applet (Closes: #116205)
* Docklet has been removed (Closes: #137450)
* Launcher properties are now saved (Closes: #139827)
* Now menus are always sorted (Closes: #150649)
* kmail doesn't crash the panel (Closes: #146706)
* The tasklist isn't dynamic resizable (Closes: #89752)
* No more problem with windowmaker and the panel (Closes: #94592)
* No more duplicate entrie in the main menu (Closes: #97473)
* No more memory leak in the tasklist applet (Closes: #103880)
* Tasklist doen't display app titles (Closes: #112059)
* Netscape entry menu is fixed (Closes: #135992)
* No more "Fill window thumbnails" option in tasklist (Closes: #151134)
* Tooltips in the arrows panel are correctly displayed (Closes: #113642)
* Completion in run dialog work with ctrl-TAB (Closes: #75665)
* gmenu has been removed (Closes: #95014)
* menu have a mozilla entry (if mozilla is present) (Closes: #135993)
* Xemacs.desktop has been removed (Closes: #148500)
-- Christian Marillat <marillat@debian.org> Mon, 28 Oct 2002 16:08:15 +0100
gnome-panel (2.0.10-1) experimental; urgency=low
* New upstream release.
* gnome-panel should depends on xbase-clients for xrdb
* Add build-dependency for xbase-clients
-- Christian Marillat <marillat@debian.org> Mon, 14 Oct 2002 16:47:55 +0200
gnome-panel (2.0.9-4) experimental; urgency=low
* Upload with original tarball
-- Christian Marillat <marillat@debian.org> Sun, 29 Sep 2002 17:45:08 +0200
gnome-panel2 (2.0.9-3) experimental; urgency=low
* Upload without the 2 suffix
-- Christian Marillat <marillat@debian.org> Sat, 28 Sep 2002 18:46:17 +0200
gnome-panel2 (2.0.9-2) experimental; urgency=low
* Add libmpg3-dev in build-depends (Closes: #160758)
* Update to standards version 3.5.7
* -dev package should depends on the same lib version
-- Christian Marillat <marillat@debian.org> Mon, 16 Sep 2002 11:35:00 +0200
gnome-panel2 (2.0.9-1) experimental; urgency=low
* New upstream release.
* Update lignome-ui-dev dependencies to 2.0.5-2
-- Christian Marillat <marillat@debian.org> Fri, 6 Sep 2002 13:50:51 +0200
gnome-panel2 (2.0.8-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Thu, 5 Sep 2002 19:00:46 +0200
gnome-panel2 (2.0.7-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Tue, 27 Aug 2002 11:19:52 +0200
gnome-panel2 (2.0.6-2) experimental; urgency=low
* Add scrollkeeper in build-depends
* Build against the latest libgnomevfs2-dev 2.0.2-4
-- Christian Marillat <marillat@debian.org> Fri, 16 Aug 2002 17:36:42 +0200
gnome-panel2 (2.0.6-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 12 Aug 2002 19:44:49 +0200
gnome-panel2 (2.0.5-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Thu, 8 Aug 2002 16:46:21 +0200
gnome-panel2 (2.0.4-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 5 Aug 2002 19:35:26 +0200
gnome-panel2 (2.0.3-2) experimental; urgency=low
* Recompiled against the latest lignome-vfs to remove libssl dependency.
-- Christian Marillat <marillat@debian.org> Fri, 2 Aug 2002 17:14:51 +0200
gnome-panel2 (2.0.3-1) experimental; urgency=low
* New upstream release.
* Remove gmenu entry in menu file (Closes: #153213)
* debian/menu s/panel/gnome-panel/
-- Christian Marillat <marillat@debian.org> Tue, 30 Jul 2002 17:08:21 +0200
gnome-panel2 (2.0.2-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 15 Jul 2002 15:31:05 +0200
gnome-panel2 (2.0.1-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 17 Jun 2002 16:07:40 +0200
gnome-panel2 (2.0.0-1) experimental; urgency=low
* New upstream release.
* Replace "Distribution menu" by "Debian menu"
-- Christian Marillat <marillat@debian.org> Mon, 10 Jun 2002 16:51:50 +0200
gnome-panel2 (1.5.24-2) experimental; urgency=low
* Build against the latest libraries.
-- Christian Marillat <marillat@debian.org> Sun, 9 Jun 2002 18:29:23 +0200
gnome-panel2 (1.5.24-1) experimental; urgency=low
* New upstream release.
* Remove call to Internet DTD (Closes: #148899)
* Call scrollkeeper-update in gnome-panel-data2.postrm
-- Christian Marillat <marillat@debian.org> Tue, 4 Jun 2002 17:22:35 +0200
gnome-panel2 (1.5.23-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Tue, 28 May 2002 15:51:18 +0200
gnome-panel2 (1.5.22-2) experimental; urgency=low
* debian/rules Add GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 in install target.
* gnome-panel2 should depends on gnome-desktop-data
* debian/gnome-panel-data2.postinst check if schemas files are present
before calling gconftool-2
-- Christian Marillat <marillat@debian.org> Mon, 27 May 2002 16:01:57 +0200
gnome-panel2 (1.5.22-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 20 May 2002 21:58:18 +0200
gnome-panel2 (1.5.21-1) experimental; urgency=low
* New upstream release.
* Add support for DEB_HOST_GNU_TYPE DEB_BUILD_GNU_TYPE and
DEB_BUILD_OPTIONS
-- Christian Marillat <marillat@debian.org> Wed, 15 May 2002 20:39:24 +0200
gnome-panel2 (1.5.20-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Sun, 12 May 2002 14:25:08 +0200
gnome-panel2 (1.5.19-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 29 Apr 2002 20:51:20 +0200
gnome-panel2 (1.5.18-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 22 Apr 2002 16:41:41 +0200
gnome-panel2 (1.5.17-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Wed, 17 Apr 2002 15:46:23 +0200
gnome-panel2 (1.5.16-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 1 Apr 2002 22:40:37 +0200
gnome-panel2 (1.5.15-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Fri, 29 Mar 2002 17:01:04 +0100
gnome-panel2 (1.5.12-2) experimental; urgency=low
* Add libwnck-dev in build-depends (Closes: #137954)
-- Christian Marillat <marillat@debian.org> Wed, 13 Mar 2002 10:51:00 +0100
gnome-panel2 (1.5.12-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Tue, 5 Mar 2002 14:47:36 +0100
gnome-panel2 (1.5.11-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Tue, 26 Feb 2002 15:37:43 +0100
gnome-panel2 (1.5.10-2) experimental; urgency=low
* Replace gettext by intltoo in build-depends
-- Christian Marillat <marillat@debian.org> Mon, 25 Feb 2002 15:40:43 +0100
gnome-panel2 (1.5.10-1) experimental; urgency=low
* new upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 18 Feb 2002 22:06:48 +0100
gnome-panel2 (1.5.9-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Fri, 15 Feb 2002 00:38:51 +0100
gnome-panel2 (1.5.7-1) experimental; urgency=low
* New upstrema release.
-- Christian Marillat <marillat@debian.org> Tue, 5 Feb 2002 14:41:01 +0100
gnome-core2 (1.5.4-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Sun, 20 Jan 2002 16:21:40 +0100
gnome-core (1.4.0.4-16) unstable; urgency=low
* Fix typo in gnome-terminal.wrapper (Closes: #127768)
* Remove gnome-hint patche (Closes: #121390, #129184)
* debian/control Replace libpng-dev by libpng2-dev in Build-Depends
(Closes: #128377)
-- Christian Marillat <marillat@debian.org> Mon, 14 Jan 2002 15:04:52 +0100
gnome-core (1.4.0.4-15) unstable; urgency=low
* Build against the latest gnome-libs to update the libzvt2 dependency
(Closes: #127309, #127271)
* debian/control Replace libpng2-dev by libpng-dev in Build-Depends.
* debian/control Build-depends on libzvt-dev (>= 1.4.1.2-9)
-- Christian Marillat <marillat@debian.org> Tue, 1 Jan 2002 15:27:43 +0100
gnome-core (1.4.0.4-14) unstable; urgency=low
* Fix typo in gnome-terminal.1 (Closes: #123073)
* Fix base page for doc-base in libpanel-applet-dev package.
* Fix typo in gnome-help documentation (Closes: #126566)
* Apply patch to allows meta functionnality in gnome-terminal (Closes: #50427)
-- Christian Marillat <marillat@debian.org> Thu, 27 Dec 2001 14:47:36 +0100
gnome-core (1.4.0.4-13) unstable; urgency=low
* Default font for gnome-terminal is "fixed" only (Closes: #117126)
* Patch against gnome-hint.c Don't use gettext for font descriptor
(Closes: #116606)
* Patch against gnome-about/Makefile.am to use new gdk_pixbuf include path
(Closes: #120312)
* Revert my change on logout.c Only root can shutdown/reboot from the
panel (Closes: #119316, #120127)
-- Christian Marillat <marillat@debian.org> Tue, 20 Nov 2001 11:36:05 +0100
gnome-core (1.4.0.4-12) unstable; urgency=low
* gnome-wm honour --default-wm (Closes: #115668)
* Build against the latest gnome-libs
-- Christian Marillat <marillat@debian.org> Sun, 21 Oct 2001 14:11:19 +0200
gnome-core (1.4.0.4-11) unstable; urgency=low
* debian/control lynx comeback in Recommends (Closes: #114142)
* debian/control replaces xml-i18n-tools by intltool (Closes: #115024)
* Fix automake 1.5 errors. Thanks to Denis Barbier (Closes: #114369)
* Build against the latest orbit (Closes: #115309)
-- Christian Marillat <marillat@debian.org> Fri, 12 Oct 2001 10:46:49 +0200
gnome-core (1.4.0.4-10) unstable; urgency=low
* Fix typo in panel/panel.hints (Closes: #113590)
* Replace lynx by w3m (Closes: #113613)
* Move gnome-terminal.desktop in gnome-terminal package (Closes: #113736)
* Move gnome-help.desktop in gnome-help package
* debian:control Add Replaces: gnome-panel-data (<= 1.4.0.4-9) for above
* Patch against gsm/logout.c Now you can reboot/halt your machine from the
panel. This only work for root, because shutdown doesn't understand the
-a option. Read README.debian in gnome-panel package.
* debian/rules Remove less files in clean target (Closes: #114020)
-- Christian Marillat <marillat@debian.org> Mon, 1 Oct 2001 11:34:06 +0200
gnome-core (1.4.0.4-9) unstable; urgency=low
* Add Debian menu for panel and gmenu (Closes: #112176)
* Remove /var/lib/gnome on purge (Closes: #113005)
* Remove /etc/gnome/config on purge (Closes: #112994)
* Remove /etc/gnome on purge (Closes: #112995)
* debian/control replace cygnus-stylesheets by docbook-utils
-- Christian Marillat <marillat@debian.org> Mon, 24 Sep 2001 18:39:19 +0200
gnome-core (1.4.0.4-8) unstable; urgency=high
* High urgency, because the current release in testing has a missing
dependency on libpanel-applet0 and the panel package doesn't work if
libpanel-applet0 isn't installed (Closes: #111517)
* debian/control for gnome-help, move lynx from depends to recommends
(Closes: #109652)
* debian/control gnome-panel suggests fortune-mod (Closes: #110865)
* debian/control gnome-help suggests gnome-users-guide not
gnome-users-guide-en (Closes: #111200)
* Don't change cursor color (Closes: #97697)
* Change default font for gnome-terminal (Closes: #111319)
-- Christian Marillat <marillat@debian.org> Fri, 7 Sep 2001 15:06:07 +0200
gnome-core (1.4.0.4-7) unstable; urgency=low
* Fix path in gnome-session.1 (Closes: #107724)
* debian/*.sgml Use docbook 4.1
* debian/control gnome-help-data Replaces gnome-terminal (<= 1.0.55-2)
(CLoses: #107948)
-- Christian Marillat <marillat@debian.org> Wed, 8 Aug 2001 08:07:56 +0200
gnome-core (1.4.0.4-6) unstable; urgency=low
* debian/rules for dh_makeshlibs replace libcapplet0 by libpanel-applet0
(Closes: #105772)
-- Christian Marillat <marillat@debian.org> Wed, 18 Jul 2001 19:02:59 +0200
gnome-core (1.4.0.4-5) unstable; urgency=low
* Patch against gnome-edit to use EDITOR if the default gnome editor is
unavailable.
* Remove gnome-wm patch, and move the patched file in debian/
* debian/gnome-wm Try to exec $WINDOW_MANAGER before x-window-manager
(Closes: #103430
* New patch from Michael Urman to hide task names in tasklist_applet
(Closes: #104587)
-- Christian Marillat <marillat@debian.org> Sat, 14 Jul 2001 16:58:12 +0200
gnome-core (1.4.0.4-4) unstable; urgency=low
* Gnome-help Provides: man-browser, www-browser, info-browser
* Switch to debhelper V3
* Change libraries versionning to (>= 1.4.0.2-3) instead of the latest
package number.
* Build-depends on groff-base instead of groff
-- Christian Marillat <marillat@debian.org> Fri, 22 Jun 2001 17:02:37 +0200
gnome-core (1.4.0.4-3) unstable; urgency=low
* New patch: Allows to save/load the keyboard secure state (Closes: #83028)
* New patch: Remove a warning in configure
* gnome-help replace gnome-panel-data (Closes: #99499)
* Build-depends on xml-i18n-tools (>= 0.8.4.cvs.20010530-1) (Close: #98784)
-- Christian Marillat <marillat@debian.org> Sat, 2 Jun 2001 14:41:45 +0200
gnome-core (1.4.0.4-2) unstable; urgency=low
* New patch: Replace Distribution by Debian in configuration dialog box.
* New patch: Upstream patch to allow Debian menu in default configuration.
* New patch: Fix some wrong path.
* Move gnome-feedback doc from gnome-help-data to gnome-core.
-- Christian Marillat <marillat@debian.org> Tue, 15 May 2001 15:36:51 +0200
gnome-core (1.4.0.4-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Wed, 9 May 2001 23:56:27 +0200
gnome-core (1.4.0.3-2) unstable; urgency=low
* Remove debugging code (/tmp/languages file)
-- Christian Marillat <marillat@debian.org> Mon, 7 May 2001 16:48:18 +0200
gnome-core (1.4.0.3-1) unstable; urgency=low
* New upstream release.
* New: tooltips for long task names in tasklist_applet (Closes: #63898)
-- Christian Marillat <marillat@debian.org> Thu, 3 May 2001 15:51:58 +0200
gnome-core (1.4.0.2-3) unstable; urgency=low
* Fix wrong dif.gz file (Closes: #94499)
* Build against the latest lignome-dev (Closes: #95301, #95691)
* gnome-terminal should depends on gnome-bin (Closes: #95498)
* Doesn't build against gtkhtml this break fonts displaying (Closes: #92187)
-- Christian Marillat <marillat@debian.org> Tue, 1 May 2001 11:03:14 +0200
gnome-core (1.4.0.2-2) unstable; urgency=low
* New/old patch against manpages, never applied by upstream.
* gnome-help depends on lynx.
* Use x-terminal-emulator in gnome-download instead of xterm.
* Move gnome-convert and gnome-download from gnome-core to gnome-help.
* Move gnome-login-check from gnome-core to gnome-session.
* Move gnome-panel-add-launcher from gnome-core to gnome-panel.
* Move sesion-properties* from gnome-core to gnome-session.
* debian/control Add Replaces for the changes above.
* Write manpages (Closes: #87085)
-- Christian Marillat <marillat@debian.org> Tue, 17 Apr 2001 18:54:15 +0200
gnome-core (1.4.0.2-1) unstable; urgency=low
* New upstream release.
* Build-depends on latest gettext (Closes: #93198)
* Icon box in menu editor is back (Closes: #91938)
* Build-depends on latest xml-i18n-tools and libgnome-dev
-- Christian Marillat <marillat@debian.org> Wed, 11 Apr 2001 15:16:20 +0200
gnome-core (1.4.0.1-2) unstable; urgency=low
* Build depends on versionned gettext 0.10.35-17 (Closes: #93198)
* Write manpage for gnome-session and add docbook-to-man in build-depnds
* Write manpages for gnome-help (Closes: #87089)
-- Christian Marillat <marillat@debian.org> Sat, 7 Apr 2001 15:52:40 +0200
gnome-core (1.4.0.1-1) unstable; urgency=low
* New upstream release.
* debian/gnome-terminal.wrapper change -T by -t (Closes: #90847)
* debian/gnome-session.README.debian remove references to .xsession. This
is now obsolete by the new x-session-manager scheme.
-- Christian Marillat <marillat@debian.org> Sun, 1 Apr 2001 15:01:51 +0200
gnome-core (1.4.0-2) unstable; urgency=low
* Build depends on libglade-gnome0-dev (>= 0.16-1) (Closes: #90416)
* debian/control Add Build-Conflicts: libgtkhtml-dev (>= 0.7-1) (Closes: #90700)
-- Christian Marillat <marillat@debian.org> Thu, 22 Mar 2001 16:44:12 +0100
gnome-core (1.4.0-1) unstable; urgency=low
* New upstream release.
* Gnome-core replaces gnome-control-center 1.2.3-1 (Closes: #90124)
* Remove manpages patche included by upstream.
* gnome-session don't always saves session on logout (Closes: #89630)
* Can add a launcher in the panel (Closes: #90018)
* Deskguide don't crashes on Fill with mini-images (Closes: #86952)
* Deskguide don't fail to run (Closes: #89769)
* Pager applet don't fail to run (Closes: #89025)
-- Christian Marillat <marillat@debian.org> Mon, 19 Mar 2001 13:01:26 +0100
gnome-core (1.3.1-2) unstable; urgency=low
* Remove taslisk-applet manpage (Closes: #88994)
* New patch against gnome-terminal.1 (Closes: #89005)
* Move /usr/lib/libtasklist_applet.so in libpanel-applet0
(Closes: #89053, #89008, #89012, #89091, #89003)
* Gnome-terminal replace gnome-help-data (<= 1.0.55-2) (Closes: #87910)
-- Christian Marillat <marillat@debian.org> Sat, 10 Mar 2001 10:45:14 +0100
gnome-core (1.3.1-1) unstable; urgency=low
* New upstream release.
* Removed default.session patch
* debian/control Add Replaces: gnome-control-center (<= 1.2.2-10), because
the session-properties-capplet is now in this package.
* debian/{postinst,prerm} Call scrollkeeper
* debian/control Add scrollkeeper, xml-i18n-tools and libglade-gnome0-dev in
build-depends and scrollkeeper in depends for gnome-core
* Menu and laucnh keys works now (Closes: #86955)
* Dead keys work in gnome-terminal (Closes: #63102)
* Gnome-terminal isn't broken (Closes: #86752)
* New patch htmlurl.h (This file was broken by upstream author)
* XFMail doesn't crash the tasklist applet in this release (Closes: #88515)
* debian/gnome-core.menu New file for the session properties capplet
-- Christian Marillat <marillat@debian.org> Mon, 5 Mar 2001 11:40:15 +0100
gnome-core (1.2.4-11) unstable; urgency=low
* Update (again) the Build-depends field (Closes: #87419)
* Add a debian directory for the gnome-help-browser and add suggest doc-base
for gnome-help. Now we can watch debian documentation registered with doc-base.
* Add a lintian override file for libpanel-applet0
-- Christian Marillat <marillat@debian.org> Sun, 25 Feb 2001 16:14:09 +0100
gnome-core (1.2.4-10) unstable; urgency=low
* Update the Build-depends field (Closes: #86441, #87419)
* Call update-alternatives only in remove (gnome-terminal, gnome-session) (Closes: #87327, #87328)
-- Christian Marillat <marillat@debian.org> Sat, 24 Feb 2001 18:03:20 +0100
gnome-core (1.2.4-9) unstable; urgency=low
* Remove abandonned /etc/CORBA/servers/bad-applet.goad (Closes: #84950)
* Build against the latest gnome-libs (1.2.11) (Close: #85932)
-- Christian Marillat <marillat@debian.org> Wed, 14 Feb 2001 13:49:26 +0100
gnome-core (1.2.4-8) unstable; urgency=low
* debian/control Add Replaces: gnome-help-data (<< 1.0.55-2) for
gnome-help (Closes: #80974)
* debian/gnome-help.mime Rewrote (Closes: #82891)
* debian/control gnome-core depends on gnome-bin (Closes: #82951)
* Wrote gnome-panel.README.Debian (Closes: #82954)
-- Christian Marillat <marillat@debian.org> Mon, 22 Jan 2001 16:04:58 +0100
gnome-core (1.2.4-7) unstable; urgency=low
* Added gnome-bin (>= 1.2.0) in gnome-session Depends field (Closes: #80589, #80595, #80733)
-- Christian Marillat <marillat@debian.org> Wed, 27 Dec 2000 19:24:08 +0100
gnome-core (1.2.4-6) unstable; urgency=low
* Apply patch to gnome-run to call x-terminal-emulator (Closes: #80219)
* debian/gnome-terminal.wrapper This is -t not -T close (Closes: #80405)
-- Christian Marillat <marillat@debian.org> Sun, 24 Dec 2000 03:27:12 +0100
gnome-core (1.2.4-5) unstable; urgency=low
* Install gnome-terminal.wrapper as x-terminal-emulator and remove
debian/patches/gnome-terminal.dpatch (Closes: 64326)
Thanks to Eric Gillespie, Jr. <epg@progenylinux.com>
* Add Recommends: gnome-applets on gnome-panel (Closes: #72208)
* gnome-sesion provides x-session-manager and install alternative (Closes: #60667)
* Added hints=Gnome for all menu files.
-- Christian Marillat <marillat@debian.org> Wed, 20 Dec 2000 23:19:55 +0100
gnome-core (1.2.4-4) unstable; urgency=low
* Call x-terminal-emulator in gnome-wm and add depends on the latest debianutils
for gnome-session. Thanks to Joseph Carter <knghtbrd@progeny.com> for the file
(Closes: #79776)
* Rewrote default.session patch
* Add patch form Doug Larrick <doug@ties.org> for gwmthumbnail.c (Closes: #78550)
-- Christian Marillat <marillat@debian.org> Sun, 17 Dec 2000 12:04:54 +0100
gnome-core (1.2.4-3) unstable; urgency=low
* Change gnome-help.mime to call the right file (Closes: #77986)
Thanks Malcolm Parsons <malcolm@ivywell.screaming.net> for the patch.
* Patch gsm/default.in (two entries with same id) (Closes: #78276)
Thanks to Normal User <gohmandj@mrs.umn.edu> (Nice name)
* Move gnome-control-center from Depends to Suggests.
* Remove libgtkhtml-dev from Build-Depends (Closes: #79527)
-- Christian Marillat <marillat@debian.org> Wed, 13 Dec 2000 18:01:34 +0100
gnome-core (1.2.4-2) unstable; urgency=low
* Remove README and NEWS files (Closes: #77250)
* Disable thumbnails by default in deskguide_applet (Closes: #77205)
* debian/rules --with-window-manager is now sawfish (was x-window-manager)
and rewrote debian/patches/gnome-wm.dpatch to remove x-window-manager (Closes: #77401)
* Should close this old bug (Closes: #51198)
* Patch gnome-edit to use x-terminal-emulator instead of xterm.
-- Christian Marillat <marillat@debian.org> Mon, 20 Nov 2000 11:35:55 +0100
gnome-core (1.2.4-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Thu, 16 Nov 2000 00:43:15 +0100
gnome-core (1.2.3.1-1) unstable; urgency=low
* New upstream release.
* Add gnome-help example and manpage in gnome-help package (Closes: #49977)
* This release should close these old bugs (Closes: #60561, #60768, #45053)
* Gnome-panel don't use all CPU time (Closes: #75251, #60209)
* Remove gmenu patch included by upstream.
-- Christian Marillat <marillat@debian.org> Wed, 8 Nov 2000 17:09:42 +0100
gnome-core (1.2.3-1) unstable; urgency=low
* New upstream release.
* Debian menus aren't empty (Closes: #70470)
* Launcher can find icon (Closes: #62502)
-- Christian Marillat <marillat@debian.org> Tue, 24 Oct 2000 15:51:11 +0200
gnome-core (1.2.2.1-3) unstable; urgency=low
* Add gnome-terminal.prerm for update-alternatives --remove (Closes: #74451)
* Patch gnome-terminal to accept -T option (Closes: #74450)
* Move README.debian in gnome-session package (Closes: #60440)
* mesg work in gnome-terminal (Closes: #71728)
* Upstream fix these old bugs in Gnome-terminal
Problem with menubar (Closes: #57516)
Problem with console-apt Closes: #60079)
Problem with screen (Closes: #50156)
* Binaries don't should go in /usr/X11R6/bin (Closes: #24031)
Quoting Debian policy :
"Packages using the X Window System should abide by the FHS standard"
"whenever possible; they should install binaries, libraries, manual"
"pages, and other files in FHS-mandated locations wherever possible."
"This means that files must not be installed into /usr/X11R6/bin/'"
* hostname isn't harcoded (Closes: #72536)
* Error messages mention Lynx (Closes: #62216)
* Display correctly deskuse.html (Closes: #49974)
* Add patch from malcolm <malcolm@ivywell.screaming.net> (Closes: #64820)
-- Christian Marillat <marillat@debian.org> Sat, 14 Oct 2000 23:39:49 +0200
gnome-core (1.2.2.1-2) unstable; urgency=low
* Typo in debian/gnome-terminal.postinst
* Add gnome-terminal manpage (Closes: #69188)
* Closes: #63103 already closed in 1.2.1-0.2 (typo in debian/changelog)
* Gnome-terminal write to /var/run/utmp (Closes: #59053)
* delete/backspace keys works (Closes: #57198)
* Install GnomeHelp file in /etc/gnome/config (Closes: #73012)
* Convert png icons in xpm for Debian menu.
* Rearange documentation for dhelp (Closes: #56672)
-- Christian Marillat <marillat@debian.org> Thu, 5 Oct 2000 00:59:44 +0200
gnome-core (1.2.2.1-1) unstable; urgency=low
* New upstream release.
* Patch all manpages (Closes: #70009)
* gnome-panel 1.0.55-2.0.1 (sparc) is now installable (Closes: #69075, #71570)
* gmenu don't jam up all translations (Closes: #46446)
* panel remember its configuration between session
(Closes: #47734, #54190)
* Icons are now centered (Closes: #63868)
* Bugs closed by previous NMU in gnome-panel (Closes: #40036, #52584, #54755,
#58278, #61083, #69428))
* libgen_util_applet.so installed in 1.2.1-0.2 (Closes: #69463)
* debian/control remove Conflicts: asclock (Closes: #52077)
* gnome-help 1.0.55-2.0.1 (sparc) is now installable (Closes: #69356)
* Bugs closed by previous NMU in gnome-help (Closes: #49734, #56081, #58679, #58973)
* debian/control move gmc from Recommends to Suggests (Closes: #59415)
* The first search in gnome-wm search is x-window-manager
(Closes: #50940, #65969, #62143)
* Bug closed in 1.2.2-1 (README.debian in gnome-session package) (Closes: #66219)
* Bugs closed by previous NMU in gnome-terminal
(Closes: #64579, #63592, #63332, #56584, #55477, #54428)
* gnome-terminal provide x-terminal-emulator (Closes: #61805, #53994, #56225)
-- Christian Marillat <marillat@debian.org> Wed, 27 Sep 2000 16:02:16 +0200
gnome-core (1.2.2-1) unstable; urgency=low
* New maintainer, thanks James.
* New upstream release.
* Switch to debhelper V2
* Move README.debian in gnome-session package (Closes: #65235) and
update this file (Closes: #71339)
* Bug closed in 1.2.1-0.2 (Install missing libraries) (Closes: #69590, #70483)
* Bugs closed in 1.2.1-0.1 (typo close instead closes) (Closes: #53764, #54050)
* Remove gtkhtml patch.
* The desk guide show thumbnail (Closes: #72359)
* Missing package under sparc (Closes: #71438)
* debian/control add Conflicts: libgnome32 (<< 1.2.0-1) for gnome-panel (Closes: #72039)
* Added icons in Debian menu.
* Eject in drivemount check if '-u' is available (Closes: #63954)
* Patch gmenu to find Debian menu.
-- Christian Marillat <marillat@debian.org> Tue, 26 Sep 2000 17:34:23 +0200
gnome-core (1.2.1-0.2) unstable; urgency=low
* NMU.
* Install these libraries libfish_applet.so libgen_util_applet.so
libpanel_status.so (Closes: #69428, #69590)
* Copy latest gnome aclocal in macros/ and run macros/autogen.sh
This is needed to build gnome-help-browser against libgtkhtml4.
* In debian/control
gnome-session depends on gnome-panel (>= ${Source-Version}).
gnome-help depends on gnome-core (>= 1.2.0-0.1) no Source-Version.
gnome-terminal don't depends on gnome-core.
* URL's are clickable in gnome-terminal (Closes: 63103).
* debian/gnome-panel.undocumented removed printer_applet.1
* Cut and paste work in gnome-terminal (Closes: #63592).
-- Christian Marillat <marillat@debian.org> Wed, 23 Aug 2000 21:23:36 +0200
gnome-core (1.2.1-0.1) unstable; urgency=low
* New upstream release (Closes: #58806, #66467)
* NMU.
* Standards-Version to 3.1.1.1 Added Build-depends field.
* Removed patches: dialer, drivemount-floppy, modemlights, term,
help-browser, debian-menu, url-match.
* Added patches: gtkhtml.
* Build against libgtkhtml3. Closes: #58679, #36806, #49734
* Default manpath and infopath are wrong. Closes: #56081
* gmenu segfaults. Close: #53764, #54050
* gnome-panel: panel no longer works. Closes: #58278
* gnome-panel: gnomepager-applet should put braces around. Closes: #52584
* Backspace and delete work correctly. Closes: #54428
* TERM never select xterm-debian. Closes: #56584, #55477, #64579
* Disable arrows option is now saved. Closes: #54755
* No more files in /usr/share. Closes: #61083
* Show debian menus. Closes: #66214
* New help documentation for panel. Closes: #40036
* Gnome-terminal write to /var/run/utmp. Closes: #59053
* gnome-terminal provide x-terminal-emulator. Closes: #61805, #56225
* README.Debian is here. Closes: #65235
-- Christian Marillat <marillat@debian.org> Tue, 25 Jul 2000 19:09:21 +0200
gnome-core (1.0.55-2) frozen unstable; urgency=low
* Make x-window-manager run first by gnome-wm script to conform to
debian policy (Closes: #61617) (This is an important bug)
-- James LewisMoss <dres@debian.org> Sun, 21 May 2000 19:31:19 -0400
gnome-core (1.0.55-1) unstable; urgency=low
* New upstream.
-- James LewisMoss <dres@debian.org> Sun, 2 Jan 2000 07:32:36 -0500
gnome-core (1.0.54-2) unstable; urgency=low
* Fix the gnome-pager forgets size settings bug (was saved to wrong
section). Closes: #49839, #46845.
-- James LewisMoss <dres@debian.org> Fri, 12 Nov 1999 07:54:46 -0500
gnome-core (1.0.54-1) unstable; urgency=low
* New upstream.
-- James LewisMoss <dres@debian.org> Thu, 4 Nov 1999 23:20:14 -0500
gnome-core (1.0.53-4) unstable; urgency=low
* New maintainer.
-- James LewisMoss <dres@debian.org> Mon, 25 Oct 1999 23:17:31 -0400
gnome-core (1.0.53-3) unstable; urgency=low
* Ok, I made a mistake by setgiding gnome-terminal to
utmp. Reverted the change. Closes: #47960
-- Raphael Hertzog <hertzog@debian.org> Mon, 18 Oct 1999 19:17:27 +0200
gnome-core (1.0.53-2) unstable; urgency=low
* gnome-session does launch a default window-manager. It does launch
gnome-wm if no other information has been found. gnome-wm now
reads the list of window managers from /etc/X11/window-managers
once it has tried gnome compliant wm. Closes: #38347, #47370
* Patched gnome-terminal. TERM=xterm-debian again ... actually this
closes: #47552, #44960, #41065
* gnome-terminal is now setgid utmp and can thus register itself
in the UTMP database. Closes: #40507
* The URL match does now accept % characters. Closes: #47281
* libpanel-applet0.postinst check for the changelog.gz mysteriously
staying around. Closes: #45871
* Unreproducable bugs without answer from the submitter.
Closes: #41195, #42865
-- Raphael Hertzog <hertzog@debian.org> Sat, 16 Oct 1999 19:52:38 +0200
gnome-core (1.0.53-1) unstable; urgency=low
* New upstream version.
* gnome-session does now depend on gnome-panel and recommends
gmc (both are needed for a full Gnome desktop).
* gnome-terminal does not have a border. Closes: #38972
-- Raphael Hertzog <hertzog@debian.org> Tue, 12 Oct 1999 21:17:58 +0200
gnome-core (1.0.52-1) unstable; urgency=low
* New maintainer. Steve said that he wanted to give away some of
his packages. I've asked to take gnome-core, he never replied, so
I'm taking it but I will give it back to him if he wanted to
keep it. In the meantime I can better manage bugs with my name
in the Maintainer field.
* New upstream version.
-- Raphael Hertzog <hertzog@debian.org> Mon, 4 Oct 1999 21:28:18 +0200
gnome-core (1.0.50-0.1) unstable; urgency=low
* New upstream version.
* NMU again.
-- Raphael Hertzog <hertzog@debian.org> Thu, 30 Sep 1999 22:10:03 +0200
gnome-core (1.0.41-0.1) unstable; urgency=low
* New upstream version.
* NMU again.
-- Raphael Hertzog <hertzog@debian.org> Mon, 27 Sep 1999 13:10:31 +0200
gnome-core (1.0.9-0.1) unstable; urgency=low
* New upstream version. Closes: #43253, #44098
* Apply patches before configuring (and relaunch automake && autoconf
because one of the patches is applied on Makefile.am).
* NMU. Thanks to Christian Marillat <marillat@alpes-net.fr> for his work.
* Imlib bug corrected: closes: #39085
* X11 binaries don't have to go /usr/X11R6/bin. Closes: #24031
* The panel does start correctly wihout complaining about a
missing name service. Closes: #39380, #39634, #40478
* The panel doesn't consume all CPU resources. Closes: #30654
* The panel launches apps from where it has been launched itself.
Closes: #32319
* The panel keeps the settings. Closes: #37052, #40579, #43496
* Old core dump corrected upstream. Closes: #39400, #40328, #42167
Closes: #44344, #44724, #44732, #44759, #44773
* Bug in menu-method, not in gnome-panel. Already reported against
menu. Closes: #40089
* cdplayer_applet works again. Closes: #42192
* gnome pager works well: Closes: #42499, #42610
* modem_lights draws itself correctly. Closes: #43861, #45055
* The dialer applets doesn't exit when stopping while
not yet connected. Closes: #45287
* No more Debian menu in the panel. Closes: #41040
* GnomeICU works with this panel. Closes: #39626, #39515
* gnome-panel-data conflicts with asclock.
Closes: #40712, #40715, #40808, #41430
A better solution will be needed. Maybe put asclock in his own
package or create a asclock-data package that will be shared.
* Updated the modemlights patch. Closes: #43512
* Added a patch for gnome-wm. Closes: #38366
* Move lib{gkb,fish}_applet.so files to libgnome-applet0 (those are
not libraries to be linked with, just simple modules). Closes: #38596
* Asclock works well without xearth (the code still mentions xearth
however). Closes: #40530
* New patch (help-browser) for changing the default MANPATH and INFOPATH in
gnome-help-browser.c Closes: #41452
* Moved help-browser to the new "Help" menu section.
* Added gnome-help.mime. Closes: #42205
* Gnome-session does launch gnome-panel ! (I suppose that it failed
to launch since panel was broken). Closes: #42937
* gnome-sesion doesn't core dump. Closes: #36640
* The terminal does remember the TERM var. Closes: #43067
* The terminal keeps its size when dragging the manu bar in and out.
Closes: #44762
* The menu section of gnome-terminal corrected. Closes: #37635
-- Raphael Hertzog <hertzog@debian.org> Wed, 22 Sep 1999 13:24:34 +0200
gnome-core (1.0.7-1) unstable; urgency=low
* New upstream version.
* Removed "term" patch
-- Steve Haslam <araqnid@debian.org> Mon, 28 Jun 1999 01:36:31 +0100
gnome-core (1.0.6-2) unstable; urgency=low
* debian-menu.dpatch: created to fix guessing Debian menus
(/etc/menu-methods/gnome-panel now) and to make Debian menus the default
instead of GNOME system menus.
* gnome-help now suggests gnome-users-guide-en (closes: #35724)
* /etc/menu-methods/gnome-panel now creates .directory files and searches
/usr/X11R6/include/X11/pixmaps for menu icons
-- Steve Haslam <araqnid@debian.org> Sun, 13 Jun 1999 15:28:52 +0100
gnome-core (1.0.6-1) unstable; urgency=low
* New upstream version.
-- Steve Haslam <araqnid@debian.org> Sat, 5 Jun 1999 12:57:08 +0100
gnome-core (1.0.5-3) unstable; urgency=low
* debian/gnome-terminal.menu: managed to lose change mentioned in last
revision. Replaced.
* debian/gnome-core.undocumented: removed gnome-wm.1 (it was in
gnome-session.undocumented too).
-- Steve Haslam <araqnid@debian.org> Mon, 31 May 1999 19:15:54 +0100
gnome-core (1.0.5-2) unstable; urgency=low
* debian/gnome-terminal.menu: changed section to XShells (Bug#37635)
* debian/rules: added gnome-wm and gnome-edit to dh_undocumented call
(Bug#37632)
* debian/gnome.menu-method: added patch to honour needs=text (Bug#36928)
from Decklin Foster
* Call dh_strip when making libpanel-applet-dev (Closes: Bug#31244)
* Removed /usr/share/gnome/apps/Debian symlink, (closes: #38100)
* Sanified build system a la gnome-libs
* debian/control: made gnome-help, gnome-help-data and gnome-panel-data
packages.
-- Steve Haslam <araqnid@debian.org> Sun, 23 May 1999 14:35:44 +0100
gnome-core (1.0.5-1) unstable; urgency=low
* New maintainer.
-- Steve Haslam <araqnid@debian.org> Tue, 11 May 1999 01:01:12 +0100
gnome-core (1.0.5-0.2) unstable; urgency=low
* gnome-panel.files.in: added asclock themes, libgkb_applet.a
* gnome-core.files.in: added gnome-wm, gnome-edit
* term.dpatch: gnome-terminal TERM to xterm-debian rather than xterm
* gsm/Makefile.am: put default.session, default.wm in /etc/gnome
* debian/gnome-session.conffiles.in: added above two files
* debian/gnome-session.files.in: updated this too
-- Steve Haslam <araqnid@debian.org> Sun, 18 Apr 1999 16:47:23 +0100
gnome-core (1.0.5-0.1) unstable; urgency=low
* Non-maintainer upload
* New upstream version
-- Steve Haslam <araqnid@debian.org> Thu, 15 Apr 1999 23:22:23 +0100
gnome-core (1.0.1-0.3) unstable; urgency=low
* Weehay! More broken dependencies. This one libghttp -1.1,
a bogus package that only ever existed on my machine.
-- Jules Bean <jules@debian.org> Mon, 8 Mar 1999 08:24:00 +0000
gnome-core (1.0.1-0.2) unstable; urgency=low
* Another NMU, this time to fix bogus dependencies on libgtop0
and libglib1.1
-- Jules Bean <jules@debian.org> Sun, 7 Mar 1999 14:21:12 +0000
gnome-core (1.0.1-0.1) unstable; urgency=low
* NMU for GNOME-1.0
* Hacked to patch SIGPIPE bug
* Don't delete GIFs in rules
-- Jules Bean <jules@debian.org> Fri, 5 Mar 1999 18:36:29 +0100
gnome-core (0.99.99pre1.0.0-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Fri, 26 Feb 1999 23:18:10 -0800
gnome-core (0.99.3.2-4) unstable; urgency=low
* Recompiled yet again - dual dependency on libglib.
Fixes: BUG#32510
-- Jim Pick <jim@jimpick.com> Thu, 28 Jan 1999 00:00:22 -0800
gnome-core (0.99.3.2-3) unstable; urgency=low
* Recompiled again to due to dependencies.
-- Jim Pick <jim@jimpick.com> Sun, 24 Jan 1999 01:10:07 -0800
gnome-core (0.99.3.2-2) unstable; urgency=low
* Recompiled with libgnome 0.99.4.
-- Jim Pick <jim@jimpick.com> Fri, 22 Jan 1999 16:44:45 -0800
gnome-core (0.99.3.2-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Wed, 20 Jan 1999 11:42:46 -0800
gnome-core (0.30-2) frozen unstable; urgency=low
* Recompiled with new libs.
* Fixed reference to /usr/X11R6 in README.Debian.
* Added warnings (Gnome is ALPHA).
* Patched dialer_applet to use pon/poff.
* Patched drivemount_applet to default to /floppy.
-- Jim Pick <jim@jimpick.com> Tue, 24 Nov 1998 10:56:08 -0800
gnome-core (0.30-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Thu, 24 Sep 1998 21:28:02 -0700
gnome-core (0.28.1-1) unstable; urgency=low
* New upstream release.
* Hopefully fixes panel applet bug.
-- Jim Pick <jim@jimpick.com> Wed, 19 Aug 1998 20:12:25 -0700
gnome-core (0.28-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Mon, 17 Aug 1998 12:59:26 -0700
gnome-core (0.27-1) unstable; urgency=low
* New upstream release.
* Added /usr/doc/gnome
-- Jim Pick <jim@jimpick.com> Sat, 15 Aug 1998 14:21:06 -0700
gnome-core (0.25-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Thu, 6 Aug 1998 22:51:22 -0700
gnome-core (0.20-2) unstable; urgency=low
* Added Debian menu-method for gnome-panel. Fixed Bug #24025
(Thanks to Ray Dassen for reporting the bug, and Riku Voipio
who wrote the menu method for Gnome 0.12)
-- Jim Pick <jim@jimpick.com> Wed, 22 Jul 1998 20:22:00 -0700
gnome-core (0.20-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Mon, 8 Jun 1998 12:00:08 -0700
gnome-core (0.13-1) unstable; urgency=low
* Initial Release.
-- Jim Pick <jim@jimpick.com> Mon, 16 Mar 1998 15:27:43 -0800
|