1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936
|
pidgin (2.13.0-2) unstable; urgency=low
[ gregor herrmann ]
* Fix "Switch from network-manager-dev to libnm-dev":
- update build dependency
- add patch for configure.ac and a constant in libpurple/network.c
Thanks to Michael Biebl for the recipe to fix this bug.
(Closes: #862678)
-- Ari Pollak <ari@debian.org> Sat, 21 Jul 2018 01:54:18 +0200
pidgin (2.13.0-1) unstable; urgency=medium
* New upstream version 2.13.0
* Drop obsolete pidgin-dbg package
* Drop obsolete Debian menu file
-- Ari Pollak <ari@debian.org> Sun, 11 Mar 2018 15:54:57 -0400
pidgin (2.12.0-1) unstable; urgency=high
* New upstream version 2.12.0
- Fixes malformed XML security issue (CVE-2017-2640).
- Removes Myspace, MSN, MXit, and Yahoo protocols
-- Ari Pollak <ari@debian.org> Thu, 09 Mar 2017 21:07:27 -0500
pidgin (2.11.0-3) unstable; urgency=medium
* Build architecture-independent packages correctly (Closes: #838571)
-- Ari Pollak <ari@debian.org> Sun, 25 Sep 2016 21:08:30 -0400
pidgin (2.11.0-2) unstable; urgency=low
* Drop build dependency on hardening-wrapper (Closes: #836645)
* Remove gconf2 dependency since the gconf URL handler file is not used by
GNOME anymore (Closes: #402431, #823913)
-- Ari Pollak <ari@debian.org> Sun, 11 Sep 2016 19:06:53 -0400
pidgin (2.11.0-1) unstable; urgency=high
* Update description (Closes: #561624)
* Imported Upstream version 2.11.0
* Fixes many security issues in MXit
-- Ari Pollak <ari@debian.org> Sun, 19 Jun 2016 14:25:31 -0400
pidgin (2.10.12-1) unstable; urgency=low
[ Peter Spiess-Knafl ]
* Fix extra end tag in prefs.xml (Closes: #589631)
[ Ari Pollak ]
* Imported upstream version 2.10.12 (Closes: #822782)
* Install upstream appdata (Closes: #785759)
-- Ari Pollak <ari@debian.org> Fri, 23 Oct 2015 21:29:28 -0400
pidgin (2.10.11-1.1) unstable; urgency=medium
[ Bernhard Schmidt ]
* GStreamer 1.0 and libfarstream 0.2 support (Closes: #785926, #731122)
- Import patch from Fedora and refresh for Debian
+ almost the same patch has been in Ubuntu for a while
- run autoreconf through dh-autoreconf/cdbs
- Bump Build-Depends for src:pidgin
- Bump Recommends for pidgin
+ replace gstreamer0.10-ffmpeg with gstreamer1.0-libav
[ Ari Pollak ]
* Add gstreamer0.10-pulseaudio as alternative to gstreamer0.10-alsa
in Recommends (Closes: #772116)
[ Sebastian Dröge ]
* Non-Maintainer Upload with Bernhard's patch from #785926.
-- Sebastian Dröge <slomo@debian.org> Sat, 17 Oct 2015 20:55:57 +0300
pidgin (2.10.11-1) unstable; urgency=low
* Recommend gstreamer0.10-alsa and gstreamer0.10-ffmpeg for voice/video calls
* Imported Upstream version 2.10.11
-- Ari Pollak <ari@debian.org> Mon, 24 Nov 2014 20:20:30 -0500
pidgin (2.10.10-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Add debian/patches/0001-update-msn-application-id.patch to update the
MSN_APPLICATION_ID sent when signing in to MSN (Closes: #769491).
-- John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Fri, 14 Nov 2014 10:48:05 +0100
pidgin (2.10.10-1) unstable; urgency=high
* Imported Upstream version 2.10.10
* Fixes security issues: CVE-2014-3694, CVE-2014-3695, CVE-2014-3696,
CVE-2014-3697, CVE-2014-3698
* Update debian/watch to check upstream signature (Closes: #764768)
* Build with system libgadu
-- Ari Pollak <ari@debian.org> Thu, 16 Oct 2014 21:01:32 -0400
pidgin (2.10.9-1) unstable; urgency=medium
* Imported Upstream version 2.10.9
- Fixes XMPP connection problem (Closes: #737509)
-- Ari Pollak <ari@debian.org> Mon, 03 Feb 2014 20:12:36 -0500
pidgin (2.10.8-1) unstable; urgency=high
* Imported Upstream version 2.10.8
- Fixes many security issues: CVE-2012-6152, CVE-2013-6477,
CVE-2013-6478, CVE-2013-6479, CVE-2013-6481, CVE-2013-6482,
CVE-2013-6483, CVE-2013-6484, CVE-2013-6485, CVE-2013-6486,
CVE-2013-6487, CVE-2013-6489, CVE-2013-6490, and CVE-2014-0020.
- Fixes undefined conversion from double to enum (Closes: #701671)
* Imported Upstream version 2.10.8
-- Ari Pollak <ari@debian.org> Sat, 25 Jan 2014 11:53:21 -0500
pidgin (2.10.7-2) unstable; urgency=low
* Fix IRC protocol loading by linking with SASL (Closes: #701541)
* Apply patch from upstream to fix crash in Contact Availability Plugin
(Closes: #701544)
-- Ari Pollak <ari@debian.org> Sun, 24 Feb 2013 11:13:12 -0500
pidgin (2.10.7-1) unstable; urgency=low
* Imported Upstream version 2.10.7
* Move libpurple0 to section devel, to reflect #700141
-- Ari Pollak <ari@debian.org> Sat, 23 Feb 2013 11:32:27 -0500
pidgin (2.10.6-3) unstable; urgency=high
* Apply patches from 2.10.7 to fix CVE-2013-0271, CVE-2013-0272,
CVE-2013-0273, and CVE-2013-0274
-- Ari Pollak <ari@debian.org> Mon, 11 Feb 2013 20:41:21 -0500
pidgin (2.10.6-2) unstable; urgency=low
* Rebuild with no changes to enable xz compression (Closes: #688692)
-- Ari Pollak <ari@debian.org> Tue, 25 Sep 2012 21:42:44 -0400
pidgin (2.10.6-1) unstable; urgency=low
* Imported Upstream version 2.10.6
-- Ari Pollak <ari@debian.org> Fri, 06 Jul 2012 19:17:08 -0400
pidgin (2.10.5-1) unstable; urgency=low
* Imported Upstream version 2.10.5
-- Ari Pollak <ari@debian.org> Wed, 04 Jul 2012 13:50:16 -0400
pidgin (2.10.4-1.1) unstable; urgency=low
* Non-maintainer upload.
* Build-depends against libfarstream-0.1-dev instead of
libgstfarsight0.10-dev (Closes: #664527)
-- Laurent Bigonville <bigon@debian.org> Tue, 15 May 2012 12:37:02 +0200
pidgin (2.10.4-1) unstable; urgency=low
* Imported Upstream version 2.10.4
- Fixes a possible XMPP remote crash (CVE-2012-2214)
- Fixes a possible MSN remote crash (CVE-2012-2318)
* Switch back to farsight, but support for farstream is now present upstream
-- Ari Pollak <ari@debian.org> Mon, 07 May 2012 20:14:56 -0400
pidgin (2.10.2-1.1) experimental; urgency=low
* Non-maintainer upload with Ari approval.
* Add debian/patches/port-to-farstream.patch: Use farstream instead of
farsight (Closes: #664527)
-- Laurent Bigonville <bigon@debian.org> Sat, 31 Mar 2012 20:36:59 +0200
pidgin (2.10.2-1) unstable; urgency=medium
* Imported Upstream version 2.10.2
- Fixes a possible remote crash in XMPP (CVE-2011-4939) (Closes: #664028)
- Fixes a possible remote crash in XMPP (CVE-2012-1178) (Closes: #664030)
-- Ari Pollak <ari@debian.org> Wed, 14 Mar 2012 21:20:18 -0400
pidgin (2.10.1-1) unstable; urgency=medium
* Imported Upstream version 2.10.1
- Fixes remotely-triggered crash in XMPP/Jingle
- Fixes remotely-triggered crash in AIM/ICQ (CVE-2011-4601)
- Fixes remotely-triggered crash in SILC (CVE-2011-3594)
* add NEWS to installed docs
* nm09-more.patch: change deprecated Network Manager signal name
(Closes: #642117)
-- Ari Pollak <ari@debian.org> Fri, 09 Dec 2011 12:03:20 -0500
pidgin (2.10.0-2) unstable; urgency=low
* Add Conflicts: network-manager (<< 0.9.0) so there shouldn't be any
version mismatch issues
(Closes: #642199)
-- Ari Pollak <ari@debian.org> Wed, 28 Sep 2011 00:35:09 -0400
pidgin (2.10.0-1) unstable; urgency=high
* Imported Upstream version 2.10.0
- Fixes a remote crash in IRC
- Fixes a remote crash in MSN
* Use linux-any instead of hardcoded list of non-Linux architectures
(Closes: #634612)
-- Ari Pollak <ari@debian.org> Thu, 18 Aug 2011 08:18:02 -0400
pidgin (2.9.0-3) unstable; urgency=low
* Oops, really enable hardening-wrapper
-- Ari Pollak <ari@debian.org> Thu, 07 Jul 2011 22:14:38 -0400
pidgin (2.9.0-2) unstable; urgency=low
* Fix missing epoch in libgadu-dev build-depends (Closes: #630654 again)
* Build-depend on fixed version of libgadu-dev that depends on libgnutls-dev
(Closes: #631979)
* Use hardening-wrapper (Closes: #632515)
-- Ari Pollak <ari@debian.org> Wed, 06 Jul 2011 21:52:41 -0400
pidgin (2.9.0-1) unstable; urgency=high
* Imported Upstream version 2.9.0
- Fixes denial-of-service vulnerability in buddy icon handling
(CVE-2011-2485)
* Re-enable GG and update libgadu-dev version
-- Ari Pollak <ari@debian.org> Thu, 23 Jun 2011 21:56:01 -0400
pidgin (2.8.0-2) unstable; urgency=low
* Explicitly disable GG protocol since we don't have libgadu-dev 1.11.0 in
Debian yet (Closes: #630654)
-- Ari Pollak <ari@debian.org> Wed, 15 Jun 2011 19:19:58 -0400
pidgin (2.8.0-1) unstable; urgency=low
* Imported Upstream version 2.8.0 (Closes: #630124)
* Remove SILC support since the library will be orphaned (Closes: #629222)
* Fix typo in libpurple-bin description (Closes: #625462)
-- Ari Pollak <ari@debian.org> Sun, 13 Jun 2011 21:17:20 -0400
pidgin (2.7.11-2) unstable; urgency=low
* Add Build-Depends: gconf2, which used to be pulled in by something else
(Closes: #621940)
-- Ari Pollak <ari@debian.org> Sun, 08 May 2011 10:04:26 -0400
pidgin (2.7.11-1) unstable; urgency=high
* Imported Upstream version 2.7.11
- fixes a crash in Voice/Video settings plugin (Closes: #611678)
- fixes a remote DoS in Yahoo protocol (CVE-2011-1091)
-- Ari Pollak <ari@debian.org> Sat, 12 Mar 2011 20:58:32 -0500
pidgin (2.7.9-2) unstable; urgency=low
* Remove old Replaces/Conflicts
* pidgin-data now Breaks/Replaces pidgin-facebookchat since we now
provide facebook.png (Closes: #608685)
-- Ari Pollak <ari@debian.org> Sun, 02 Jan 2011 14:08:57 -0500
pidgin (2.7.9-1) unstable; urgency=medium
* Imported Upstream version 2.7.9 (Closes: #608331)
- fixes a potential DoS vulnerability in MSN protocol
-- Ari Pollak <ari@debian.org> Sat, 01 Jan 2011 16:49:39 -0500
pidgin (2.7.7-1) unstable; urgency=low
* Imported Upstream version 2.7.7
-- Ari Pollak <ari@debian.org> Wed, 24 Nov 2010 10:01:07 -0500
pidgin (2.7.6-1) unstable; urgency=low
* Imported Upstream version 2.7.6
- Adds new MSN SSL certificates (Closes: #603911)
* Call dh_perl with -d to avoid Perl dependency. (Closes: #602928)
- thanks to Martin Pitt
-- Ari Pollak <ari@debian.org> Mon, 22 Nov 2010 09:42:59 -0500
pidgin (2.7.5-1) unstable; urgency=low
* Imported Upstream version 2.7.5
- Fixes AIM/ICQ regressions (Closes: #602541)
-- Ari Pollak <ari@debian.org> Fri, 05 Nov 2010 15:20:02 -0400
pidgin (2.7.4-2) unstable; urgency=low
* Add libgadu_version.patch
- change minimum version for libgadu (Closes: #600969)
* Update version of libgadu-dev build-dependency
-- Ari Pollak <ari@debian.org> Fri, 22 Oct 2010 18:44:49 -0400
pidgin (2.7.4-1) unstable; urgency=high
* Imported Upstream version 2.7.4
- Fixes multiple remotely-triggered DoSes (CVE-2010-3711)
* Remove obsolete msn_crash.patch
* Fix doc-base section
-- Ari Pollak <ari@debian.org> Wed, 20 Oct 2010 22:04:38 -0400
pidgin (2.7.3-2) unstable; urgency=low
* Apply upstream patch to fix random crashes in MSN (Closes: #594893)
-- Ari Pollak <ari@debian.org> Sat, 11 Sep 2010 00:21:02 -0400
pidgin (2.7.3-1) unstable; urgency=low
* Imported Upstream version 2.7.3
* Fix lintian weak-library-dev-dependency error
* Move package VCS to git
-- Ari Pollak <ari@debian.org> Wed, 11 Aug 2010 00:42:09 -0400
pidgin (2.7.2-1) unstable; urgency=medium
* New upstream release
- Fixes a remote crash in AIM/ICQ (CVE-2010-2528)
* debian/patches/python26.patch:
- don't raise string exceptions, since that's incompatible with python 2.6
(Closes: #585242)
-- Ari Pollak <ari@debian.org> Thu, 22 Jul 2010 19:00:29 -0400
pidgin (2.7.1-1) unstable; urgency=low
* New upstream release
- Fixes ICQ messages coming in with full HTML (Closes: #583710)
-- Ari Pollak <ari@debian.org> Sun, 30 May 2010 00:00:37 -0400
pidgin (2.7.0-3) unstable; urgency=low
* Apply patch from upstream to fix a crash in OSCAR (Closes: #582163)
-- Ari Pollak <ari@debian.org> Wed, 19 May 2010 23:23:03 -0400
pidgin (2.7.0-2) unstable; urgency=low
* Disable gevolution plugin for now since it's more important to get a new
version out (Closes: #582227)
-- Ari Pollak <ari@debian.org> Wed, 19 May 2010 22:47:45 -0400
pidgin (2.7.0-1) unstable; urgency=medium
* New upstream release
- Fixes an MSN emoticon DoS (CVE-2010-1624)
- Fixes ICQ encoding problems with cyrillic (Closes: #571928)
- Fixes notification icon transparency (Closes: #566631)
- Fixes ICQ icon size limits (Closes: #570482)
- Fixes NSS problem on libpurple reload (Closes: #573065)
- Fixes double-free if ssl handshake fails with XMPP (Closes: #573068)
-- Ari Pollak <ari@debian.org> Wed, 12 May 2010 23:29:21 -0400
pidgin (2.6.6-2) unstable; urgency=low
* debian/patches/oscar_login.patch:
- Fix login problems in AIM/ICQ (Closes: #571413)
-- Ari Pollak <ari@debian.org> Thu, 25 Feb 2010 10:28:42 -0500
pidgin (2.6.6-1) unstable; urgency=high
* New upstream release
- Fixes a remote MSN SLP crash (CVE-2010-0277) (Closes: #566775)
- Fixes a remote Finch XMPP crash (CVE-2010-0420)
- Fixes a remote smiley freeze/CPU pegging DoS (CVE-2010-0423)
-- Ari Pollak <ari@debian.org> Tue, 16 Feb 2010 16:50:02 -0500
pidgin (2.6.5-2) unstable; urgency=low
* debian/patches/libnssckbi_path.patch:
- Fix path to libnssckbi.so (Closes: #564711)
* debian/patches/clientlogin-fix.patch:
- Fixes ICQ/AIM login issue (Closes: #565147)
-- Ari Pollak <ari@debian.org> Thu, 14 Jan 2010 19:46:40 -0500
pidgin (2.6.5-1) unstable; urgency=low
* New upstream release
* debian/patches/CVE-2010-0013.patch:
- Fix MSN local file disclosure vulnerability (Closes: #563206)
(CVE-2010-0013)
-- Ari Pollak <ari@debian.org> Sat, 09 Jan 2010 14:13:53 -0500
pidgin (2.6.4-1) unstable; urgency=low
* New upstream release
* Convert to source format 3.0 (quilt), no patches necessary yet
-- Ari Pollak <ari@debian.org> Sat, 21 Nov 2009 22:10:11 -0500
pidgin (2.6.3-1) unstable; urgency=medium
* New upstream release
- fixes a remote ICQ crash (CVE-2009-3615)
- fix building on non-Linux architectures (Closes: #546024)
-- Ari Pollak <ari@debian.org> Fri, 16 Oct 2009 10:30:34 -0400
pidgin (2.6.2-1) unstable; urgency=medium
* New upstream release
- Fixes a crash in msn when handwriting message received (Closes: #544236)
- Fixes reading GNOME proxy information (Closes: #543504)
- Fixes a few remote crashes, so upload with urgency=medium
-- Ari Pollak <ari@debian.org> Sun, 06 Sep 2009 12:46:39 -0400
pidgin (2.6.1-2) unstable; urgency=low
* Upload to unstable
-- Ari Pollak <ari@debian.org> Wed, 26 Aug 2009 20:40:39 -0400
pidgin (2.6.1-1) experimental; urgency=low
* Put into experimental so we don't disturb 2.5.9's migration into testing
* New upstream release (Closes: #542311)
- Fixes hurd FTBFS (Closes: #530893)
- Supports auto-join in XMPP (Closes: #462250)
- Fixes some problems with international characters (Closes: #469829)
- purple-* commandline utilities now pass return value from dbus-send
(Closes: #504314)
- Fixes lots of problems with XMPP new mail notifications (Closes: #505760)
- Fixes crash when adding/removing MSN buddy (Closes: #531201)
- Contact availability plugin ignores autoreplies (Closes: #459667)
- Fixes some people not showing up when offline (Closes: #533314)
* Use tcl-dev/tk-dev
* Add Network Manager support back in since there's a -f commandline option
to override it if it fails horribly (Closes: #534698)
* Drop upstream README since it doesn't contain any useful information
for end users
-- Ari Pollak <ari@debian.org> Thu, 20 Aug 2009 20:12:54 -0400
pidgin (2.5.9-1) unstable; urgency=high
* New upstream release
- Fixes MSN buffer overflow (CVE-2009-2964)
* Change build-depends for libsilc-dev rename (Closes: #536150)
-- Ari Pollak <ari@debian.org> Sun, 16 Aug 2009 19:33:16 -0400
pidgin (2.5.8-1) unstable; urgency=high
* New upstream version
- Fixes a remote crash in ICQ (CVE-2009-1889)
-- Ari Pollak <ari@debian.org> Mon, 29 Jun 2009 20:26:35 -0400
pidgin (2.5.7-1) unstable; urgency=low
* New upstream version
- Fixes connecting to Yahoo (Closes: #533729)
-- Ari Pollak <ari@debian.org> Sat, 20 Jun 2009 23:27:48 -0400
pidgin (2.5.6-1) unstable; urgency=high
* New upstream version
- Fixes a bunch of security bugs: CVE-2009-1373, CVE-2009-1374,
CVE-2009-1375, and CVE-2009-1376
- Fixes a crash in XMPP due to some XML parsing interactions
(Closes: #519112)
* Fix a missing comma in build-depends (Closes: #520888)
-- Ari Pollak <ari@debian.org> Thu, 21 May 2009 10:22:23 -0400
pidgin (2.5.5-1) unstable; urgency=low
* New upstream version
- Re-initialize preferences correctly in libpurple when called from
third-party app (Closes: #508857)
-- Ari Pollak <ari@debian.org> Thu, 05 Mar 2009 08:49:31 -0500
pidgin (2.5.4-2) unstable; urgency=low
* Upload to unstable
-- Ari Pollak <ari@debian.org> Sun, 15 Feb 2009 05:16:09 -0500
pidgin (2.5.4-1) experimental; urgency=low
* New upstream version
* Remove version-specific shlibdep generation, and add libgnt to
libpurple0.symbols
-- Ari Pollak <ari@debian.org> Fri, 23 Jan 2009 23:34:53 -0500
pidgin (2.5.3-1) experimental; urgency=low
* New upstream release
- Tries to fix treating special characters as html entities
(Closes: #502802)
-- Ari Pollak <ari@debian.org> Mon, 22 Dec 2008 00:10:18 -0500
pidgin (2.5.2-1) experimental; urgency=low
* New upstream version
- Should fix icon sizes (Closes: #497545)
-- Ari Pollak <ari@debian.org> Sun, 19 Oct 2008 14:01:06 -0400
pidgin (2.5.0-1) experimental; urgency=low
* New upstream version (Closes: #496109)
- Upload to experimental so we don't mess up unstable->lenny transitions
- Fixes putting a BOM at the beginning of pasted text (Closes: #475146)
- Adds support for MSNP14, which allows viewing of queued messages
(Closes: #403006)
- Now emits a signal for blocked messages (Closes: #427919)
* Drop 00_debian-ca-certs.patch in favor of --with-system-ssl-certs, and
build-depend on ca-certificates
-- Ari Pollak <ari@debian.org> Sun, 24 Aug 2008 16:59:00 -0400
pidgin (2.4.3-4) unstable; urgency=low
* debian/patches/28_upnp_dos.patch:
- Backport patch from upstream to fix a possible DoS in the UPnP code
(CVE-2008-2957, doesn't competely fix #488632)
-- Ari Pollak <ari@debian.org> Mon, 24 Nov 2008 19:33:51 -0500
pidgin (2.4.3-3) unstable; urgency=low
* debian/patches/26_nss-ciphers.patch:
- Apply patch from upstream to add ciphers so we can connect to more
SSL servers (Closes: #495523, #444789)
* debian/patches/27_yahoo-ping.patch:
- Apply patch from upstream to fix frequent disconnection from Yahoo
(Closes: #499983)
-- Ari Pollak <ari@debian.org> Tue, 24 Sep 2008 20:48:03 -0400
pidgin (2.4.3-2) unstable; urgency=low
* Apply patch from Miron Cuperman to fix path to CA certificates in
00_debian-ca-certs.path
* debian/patches/25_ssl-nss.patch:
- Apply patch from upstream to add SSL certificate checking to the NSS
plugin, which we use (CVE-2008-3532) (Closes: #492434)
-- Ari Pollak <ari@debian.org> Thu, 21 Aug 2008 23:56:42 -0400
pidgin (2.4.3-1) unstable; urgency=high
* New upstream release (Closes: #488930)
- Fixes ICQ sign-on problems (Closes: #488852)
- Fixes an MSN integer overflow security issue, CVE-2008-2927
(Closes: #488632). The other issues referenced by that bug report
are questionably problematic, and they aren't that serious.
* Remove -fstack-protector since it just makes pidgin crash on arm(el).
(Closes: #469863)
* Remove bashism in debian/rules (Closes: #484429)
* Remove Network Manager support again since it's still buggy and doesn't
actually tell the user what's going on (Closes: #484750)
* debian/patches/16_yahoo_icon_crash.patch:
- Drop patch, integrated upstream
-- Ari Pollak <ari@debian.org> Wed, 02 Jul 2008 10:44:14 -0400
pidgin (2.4.2-2) unstable; urgency=low
* Fix broken Build-Depends line that was causing a lack of SILC support
-- Ari Pollak <ari@debian.org> Mon, 19 May 2008 20:58:04 -0400
pidgin (2.4.2-1) unstable; urgency=low
* New upstream release
* Enable NetworkManager support now that it doesn't add an extra dependency
* Remove 11_reread-resolvconf.patch since we have NM support and it didn't
apply cleanly anyway
* Fix spelling error in dh_pidgin man page (Closes: #474681)
* Apply modified patch from Adrien Cunin to move finch dependency on libx11-6
to a suggests, and add an entry in the description about it
(Closes: #473997)
* Update libpurple0.symbols for 2.4.0
-- Ari Pollak <ari@debian.org> Sun, 18 May 2008 01:02:08 -0400
pidgin (2.4.1-1) unstable; urgency=low
* New upstream release
- Fixes crash in XMPP if network connection goes down after resume
(Closes: #472057)
-- Ari Pollak <ari@debian.org> Tue, 01 Apr 2008 19:27:47 -0400
pidgin (2.4.0-2) unstable; urgency=low
* Add finch.pc to finch-dev
* debian/patches/22_zephyr-crash.patch:
- Add patch from upstream to prevent crash in Zephyr when reading
accounts.xml file (Closes: #470947)
* debian/patches/23_empty-edit.patch:
- Add patch from upstream to prevent an invisible edit box in
message windows (Closes: #471365)
* debian/patches/24_debian-gconf.patch:
- Fix an earlier screwup where we set /pidgin/browsers/command in
prefs.xml as a string when it should've been a path, so it was never
recognized properly and prevented people from using a custom browser if
they had run 2.3.1-1. (Closes: #472929)
-- Ari Pollak <ari@debian.org> Fri, 28 Mar 2008 20:39:43 -0400
pidgin (2.4.0-1) unstable; urgency=low
* New upstream release
* Install manpages into their appropriate packages, not pidgin-data
(Closes: #459908)
-- Ari Pollak <ari@debian.org> Fri, 29 Feb 2008 21:52:50 -0500
pidgin (2.3.1-3) unstable; urgency=low
* Seed libpurple0.symbols file
* Build with -fstack-protector
* Add ${perl:Depends} to libpurple0 and pidgin to get the proper perlapi
versioning (Closes: #463143)
* Fix syntax problem in pidgin manpage (Closes: #463021)
-- Ari Pollak <ari@debian.org> Sun, 24 Feb 2008 15:17:18 -0500
pidgin (2.3.1-2) unstable; urgency=low
* Make libpurple0 shlibs slightly looser by making it
>= MAJOR.MINOR.0 instead of >= VERSION.
* Change browser command in /etc/purple/prefs.xml to be of type
'path' instead of 'string', to match what is set by pidgin.
Thanks to Will Thompson for the fix. (Closes: #456441)
* Fix FTBFS when doing a "make docs" by adding an appropriate $(top_srcdir)
before the path to an included file. (Closes: #454549)
-- Ari Pollak <ari@debian.org> Sat, 15 Dec 2007 15:23:38 -0500
pidgin (2.3.1-1) unstable; urgency=low
* New upstream release
- Fixes problems logging into MSN (Closes: #454592)
- Fixes MSN display name randomly changing (Closes: #454490)
-- Ari Pollak <ari@debian.org> Fri, 07 Dec 2007 20:33:46 -0500
pidgin (2.3.0-1) unstable; urgency=low
* New upstream release
- Fixes Jabber crash in non-UTF-8 locale (Closes: #436236)
- Fixes problem entering password manually into Jabber (Closes: #446365)
* 21_zephyr-external.patch
- Apply patch from Klee Dienes to fix the Zephyr protocol when
compiled against the system library, as we do (Closes: #451165)
* Build the Contact Availability Prediction plugin, and make sqlite optional
(Closes: #448096)
* Remove 14_xulrunner_nss patch and bump build-depends for libnss3-dev
(Closes: #450402)
-- Ari Pollak <ari@debian.org> Mon, 03 Dec 2007 14:47:48 -0400
pidgin (2.2.2-1) unstable; urgency=high
* New upstream version
- Fixes a possible crash when parsing invalid HTML (CVE-2007-4999)
* 00_debian-ca-certs.patch:
- Make the X.509 certificate authority code look in /etc/ssl/certs and
make libpurple0 Recommend: ca-certificates. As far as I know
this is not used in any protocols yet.
* Fix dpkg-shlibdeps warning when trying to resolve plugin dependencies
(by making an shlibs.local with empty libjabber and liboscar entries),
since this will be a failure in the experimental version of dpkg
-- Ari Pollak <ari@debian.org> Wed, 24 Oct 2007 15:12:52 -0400
pidgin (2.2.1-1) unstable; urgency=high
* New upstream release
- Fixes remote DoS (crash) in the MSN protocol (CVE-2007-4996)
- Fixes wrong file transfer size shown on MSN (Closes: #443447)
* Remove circular dependencies on libpurple0/-bin (Closes: #444148)
-- Ari Pollak <ari@debian.org> Sat, 29 Sep 2007 19:23:43 -0400
pidgin (2.2.0-1) unstable; urgency=low
* New upstream version
- Fixes tabbed window preference (Closes: #440260)
- Fixes crash in music messaging plugin when sending message to offline
buddy (Closes: #441852)
- Adds option to show protocol icons in buddy list (Closes: #432077)
-- Ari Pollak <ari@debian.org> Fri, 14 Sep 2007 10:43:21 -0400
pidgin (2.1.1-4) unstable; urgency=low
* pidgin-dev and finch-dev should depend on libpurple-dev (Closes: #441191)
-- Ari Pollak <ari@debian.org> Fri, 07 Sep 2007 11:10:47 -0400
pidgin (2.1.1-3) unstable; urgency=low
* Make finch conflict & replace old versions of gaim (closes: #440351)
-- Ari Pollak <ari@debian.org> Fri, 31 Aug 2007 15:15:07 -0400
pidgin (2.1.1-2) unstable; urgency=low
[ Laurent Bigonville ]
* Bump Standards-Version
* Split finch out of the pidgin package (Closes: #428678)
* Split libpurple out of the pidgin package (Closes: #421282)
* Add override file to quiet lintian a bit
* Remove symlinks for /usr/share/doc/pidgin{,-dev,-dbg} and really install
them instead
[ Ari Pollak ]
* Move gconf schema into pidgin, so only pidgin needs to depend on gconf
* Make dh_pidgin add a versioned misc:Conflict on the next major version
of pidgin, in preparation for getting rid of the pidgin (<< 3.0)
dependency, and adding dh_purple/dh_finch.
-- Ari Pollak <ari@debian.org> Fri, 24 Aug 2007 22:04:23 -0400
pidgin (2.1.1-1) unstable; urgency=low
* New upstream version
* Update new SVN repository information in debian/control
* Install Finch's window managers correctly (Closes: #438536)
-- Ari Pollak <ari@debian.org> Mon, 20 Aug 2007 17:40:05 -0400
pidgin (2.1.0-1) unstable; urgency=low
* New upstream version
- Fixes a spelling mistake in MSN (Closes: #427170)
- Fixes a tray icon scaling problem on vertical panels (Closes: #433909)
-- Ari Pollak <ari@debian.org> Mon, 30 Jul 2007 17:57:20 -0400
pidgin (2.0.2-2) unstable; urgency=low
* Make package binNMU-safe (Closes: #430101)
* Add Depends: python
-- Ari Pollak <ari@debian.org> Fri, 13 Jul 2007 14:55:15 -0400
pidgin (2.0.2-1) unstable; urgency=low
* New upstream version (Closes: #429222)
* Enable SILC support (Closes: #260420)
* 21_purple-remote_syntax.patch:
- Fix syntax error in purple-remote script (Closes: #429623)
-- Ari Pollak <ari@debian.org> Thu, 12 Jul 2007 10:37:09 -0400
pidgin (2.0.1-1) unstable; urgency=low
* New upstream release
- Should fix some buddy list synchronization crashes (Closes: #424062)
* Fix gevolution dependency exclusion
* Add appropriate Conflicts in addition to Replaces
* Fix dh_pidgin warning due to current lack of package epoch
-- Ari Pollak <ari@debian.org> Mon, 21 May 2007 23:44:41 -0400
pidgin (2.0.0+dfsg.1-4) unstable; urgency=low
* Remove bashism in debian/rules
* Make pidgin-dev Replaces: gaim-dev (Closes: #422724)
-- Ari Pollak <ari@debian.org> Fri, 11 May 2007 18:42:08 -0400
pidgin (2.0.0+dfsg.1-3) unstable; urgency=low
* Make pidgin-dbg Replaces: gaim-dbg (Closes: #422845)
-- Ari Pollak <ari@debian.org> Tue, 08 May 2007 11:42:49 -0400
pidgin (2.0.0+dfsg.1-2) unstable; urgency=low
* Change pidgin-dev depends from glib to gtk (Closes: #422738)
-- Ari Pollak <ari@debian.org> Mon, 07 May 2007 21:09:45 -0400
pidgin (2.0.0+dfsg.1-1) unstable; urgency=low
* New upstream release
- The .orig.tar.gz source has been modified to remove the
libpurple/protocols/irc/PROTOCOL file, which is non-DFSG-free.
Pidgin 2.0.1 should have this file removed upstream.
* Change name of package to pidgin (Closes: #418215)
* 20_purple-remote_friendly.patch:
- Make error messages friendlier when python-dbus is not installed
or if someone calls purple-remote/purple-url-handler with --help or -h
(Closes: #413204)
* Update Debian menu icon
* Update watch file
* Update prefs.xml for new path to browsers
* Loosen the dependency on pidgin-data slightly (Closes: #403582)
* Add purple-remote manpage from Anibal Avelar (Closes: #412278)
-- Ari Pollak <ari@debian.org> Sat, 5 Apr 2007 18:13:41 -0400
gaim (1:2.0.0+beta6-2) experimental; urgency=low
* 18_sametime-strip-html.patch:
- Patch from David Everly to properly strip HTML entities in Sametime
group chat (Closes: #410311)
* Make gaim-dev an Arch: all package
* Install gaim API docs into gaim-dev
* Remove some extraneous Recommends/Suggests
* Add rationale for the recommended/suggests packages in the gaim
description
* Conflict with gaim-librvp (<= 0.9.5-2) to prevent a crash when it's
installed (Closes: #408861)
* Conflict with gaim-encryption (<= 3.0~beta7-1) to prevent a crash
-- Ari Pollak <ari@debian.org> Mon, 29 Jan 2007 12:11:13 -0500
gaim (1:2.0.0+beta6-1) experimental; urgency=low
* New upstream release
* Add a Recommends: python-dbus (Closes: #404623)
* Attempt to enable Cyrus SASL for Jabber again, since support should
have been improved upstream
* 17_statusbox_crash.patch:
- Fix a common crash after upgrading from beta5 when setting status
to Available
-- Ari Pollak <ari@debian.org> Sat, 27 Jan 2007 16:53:01 -0500
gaim (1:2.0.0+beta5-11) unstable; urgency=low
* 20_sametime-strip-html.patch:
- Patch from David Everly to properly strip HTML entities in Sametime
group chat (Closes: #410311)
-- Ari Pollak <ari@debian.org> Fri, 9 Mar 2007 20:06:05 -0500
gaim (1:2.0.0+beta5-10) unstable; urgency=low
* 18-jabber-roster-crash.patch:
- Fix possible crash when aliasing a user on Jabber
* 19_docklet_translation.patch:
- Backport some translations of "Blink on new message" from beta6
(Closes: #409259)
* Add a Recommends: python-dbus (Closes: #404623)
-- Ari Pollak <ari@debian.org> Sat, 3 Feb 2007 20:12:32 -0500
gaim (1:2.0.0+beta5-9) unstable; urgency=low
* 15_file_save_name.patch:
- Fill the default filename correctly when receiving a file
* 16_yahoo_icon_crash.patch:
- Try to fix a double-free when unable to receive a Yahoo user's
buddy icon (Closes: #402345)
* 17_upnp_crash.patch:
- Fix a crash when receiving an invalid UPnP response
-- Ari Pollak <ari@debian.org> Sun, 17 Dec 2006 20:06:44 -0500
gaim (1:2.0.0+beta5-8) unstable; urgency=low
* Remove dependency on libsasl2-modules
* Turn off building with gnutls (Really Closes: #401567)
* 13_yahoo_webauth_disable.patch:
- When Yahoo auth fails, don't fall back to using the web interface
since it's broken and only causes more bugs
* 14_xulrunner_nss.patch:
- Build against xulrunner-nss instead of mozilla-nss
-- Ari Pollak <ari@debian.org> Mon, 11 Dec 2006 13:12:42 -0500
gaim (1:2.0.0+beta5-7) unstable; urgency=medium
* Add gaim-data dependency on ${misc:Depends} (Closes: #401845)
* Use NSS instead of gnutls (Hopefully Closes: #401567)
* Remove build-dep on libaudiofile-dev
* 12_gstreamer-cleanup.patch:
- Add patch to try cleaning up gstreamer support and hopefully fix a crash
related to it. If this doesn't fix the crash, I blame gstreamer.
(Closes: #397788, #399771)
-- Ari Pollak <ari@debian.org> Thu, 7 Dec 2006 15:16:48 -0500
gaim (1:2.0.0+beta5-6) unstable; urgency=low
* Brown paper bag release.
* Only install gconf schemas in gaim-data (Closes: #401642, #401628)
-- Ari Pollak <ari@debian.org> Mon, 4 Dec 2006 21:13:29 -0500
gaim (1:2.0.0+beta5-5) unstable; urgency=low
* Er, really install /usr/bin/gaim-remote and gconf schemas
* Really don't build with cyrus-SASL (Really Closes: #400002, 401295)
-- Ari Pollak <ari@debian.org> Mon, 4 Dec 2006 10:35:31 -0500
gaim (1:2.0.0+beta5-4) unstable; urgency=medium
* Install /usr/bin/gaim-remote script
* Install gconf schemas
* Add Recommends: python
* Don't build with Cyrus-SASL, support is too unstable
(Closes: #400002, 401295)
* 08_jabber-info-crash.patch:
- Add patch from upstream to fix Jabber crash when getting info
on someone with no resource name (Closes: #398399)
* 10_text-arrow-keys.patch:
- Add patch from upstream to fix arrow keys not working in gaim-text
(Closes: #400496)
* 11_reread-resolvconf.patch:
- Add patch to re-read resolv.conf when connecting to a server
(Closes: #394989)
-- Ari Pollak <ari@debian.org> Mon, 4 Dec 2006 00:09:32 -0500
gaim (1:2.0.0+beta5-3) unstable; urgency=low
* Add libsasl2-modules to Depends; otherwise, connecting to some
Jabber servers won't work.
* Oops, forgot to apply part of the Buddy List memleak patch
(Really closes: #398133)
* 07_msn-custom-smiley-crash.patch:
- Apply patch from upstream to prevent a crash when reading a malformed
custom emoticon.
-- Ari Pollak <ari@debian.org> Tue, 21 Nov 2006 14:27:19 -0500
gaim (1:2.0.0+beta5-2) unstable; urgency=low
* Build with LDFLAGS=-Wl,--as-needed
* Build Jabber protocol with Cyrus SASL support
* 04_blist-memleak.patch:
- Add upstream fixes for some potential slow memory leaks due to a bug in
GTK+ (Closes: #398133)
* 05_url-handler-xmpp.patch:
- Add upstream fix for crash on odd xmpp: URLs (Closes: #398969)
* 06_jabber-registration-srv.patch:
- Add patch from George-Cristian Bîrzan to query SRV record when
registering on Jabber servers (Closes: #399230)
-- Ari Pollak <ari@debian.org> Sun, 19 Nov 2006 22:43:40 -0500
gaim (1:2.0.0+beta5-1) unstable; urgency=medium
* New upstream release
- Disables unused/obsolete GStreamer sinks (arts, and NAS)
and falls back to a proper GStreamer sink more gracefully
(Closes: #397160, #397321)
- Fix an uninitialized pointer causing GStreamer crashes (Closes: #397788)
- Normalizes improper UTF-8 before sending to DBus (Closes: #397593)
- Fixes DNS lookup failure after changing networks (Closes: #394989)
* Add Recommends: gstreamer0.10-plugins-base, gstreamer0.10-plugins-good,
gstreamer0.10-alsa | gstreamer0.10-esd
* Don't ship Release Notification plugin (Closes: #396998)
* 03_gconf-gstreamer.patch:
- Try getting gstreamer settings from gconf even if we're not running
gnome
-- Ari Pollak <ari@debian.org> Sun, 5 Nov 2006 17:36:26 -0500
gaim (1:2.0.0+beta4-4) unstable; urgency=medium
* 06_irc-signal-crash.patch:
- Add patch to work around crash on receiving non-ASCII characters
in IRC by not emitting the new "irc-receiving-text" signal; the text
from the server needs to be normalized into proper UTF-8 before sending
it to dbus.
(Closes: #394555, #395520)
* 07_delete-account-crash.patch:
- Add patch to fix crashies when deleting an Enabled account and then
either exiting or setting the status to Available.
-- Ari Pollak <ari@debian.org> Sat, 4 Nov 2006 11:01:15 -0500
gaim (1:2.0.0+beta4-3) unstable; urgency=low
* 05_gaimgtklogviewer.patch:
- Revert upstream privatization of GaimGtkLogViewer, which is needed
for attaching to the "log-displaying" signal.
-- Ari Pollak <ari@debian.org> Sun, 22 Oct 2006 18:34:50 -0400
gaim (1:2.0.0+beta4-2) unstable; urgency=low
* Build against libgadu properly (Closes: #394303)
* Make libgadu a Suggests instead of a Depends
* 04_ansi-comments.patch:
- Fix C++-style comments in gtkgaim.h to allow compilation of plugins with
-ansi
-- Ari Pollak <ari@debian.org> Sun, 22 Oct 2006 12:34:05 -0400
gaim (1:2.0.0+beta4-1) unstable; urgency=low
* New upstream release
- This includes a new gaim-text binary; it + libgaim will probably be
split out into a separate package soon, but for now I just wanted to get
beta4 out there.
- Large log files should now behave better in the log viewer
(Closes: #341607)
- The text replacement plugin should work properly when text is surrounded
by punctuation (Closes: #277147)
- Buddy pounce should now have an event for receiving a message
(Closes: #277727)
- Should fix aliases with strange encodings (Closes: #391798)
* Add debian/patches/02_gnthistory-in-gtk.patch:
- Don't load GntHistory plugin in gtk gaim
* Remove bashisms from postinst scripts
* Move libmeanwhile1 from Depends to Suggests
-- Ari Pollak <ari@debian.org> Wed, 18 Oct 2006 17:30:20 -0400
gaim (1:2.0.0+beta3.1-5) unstable; urgency=low
* Update version on evolution-data-server Suggests
* Update version on Conflicts/Replaces: gaim-meanwhile
-- Ari Pollak <ari@debian.org> Sun, 8 Oct 2006 18:29:17 -0400
gaim (1:2.0.0+beta3.1-4) unstable; urgency=medium
* debian/patches/06_varargs-fix2.patch
- Add second varargs patch to fix another FTBFS on alpha
-- Ari Pollak <ari@debian.org> Thu, 28 Sep 2006 16:31:34 -0400
gaim (1:2.0.0+beta3.1-3) unstable; urgency=medium
* debian/patches/05_varargs-fix.patch:
- Add fix for alpha FTBFS
* Add Conflicts and Replaces: gaim-dev (<< 1:2.0.0+beta3.1-2) on
gaim-data, since we moved a file from gaim-dev to gaim-data.
-- Ari Pollak <ari@debian.org> Thu, 28 Sep 2006 11:26:02 -0400
gaim (1:2.0.0+beta3.1-2) unstable; urgency=low
* First upload of 2.0 branch to unstable
* Move the example .py files to /usr/share/doc/gimp-data/examples/
(Closes: #386632)
* Re-add link from /usr/share/doc/gaim-dbg to gaim-data
* Move ChangeLog.API from gaim-dev to gaim-data since it could be useful
for gaim scripts, not just C plugins
* debian/patches/02_oscar-sendfile.patch:
- Add upstream fix for a bug where the Send File option wasn't
enabled in an AIM/ICQ conversaion for someone that isn't in your
buddy list
* debian/patches/03_novell-fix-1.patch,
debian/patches/04_novell-fix-2.patch:
- Add patches from upstream post-beta3.1 to fix some connection problems
with Novell protocol
-- Ari Pollak <ari@debian.org> Mon, 25 Sep 2006 22:12:53 -0400
gaim (1:2.0.0+beta3.1-1) experimental; urgency=low
* New upstream release
* Suggest dbus-1-utils instead of dbus
* Change build-depends on libgnutls11-dev to libgnutls-dev (Closes: #335764)
* Move gaim.desktop and the dbus entry to the gaim package instead of
gaim-data, and make gaim-data Recommends: gaim (Closes: #313222)
* Move /usr/share/aclocal/gaim.m4 to gaim-dev
* Remove link to /usr/share/doc/gaim-data from gaim-dbg since
gaim-data may not be installed
-- Ari Pollak <ari@debian.org> Sun, 20 Aug 2006 22:31:24 -0400
gaim (1:2.0.0+beta3-4) experimental; urgency=low
* Somehow I forgot to add libavahi-compat-howl-dev to the build-depends,
so do that.
-- Ari Pollak <ari@debian.org> Thu, 6 Apr 2006 18:34:29 -0400
gaim (1:2.0.0+beta3-3) experimental; urgency=low
* Add build-depends on libgadu-dev >= 1.6+20060215-1 since the gaim
plugin now builds from the system library (Closes: #360280)
* Add build-depends on libxml-parser-perl to fix FTBFS (Closes: #360955)
-- Ari Pollak <ari@debian.org> Wed, 5 Apr 2006 17:31:52 -0400
gaim (1:2.0.0+beta3-1) experimental; urgency=low
* New upstream release
- There is no more Away window, so "Away box should be toplevel"
no longer applies (Closes: #226280)
- Auto-away should be fixed with multiple accounts (Closes: #302686)
- Contact lists should no longer be lost if you run out of disk space
(Closes: #303922)
- Only display the font names in the preferences font selector
dialog, without the font size (Closes: #270529)
- Active/Away status is now integrated into the Buddy List and
has multiple account status (Closes: #240300, #290590, #223839)
- Play sounds even when queueing new messages to the system tray
(Closes: #242516, #272332)
- Don't segfault when running "gaim -l" when no preferences file exists
(Closes: #326852)
- Queued messages should now be saved to the logs as soon as they are
received (Closes: #255117)
- You should now be able to set your browser manually even if you're
using GNOME (Closes: #281381)
- Reconnecting should no longer pop up a new dialog (Closes: #347451)
- Log viewer now aggregates logs from the same "person" (Closes: #213438)
- There is now an included Gtk RC plugin that allows you to change
font sizes via a GUI (Closes: #275640)
- Auto-reconnect is now in the core and should no longer cause
crashes (Closes: #355645)
* Move back to straight cdbs build system, not tarball-in-tarball.
* Build-Depend on cdbs >= 0.4.37 since it automatically handles -dbg package
* Make /usr/share/doc/gaim-dbg a link to gaim-data
* Add libmeanwhile-dev, libavahi-compat-howl-dev, libdbus-glib-1-dev, dbus,
and python2.4 (to generate dbus schemas) to Build-Depends
* Conflict & Replace old gaim-meanwhile package, since we now provide
the meanwhile/sametime plugin.
* Re-enable perl plugin support, since it's been mostly fixed upstream
(Closes: #288851)
* debian/patches/{irc-ssl, logging-compatibility, privacy-crash}.patch:
- Removed, obsoleted by new upstream version
-- Ari Pollak <ari@debian.org> Mon, 27 Mar 2006 14:25:21 -0500
gaim (1:1.5.0+1.5.1cvs20051015-6) unstable; urgency=low
* debian/patches/07_msncrashfix.patch:
- Backport patch from upstream trunk to handle base16/64 encoding more
gracefully, which should hopefully fix an MSN crasher (Closes: #383731)
-- Ari Pollak <ari@debian.org> Thu, 24 Aug 2006 22:05:20 -0400
gaim (1:1.5.0+1.5.1cvs20051015-5) unstable; urgency=low
* Change build-depends on libgnutls11-dev to libgnutls-dev (Closes: #335764)
-- Ari Pollak <ari@debian.org> Sun, 25 Jun 2006 11:18:54 -0400
gaim (1:1.5.0+1.5.1cvs20051015-4) unstable; urgency=low
* Number patches so that they're in a reliable order
* Bump Standards-Version to 3.7.2; no changes necessary
* debian/patches/05_es.po-update.patch:
- Add updated Spanish translation from Javier Fernández-Sanguino Peña
* debian/patches/06_disable-icq-webaware.patch:
- Steal patch from Ubuntu/upstream to disable the webaware feature to
drastically reduce AIM & ICQ spam (Closes: #360063, #369234)
-- Ari Pollak <ari@debian.org> Sun, 28 May 2006 12:16:34 -0400
gaim (1:1.5.0+1.5.1cvs20051015-3) unstable; urgency=low
* debian/patches/privacy-crash.patch:
- Add patch from upstream CVS to fix crash when removing a user from
the block list (Closes: #357285)
-- Ari Pollak <ari@debian.org> Fri, 17 Mar 2006 13:26:33 -0500
gaim (1:1.5.0+1.5.1cvs20051015-2) unstable; urgency=low
* debian/patches/logging-compatibility.patch:
- Add patch from upstream to make the log browser forwards-compatible with
the new log filenames in gaim 2.0
* debian/patches/irc-ssl.patch:
- Add patch to enable IRC over SSL (Closes: #343553)
* debian/README.Debian.dev:
- Correct typo in suggested plugin package name (Closes: #351760)
* debian/control:
- Upgrade debhelper to 5.0
- Add gaim-dbg package
* debian/compat:
- Upgrade debhelper compat version to 5
* debian/rules:
- Add gaim-dbg package
-- Ari Pollak <ari@debian.org> Thu, 9 Feb 2006 14:56:25 -0500
gaim (1:1.5.0+1.5.1cvs20051015-1) unstable; urgency=low
* New upstream CVS snapshot of the oldstatus branch
- Should fix a yahoo login crash (Closes: #323499)
- Adds a fix for a recent OSCAR rate-limiting problem
- Adds support for OSCAR file transfers behind NAT through proxy servers
(Closes: #267180)
-- Ari Pollak <ari@debian.org> Sat, 15 Oct 2005 16:20:06 -0400
gaim (1:1.5.0-1) unstable; urgency=low
* New upstream release
- IRC quit message is now configurable (Closes: #261317)
* Remove patches introduced in 1.4.0 revisions as they are now
in upstream.
-- Ari Pollak <ari@debian.org> Fri, 12 Aug 2005 08:04:38 -0400
gaim (1:1.4.0-5) unstable; urgency=high
* This release fixes three remotely-exploitable security issues.
These will be fixed in 1.5.0, but I'm adding the patches now so
I don't have to rush to package 1.5.0 when it comes out.
* debian/patches/away-message-CAN-2005-2103.patch:
- Added
- Fixes CAN-2005-2103: Away message buffer overflow (arbitrary
code execution)
* debian/patches/libgg-CAN-2005-2370.patch:
- Added
- Fixes CAN-2005-2370: Memory alignment bug in libgadu
* debian/patches/oscar-CAN-2005-2102.patch:
- Added
- Fixes CAN-2005-2102: OSCAR UTF-8 filename remote crash
* debian/control:
- Remove version from libgtkspell-dev build-depends, since the aspell
C++ transition was reverted.
-- Ari Pollak <ari@debian.org> Wed, 10 Aug 2005 11:49:26 -0400
gaim (1:1.4.0-4) unstable; urgency=low
* Apparently the second OSCAR patch from upstream wasn't getting applied
properly. Apply it properly, hopefully this should fix the remaining
OSCAR sign-on problem. (Closes: #321071, #321726)
-- Ari Pollak <ari@debian.org> Sun, 7 Aug 2005 15:03:22 -0400
gaim (1:1.4.0-3) unstable; urgency=low
* Build-depend on libxss-dev so X idle time support will actually get built
* Remove build-depends on autotools-dev since it is no longer necessary
* Change Suggests: evolution-data-server1.2 to evolution-data-server
-- Ari Pollak <ari@debian.org> Thu, 21 Jul 2005 06:59:18 -0400
gaim (1:1.4.0-2) unstable; urgency=low
* Apply patch from upstream CVS to fix a crash when connecting to certain
AIM/ICQ accounts
* Bump build-depends to gtkspell >= 2.0.10-3, which now depends on
libaspell15c2 for the C++ ABI transition
-- Ari Pollak <ari@debian.org> Sat, 9 Jul 2005 20:02:34 -0400
gaim (1:1.4.0-1) unstable; urgency=low
* New upstream version.
-- Ari Pollak <ari@debian.org> Fri, 8 Jul 2005 09:10:21 -0400
gaim (1:1.3.1-2) unstable; urgency=low
* Argh, this shouldn't be a native package. Correctly include .orig.tar.gz
and .diff.gz in upload. (Closes: #314321)
-- Ari Pollak <ari@debian.org> Wed, 15 Jun 2005 17:22:02 -0400
gaim (1:1.3.1-1) unstable; urgency=medium
* New upstream version. Fixes two remote DoS/crash security bugs,
CAN-2005-1934 and CAN-2005-1269.
-- Ari Pollak <ari@debian.org> Fri, 10 Jun 2005 12:19:14 -0400
gaim (1:1.3.0-2) unstable; urgency=low
* debian/control:
- Update build-dependencies and Suggests to evolution-data-server1.2
(Closes: #311663)
-- Ari Pollak <ari@debian.org> Thu, 2 Jun 2005 15:11:36 -0400
gaim (1:1.3.0-1) unstable; urgency=high
* New upstream version. Fixes two remote DoS/overflow security bugs,
CAN-2005-1262 and CAN-2005-1261.
-- Ari Pollak <ari@debian.org> Wed, 11 May 2005 09:44:03 -0400
gaim (1:1.2.1-1) unstable; urgency=medium
* New upstream version. Fixes IRC escaping remote DOS problems, hence medium
priority.
* debian/patches/icq-auth2.patch:
- removed, upstream backed the changes out themselves in this release
-- Robert McQueen <robot101@debian.org> Mon, 4 Apr 2005 04:36:38 +0100
gaim (1:1.2.0-3) unstable; urgency=high
* debian/patches/icq-auth.patch:
- removed, it doesn't actually fix the problem :(
* debian/patches/icq-auth2.patch:
- new patch to revert to the (arguably less secure, but fully functional)
ICQ authentication code from 1.1.4, arguably an RC bug so upload with
urgency=high if sarge is about to freeze (really closes: #301072)
-- Robert McQueen <robot101@debian.org> Fri, 1 Apr 2005 15:17:19 +0100
gaim (1:1.2.0-2) unstable; urgency=low
* debian/patches/icq-auth.patch:
- Apply patch from upstream CVS which should fix ICQ authentication
problems with passwords greater than 8 characters. (Closes: #301072)
-- Ari Pollak <ari@debian.org> Thu, 24 Mar 2005 11:11:49 -0500
gaim (1:1.2.0-1) unstable; urgency=medium
* New upstream version.
* Put better symlink-creating logic in postinst (Closes: #298467)
- this is an RC bug, so upload with urgency=medium
-- Ari Pollak <ari@debian.org> Mon, 21 Mar 2005 15:57:35 -0500
gaim (1:1.1.4-2) unstable; urgency=low
* New revision to fix incorrect build on x86 (and my bad attempt at
a binary NMU)
-- Ari Pollak <ari@debian.org> Tue, 1 Mar 2005 03:51:14 -0500
gaim (1:1.1.4-1) unstable; urgency=low
* New upstream version.
- fixes embarrasingly similar HTML crash exploit (CAN-2005-0208)
- fixes g_stat crashes by enabling large file support in Gaim, to match
glib's compile-time settings
- fixes MSN crashes introduced in 1.1.3
* Added CVE numbers for exploits fixed in 1.1.3 (CAN-2005-0472 and
CAN-2005-0473) to changelog.
* debian/patches/00g_stat_brokenness.patch:
- removed
* debian/control:
- added dependencies on pkg-config and libglib2.0-dev to gaim-dev, but
not on libgtk2.0-dev (it's perfectly possible to build Gaim plugins
that either have no UI code, or interact with the user via Gaim's
interface for doing so) (actually closes: #292728)
* debian/dh_gaim:
- apply patch to make resulting gaim dependencies less strict
(closes: #296512)
-- Robert McQueen <robot101@debian.org> Fri, 25 Feb 2005 12:28:57 +0000
gaim (1:1.1.3-3) unstable; urgency=low
* Well, I feel dumb. I didn't actually make any changes in -2.
Really do it this time.
-- Ari Pollak <ari@debian.org> Mon, 21 Feb 2005 22:22:15 -0500
gaim (1:1.1.3-2) unstable; urgency=medium
* Move g_stat() calls back to stat() as a workaround for brokenness
due to large file support in glib but not Gaim (closes: #295904)
-- Ari Pollak <ari@debian.org> Mon, 21 Feb 2005 21:31:51 -0500
gaim (1:1.1.3-1) unstable; urgency=high
* New upstream version.
- security: fixes DoS bug and HTML parsing problems, so urgency=high
(CAN-2005-0472 and CAN-2005-0473 respectively)
- adds update for pt_BR translation (closes: #292549)
- adds HTTP proxy support for MSN (closes: #215810)
-- Ari Pollak <ari@debian.org> Thu, 17 Feb 2005 22:41:07 -0500
gaim (1:1.1.2-3) unstable; urgency=low
* debian/control:
- make gaim-dev depend on pkg-config and libglib2.0-dev
(closes: #292728)
-- Ari Pollak <ari@debian.org> Wed, 2 Feb 2005 19:56:36 -0500
gaim (1:1.1.2-2) unstable; urgency=low
* debian/gaim.postinst:
- add script to rmdir /usr/share/doc/gaim if it isn't a symlink, and
replace it with the gaim -> gaim-data symlink, on the basis that
dpkg doesn't replace directories with symlinks or vice versa
(closes: #291827)
-- Robert McQueen <robot101@debian.org> Sun, 23 Jan 2005 14:45:08 +0000
gaim (1:1.1.2-1) unstable; urgency=low
* Upload the formerly experimental packages with gaim/gaim-data/gaim-dev to
unstable, given that 1.1.1 is in sarge
* New upstream version.
- fixes failure to hide Jabber and Yahoo messages in the System
Tray Icon, when enabled (closes: #259790)
* debian/control:
- the conflicts/replaces of gaim-data on gaim that Ari added went
missing between 1.1.1-3 and 1.1.1-4... I added the replaces but
conflicting with old gaim packages prevents upgrades (see policy
7.3) due to never unpacking conflicting packages side-by-side
-- Robert McQueen <robot101@debian.org> Fri, 21 Jan 2005 18:26:10 +0000
gaim (1:1.1.1-4) experimental; urgency=low
* debian/control:
- put gaim-dev into section devel
-- Ari Pollak <ari@debian.org> Tue, 11 Jan 2005 10:54:27 -0500
gaim (1:1.1.1-3) experimental; urgency=low
* debian/control:
- gaim-data conflicts/replaces earlier versions of gaim (closes: #289873)
-- Ari Pollak <ari@debian.org> Tue, 11 Jan 2005 10:32:56 -0500
gaim (1:1.1.1-2) experimental; urgency=low
* New upstream version in this experimental branch. Contains the same
changes made between 1.1.0-1 and 1.1.1-1 in unstable, included below for
reference. Further thanks due here to Ari for doing all the legwork with
this split into gaim{,-data,-dev}, making packages smaller and allowing
plugin packages to be built, and to Tollef Fog Heen for his dh_gaim
script.
* debian/TODO.Debian:
- rename to gaim-dev.TODO so dh_installdocs automatically includes it in
the right place
* debian/control:
- replace suggests of evolution with evolution-data-server
- make gaim-dev depend on gaim-data because of /usr/share/doc symlink
- tweak descriptions
* debian/rules:
- explicitly disabled silc support until #273871 progresses
- install changelogs and documentation in the gaim-data package only, and
make gaim and gaim-dev symlink to it (allowed by policy as they both
depend on gaim-data)
- instruct dh_installman to install dh_gaim's manpage
- run dh_installdocs manually for gaim-dev to install only the files we
need on top of those in gaim-data
- don't bother removing /usr/lib/gaim/*.la files - they are not installed
any more
* debian/gaim.install:
- install only /usr/lib/gaim/*.so files
- don't try and install the perl5 directory any longer
* debian/gaim.preinst:
- moved aside to gaim.preinst.old because we no longer need to remove
/usr/share/doc/gaim if it is a symlink - it is once more a symlink
* debian/gaim-dev.install:
- don't install /usr/lib/gaim/*.la files
* debian/gaim-dev.manpages:
- removed in favour of variable in debian/rules
-- Robert McQueen <robot101@debian.org> Tue, 4 Jan 2005 18:59:50 +0000
gaim (1:1.1.1-1) unstable; urgency=low
* New upstream version. Massive thanks to Ari for all his help with the
previous releases.
* debian/patches/libtoolize.patch, debian/relibtoolize:
- removed, should no longer be necessary now Debian's architectures are
supported by upstream libtool
* debian/rules:
- disable perl support for now, its bitrotted enough to be nearly
useless, and is slated for removal in 2.0 unless anyone fixes it
* debian/control:
- remove build dependency on automake1.8 because we no longer touch any
of the generated files
- remove perl build dependencies and substvars entries
-- Robert McQueen <robot101@debian.org> Mon, 3 Jan 2005 23:30:47 +0000
gaim (1:1.1.0-3) experimental; urgency=low
* Whoops, don't include 1.0.3 tarball in the .orig.tar.gz.
* Upload to experimental for now
* debian/control:
- Update gaim package description to be more current about GNOME
(closes: #265269)
-- Ari Pollak <ari@debian.org> Thu, 9 Dec 2004 22:44:08 -0500
gaim (1:1.1.0-2) experimental; urgency=low
* debian/control:
- added libxml2-dev, libebook-dev, and libedata-book-dev to build-deps for
gevolution plugin
(closes: #274030)
- added evolution to Suggests field for people who want to use gevolution
- added new gaim-dev and gaim-data packages, which split out the
development headers & libraries and architecture-independent data.
(closes: #233350, #162653, #234853, #267682, #274023)
* debian/gaim-dev.install:
- added development files
* debian/gaim-dev.manpages:
- added debian/dh_gaim.1, generated in debian/rules
* debian/gaim-data.install:
- added architecture-independent files
* debian/gaim.install:
- move existing prefs.xml and gaim-menu.xpm into gaim-data.install
- added the rest of the files that weren't included in -dev or -data
* debian/README.Debian.dev:
- added README for Debian developers to explain how gaim plugins
should be packaged.
* debian/rules:
- added dependency excludes for /usr/lib/gaim/gevolution.so, since
we added Suggests for that manually.
- clean up binary-post-install override to not remove the development
files, since we put them in gaim-dev now.
- added build/gaim-dev override to generate man page for
dh_gaim, and added cleanbuilddir/gaim-dev override to clean it up.
* debian/dh_gaim
- added, thanks to Tollef Fog Heen for writing this.
-- Ari Pollak <ari@debian.org> Thu, 9 Dec 2004 12:30:00 -0500
gaim (1:1.1.0-1) unstable; urgency=low
* New upstream version. (closes: #284193)
- Fixes MSN switchboard errors (closes: #284406)
-- Ari Pollak <ari@debian.org> Mon, 6 Dec 2004 10:27:25 -0500
gaim (1:1.0.3-1) unstable; urgency=low
* New upstream version.
- fixes Jabber authentication issues (closes: #266632, #218994)
- fixes crash when dragging a buddy onto a convo window
(closes: #277208)
-- Ari Pollak <ari@debian.org> Fri, 12 Nov 2004 11:05:39 -0500
gaim (1:1.0.2-1) unstable; urgency=high
* New upstream version, fixes a security hole in MSN.
* debian/control:
- Add bzip2 to build-deps since the included tarball is now in bz2 format
-- Ari Pollak <ari@debian.org> Wed, 20 Oct 2004 10:45:55 -0400
gaim (1:1.0.1-2) unstable; urgency=low
* Oops, this shouldn't be a native Debian package. Properly split out
the original tarball and the debian directory. (closes: #276298)
-- Ari Pollak <ari@debian.org> Wed, 13 Oct 2004 10:10:09 -0400
gaim (1:1.0.1-1) unstable; urgency=low
* New upstream version.
* debian/rules:
- move to a tarball-within-a-tarball build system.
* debian/control:
- add build-dep for automake1.8
* debian/gaim.docs:
- removed, replaced by cdbs variable in debian/rules
-- Ari Pollak <ari@debian.org> Tue, 12 Oct 2004 12:26:39 -0400
gaim (1:1.0.0-1) unstable; urgency=medium
* New upstream version (in Robot101's absence)
- urgency medium because it fixes some regressions in 0.82.1
- should fix encoding problems (closes: #269646, #270490)
* debian/patches/libtoolize.patch:
- updated
-- Ari Pollak <ari@debian.org> Sat, 18 Sep 2004 01:20:32 -0400
gaim (1:0.82.1-1) unstable; urgency=high
* New upstream version. Fixes known security issues CAN-2004-0754 and
CAN-2004-0785, and includes several important bug fixes.
(closes: #268783)
* debian/patches/allow-blist-shrink.patch:
- removed, I'm trusting upstream on this one :)
* debian/patches/libtoolize.patch:
- updated
* debian/patches/msn-fixes-CAN-2004-0500.patch:
- removed, included upstream
-- Robert McQueen <robot101@debian.org> Sun, 29 Aug 2004 22:19:07 +0100
gaim (1:0.81-3) unstable; urgency=high
* debian/patches/cvs-msn-slp-overflow.patch:
- removed, because upstream only fixed half the problem...
* debian/patches/msn-fixes-CAN-2004-0500.patch:
- patch from SUSE to fix CAN-2004-0500
* debian/patches/cvs-gtkblist-size-request.patch:
- removed, because despite upstream's insistence...
* debian/patches/allow-blist-shrink.patch:
- this is the required change to stop the buddy list from appearing wider
than its saved width
-- Robert McQueen <robot101@debian.org> Fri, 13 Aug 2004 10:54:10 +0100
gaim (1:0.81-2) unstable; urgency=medium
* debian/control:
- raise libgnutls11 build-dep to >= 1.0.16-5 to ensure correct libtasn
version is installed (closes: #264455)
* debian/patches/cvs-gtkblist-size-request.patch:
- fix from CVS to stop the buddy list making itself over 200 pixels
wide all the time
* debian/patches/cvs-msn-slp-overflow.patch:
- fix potential overflow in MSN's slp code
-- Robert McQueen <robot101@debian.org> Thu, 12 Aug 2004 01:00:28 +0100
gaim (1:0.81-1) unstable; urgency=low
* New upstream version. (closes: #264180)
* debian/control:
- switch to gnutls11 instead of deprecated 10 (closes: #263637)
* debian/relibtoolize:
- include the script I'm using to generate the following patches - it
needs adjustment to be robust to aclocal.m4 changes
* debian/patches/cvs-irc-ison-lessflood.patch:
- removed
* debian/patches/libtoolize.patch:
- updated
-- Robert McQueen <robot101@debian.org> Sun, 8 Aug 2004 15:04:06 +0100
gaim (1:0.80-3) unstable; urgency=low
* debian/patches/libtoolize.patch:
- not only was the patch turned out by my script complete garbage even on
my system, it had the added bonus property that it only worked if you
were building gaim in /home/robot101/debian/0.80/gaim-0.80 - this patch
should apply with -p1 because the cdbs patch thing doesn't try -p5 for
some reason... :P (actually closes: #260070)
-- Robert McQueen <robot101@debian.org> Sun, 18 Jul 2004 21:25:27 +0100
gaim (1:0.80-2) unstable; urgency=low
* debian/patches/libtoolize.patch:
- replace spectacularly broken patch with one that actually applies - I
can't actually work out how this ever appeared to work on my system
in the first place (closes: #260070)
-- Robert McQueen <robot101@debian.org> Sun, 18 Jul 2004 20:15:45 +0100
gaim (1:0.80-1) unstable; urgency=low
* New upstream version. (closes: #259891)
* debian/patches/cvs-buddyicon.patch:
- removed
* debian/patches/cvs-irc-ison-lessflood.patch:
- patch from CVS to avoid flooding yourself off with large numbers of
ISON requests on IRC (closes: #259010)
* debian/patches/libtoolize.patch:
- updated
* debian/control:
- lintian fix - make build-depends into a single line
* debian/gaim.menu:
- lintian fix - added quotes around X11 in needs field
* debian/rules:
- until I make a gaim-dev package (shortly - I didn't want to hold up the
new upstream version by sending Gaim to queue/NEW) don't ship gaim.pc
because it's confusing if stuff configures but doesn't build
-- Robert McQueen <robot101@debian.org> Sat, 17 Jul 2004 18:15:54 +0100
gaim (1:0.79-2) unstable; urgency=low
* debian/control:
- update libgnutls7-dev build-depend to libgnutls10-dev to help kill
off libgnutls7 (closes: #256428)
-- Robert McQueen <robot101@debian.org> Sun, 27 Jun 2004 12:29:06 +0100
gaim (1:0.79-1) unstable; urgency=low
* New upstream version. Doubtlessly closes many bugs, including the
repeatedly reported fact that this new version (and the one before) exist.
Sorry, I was busy. I'll look through the bugs soon, but currently I think
people would just appreciate the package. :)
* debian/patches/cvs-buddyicon.patch:
- patch from CVS to fix buddy icon snafu
* debian/patches/libtoolize.patch:
- updated
-- Robert McQueen <robot101@debian.org> Sat, 26 Jun 2004 19:05:01 +0100
gaim (1:0.77-1) unstable; urgency=low
* New upstream version. (closes: #245446)
- finally repairs MSN error reporting (closes: #195475)
- optionally mute sounds when the conversation is focussed (thanks
to Stu Tomlinson for implementing this) (closes: #140289)
* debian/patches/browser-default.patch:
- removed
* debian/patches/libtoolize.patch:
- updated
* debian/prefs.xml:
- ship new default prefs.xml to use sensible-browser and have the docklet
loaded initially
* debian/gaim.install:
- install prefs.xml into /etc/gaim
-- Robert McQueen <robot101@debian.org> Sat, 24 Apr 2004 16:18:33 +0100
gaim (1:0.76-1) unstable; urgency=low
* New upstream version. (closes: #241968, #242431)
- this version builds the zephyr plugin against an external libzephyr,
allowing kerberos support and closing a long standing wishlist bug,
making zephyr actually useful (closes: #152034)
- adds a "Network" preferences pane to choose incoming port ranges
(closes: #133850)
- adds the choice of "Gnome Default" to the browser choices, I also made
Debian's /usr/bin/sensible-browser the default (see below)
(closes: #210744)
- fixes saving of modified account prefs (closes: #229511, #231249)
- Yahoo! works again (closes: #231440, #236744)
- shouldn't clobber existing prefs/blist files if disk is full
(closes: #234790)
- Perl plugin loading fixed (closes: #229457)
* debian/patches/browser-default.patch:
- set the default browser to Debian's sensible-browser (only affects new
users)
* debian/patches/buffer-overflows.patch:
- removed on the basis that all the problems are fixed in this release,
although I plan to audit the patch to confirm this
* debian/patches/libtoolize.patch:
- regenerated for this version
* debian/control:
- added libzephyr-dev to build-depends
* debian/rules:
- build against external libzephyr
- make dh_shlibdeps consider libzephyr.so for suggests only
-- Robert McQueen <robot101@debian.org> Wed, 7 Apr 2004 03:34:57 +0100
gaim (1:0.75-3) unstable; urgency=high
* Minor tweak to the security patch to fix an infinite loop. High urgency
because I meant to fix this before 0.75-2 reached testing, but didn't.
I'm going on holiday for a week, so if 0.76 comes out, be patient.
-- Robert McQueen <robot101@debian.org> Wed, 24 Mar 2004 02:56:48 +0000
gaim (1:0.75-2) unstable; urgency=medium
* Security update to fix 12 possible buffer overflow attacks. Details are
at http://security.e-matters.de/advisories/012004.html.
* debian/patches/buffer-overflows.patch:
- patch from RedHat's RHSA-2004:032-04 advisory to fix CAN-2004-0006/7/8,
thanks to RedHat for this patch, Jacques A. Vidrine for the initial
patch, and Stefan Esser for finding the original problems
(closes: #229843)
-- Robert McQueen <robot101@debian.org> Tue, 27 Jan 2004 16:06:39 +0000
gaim (1:0.75-1) unstable; urgency=low
* New upstream version:
- restores Ctrl+PgUp/PgDn tab switching (closes: #226674, #226795)
* debian/patches/libtoolize.patch:
- regenerated because for some reason, make dist doesn't work for
upstream on sid at the moment
* debian/control:
- add build depend on xutils because configure uses imake to find
the X include directory - this makes Gaim link to the X ScreenSaver
and session management libs reliably (thanks to Ryan Murray)
(closes: #226227)
-- Robert McQueen <robot101@debian.org> Sat, 10 Jan 2004 12:02:40 +0000
gaim (1:0.74+0.75cvs20040104-1) unstable; urgency=low
* CVS snapshot. 0.74 had problems with leaking and some other stuff that
annoyed me, so I put off packaging it as long as possible. Turns out
CVS was just made usable now in preparation for a release, so I'm just
packaging it instead:
- typo fix in README was fixed in CVS (closes: #220999)
- this can be taken to provide 0.74 (closes: #223931)
* debian/patches/00-libtoolize.patch:
- deleted, not necessary because I ran "make dist" on a Debian box
* debian/patches/gtkspell-locale2.patch:
- deleted, in favour of...
* debian/patches/gtkspell-locale3.patch:
- now very small because I had "cleanups" merged to CVS ;)
* debian/control:
- change tcl8.3-dev and tk8.3-dev build deps to 8.4, upstream works with
8.4 now
- add tcl8.3-dev and tk8.3-dev build conflicts
* debian/copyright:
- update to point at new COPYRIGHT file
* debian/gaim.README.Debian:
- deleted, had nothing to say really
* debian/gaim.docs:
- add new upstream COPYRIGHT file
-- Robert McQueen <robot101@debian.org> Mon, 5 Jan 2004 03:30:17 +0000
gaim (1:0.72-1) unstable; urgency=low
* New upstream version. Sorry I missed 0.71, been busy. Some nice bug
fixes and tweaks in these two versions:
- now possible to override your username on IRC (closes: #196265)
- rewritten Jabber plugin with XMPP support, bugs in old code
evaporate (closes: #199345, #217326)
- various bugfixes to SSL code (closes: #214798)
- fixes ICQ signon crashes (closes: #217851, #217856, #218496)
* debian/patches/00-libtoolize.patch:
- updated for new version (I should make a script for this...)
* debian/patches/cvs-yahoo-{endian,tweak}.patch:
- deleted, included in this release
* debian/patches/gtkspell-locale.patch:
- deleted, was broken ("C" is not a language and has no dictionary)
* debian/patches/gtkspell-locale2.patch:
- reworked version which should set the dictionary consistently and
only when the locale has actually been set
(closes: #213937, #215811)
* debian/control:
- added build depend for libstartup-notification0-dev
- added ${shlibs:Suggests} to the suggests field
- removed conflicts/replaces for the short-lived (never officially
released) libgaim-remote packages
* debian/rules:
- gentle fudge to stop dh_makeshlibs from acting on the plugins, some
of which cause it to false-positives (see #205142)
- gentle shlibdeps fudge to downgrade tcl and tk to suggests
(closes: #213409)
-- Robert McQueen <robot101@debian.org> Sat, 1 Nov 2003 19:01:25 +0000
gaim (1:0.70-2) unstable; urgency=low
* debian/patches/cvs-yahoo-endian.patch:
- memcpy(&some_char[], &some_int, sizeof(int)) is not portable, mmkay?
here's my patch [from CVS] (thanks Matthew Wilcox)
-- Robert McQueen <robot101@debian.org> Mon, 29 Sep 2003 13:31:37 +0100
gaim (1:0.70-1) unstable; urgency=low
* New upstream version. Skipped 0.69 because it was shunned upstream due
to not actually fixing the Yahoo! problem, and installed Perl all wrong.
Since 0.68 we've added Contact support, Tcl plugins, SSL for Jabber
and the new MSN plugin, and fixed the Yahoo! connection problems. Also,
I'm experimenting with a new changelog format.
- pays attention to the challenge type that Yahoo! sends us, and
presents an error on unknown types (closes: #212941)
- supports the new Yahoo! challenge type (one of them, anyway)
(closes: #212749)
- supports the new MSN protocol (closes: #207745)
* debian/patches/00-libtoolize.patch:
- reran libtoolize with the Debian version of libtool, so that Perl
support works on arm, m68k and friends (thanks Keybuk)
* debian/patches/cvs-yahoo-tweak.patch:
- tweak to Yahoo! authentication code [from CVS]
* debian/patches/gtkspell-locale.patch:
- sets the GtkSpell dictionary according to the current locale. Not
merged upstream because blah blah Windows aspell blah blah, but I
don't really care. Sigh. (closes: #202009)
* debian/control:
- standards version 3.6.1
- dropped build conflicts in light of --disable-nss working properly
now (I submitted a patch just before 0.69)
- added versioned build-depend on libperl-dev >= 5.8.1, because DESTDIR
just decided to start working in MakeMaker, and I don't see how to
consistently support builds both with and without that functionality
without grossly hacking the build system
- change Tcl build-depend to tcl8.3-dev, which is all it supports at
the moment, and add tk8.3-dev for Tk support
- added ${perl:Depends} to depends
* debian/gaim.docs:
- removed plugins/SIGNALS because it's gone upstream - all the API docs
are moving into Doxygen, and I'll consider shipping them whenever
upstream starts shipping header files
* debian/rules:
- add --disable-nss to ensure consistent SSL library choice
-- Robert McQueen <robot101@debian.org> Mon, 29 Sep 2003 13:28:07 +0100
gaim (1:0.68+0.69cvs20030917-1) experimental; urgency=low
* CVS snapshot. Contains SSL support for Jabber and the new MSN plugin,
contact support, a Tcl plugin loader, and the two patches that were
in 0.68-1.
* Added build depends for GNUTLS and Tcl, and conflicts for NAS and NSS
(because we don't build with this functionality).
-- Robert McQueen <robot101@debian.org> Thu, 18 Sep 2003 00:03:42 +0100
gaim (1:0.68-1) unstable; urgency=low
* New upstream version. (closes: #209021)
- new event system and perl API
- ignores MSN's upgrade spam (new MSN plugin will be in 0.69)
- fixes Jabber registration (closes: #208070)
- now includes code to retrieve, parse and display Yahoo and MSN
profiles (closes: #201498)
* Start using the simple patch system from cdbs:
- cvs-libgaim-remote-glib.diff: link libgaim-remote with glib
[from CVS] (closes: #210652)
- cvs-yahoo-version.diff: update Yahoo protocol version to avoid
warnings and/or allow signing in [from CVS]
-- Robert McQueen <robot101@debian.org> Wed, 17 Sep 2003 02:20:20 +0100
gaim (1:0.67-3) unstable; urgency=low
* Apply my patch from CVS to stop the ticker crashing when it's reloaded
(enterprising hack to make GType reuse the existing type instead of
trying to register it again). (closes: #203727)
* Apply fix from CVS to stop crashes if you don't have yourself on your
buddy list (the developers all do this because it's the best way
to track your own status at the moment). (closes: #206574)
-- Robert McQueen <robot101@debian.org> Sat, 23 Aug 2003 04:54:11 +0100
gaim (1:0.67-2) unstable; urgency=low
* Apparently libgaim-remote is too small to warrant a package of its own
until anything else wants to use it.
* Tweak description again to make less of an issue of license and widget
set. (closes: #205518)
-- Robert McQueen <robot101@debian.org> Tue, 19 Aug 2003 19:41:48 +0100
gaim (1:0.67-1) unstable; urgency=medium
* New upstream version with much core/UI splitting work and a cool new
key/value XML-based prefs engine, rewritten IRC plugin, status icons
in conversation tabs, a tab colour for unseen status messages, and
various dialog rewrites. (closes: #202666, #202742, #203471)
* Merged all the patches from 0.64-3 and should fix a few other bugs:
- store proxy settings correctly (closes: #195035, #195304)
- wait for the remote buddy list to download (on AIM/ICQ) before
maniupulating buddies (closes: #195655, #196445)
- display remote aliases correctly (closes: #196664)
- new prefs system works now (closes: #200810)
- apparently this one is fixed in 0.66 too (closes: #205093)
* Between 0.64 and 0.67, various fairly crucial MSN bugfixes were made,
preventing all manner of infinite loops, unclosable chat windows,
cloned buddies, and the like. (closes: #199421, #199515, #200655)
(closes: #203306, #203309, #203866, #204960)
* Skipped 0.65 because it was a little broken, hence the hasty release of
0.66.
* Skipped 0.66 because I decided to switch to cdbs while I was reworking
the packaging for the new libgaim-remote library, and it turned out
the build system was subtly broken and needed fixing. These fixes
are in this version. So it builds. Hurrah.
* By skipping two versions, I shielded you all from the harsh disappearance
of the Message Notification plugin in 0.65 and 0.66. Which was my plan
all along, of course.
* Medium urgency because this is a pretty solid release with lots of bug
fixes, and 0.64-3 sucked.
* Split out library and -dev packages for the new libgaim-remote0 library.
* Switched to CDBS. Shrunk debian/rules somewhat. :D
* Made the description less AIM-centric.
* Updated standards version to 3.6.0.
-- Robert McQueen <robot101@debian.org> Fri, 15 Aug 2003 06:06:37 +0100
gaim (1:0.64-3) unstable; urgency=medium
* Medium urgency because MSN and Yahoo are fairly broke in the previous
release, which should *not* be immortalised in testing.
* Added patch from CVS to fix various MSN crashes and corruption of
your friendly name. (closes: #195603)
* Added patch from CVS to fix crash for buddy lists sorted by status.
(closes: #196338, #196515)
* Backported fix from CVS to fix Yahoo's new penchant for lower-case
user names.
* Backported fix so AOL mail is not checked if you disable the option.
(closes: #196733)
* Corrected spelling error in Oscar (also in CVS). (closes: #196840)
-- Robert McQueen <robot101@debian.org> Sun, 29 Jun 2003 02:34:32 +0100
gaim (1:0.64-2) unstable; urgency=low
* Updated to standards version 3.5.10.
* Replaced the Debian menu icon with a nice-looking one now that the menu
policy doesn't mandate a crappy pallete.
* So I spent a day cleaning the BTS for the Gaim package. Closed about 20
bugs, reassigned 3 and fixed 7. This is the second batch of fixes.
* Adjust wording so iconaway plugin no longer claims to minimise the away
window, which is a dialog and shouldn't (or sometimes can't) be
minimised. It wasn't doing it anyway. (closes: #188821)
* Linkify text appended by the history plugin if the option is enabled
to do this for conversations. (closes: #189511)
* Validate UTF8 for incoming server-stored aliases because clients like
Trillian send us random encodings but call them UTF-8. Avoids nasty
crashing. (closes: #189662)
* Added a "Close" button to the file transfer dialog. (closes: #192366)
-- Robert McQueen <robot101@debian.org> Sat, 31 May 2003 16:56:18 +0100
gaim (1:0.64-1) unstable; urgency=low
* New upstream version.
- Fixes some MSN problems, spiffs the debug window some more, and more
core/ui splitting work from Chip the living legend.
- New user request API fixes age-old dangling callback problems with
prompt dialogs such as the IRC nick change dialog. (closes: #189946)
* Made the signon meter window not dialog hinted, so you can ignore it and
carry on using Gaim while your eleventy billion accounts sign in. Found
and fixed a leak in the process. (closes: #187996)
* Fixed a minor typo which caused "</FONT>" to be appended even when the
font dialog was cancelled. (closes: #188048)
* Fixed "Copy link location" menu entry the right way. The correct clipboard
to copy to is... both of them. (closes: #191301)
-- Robert McQueen <robot101@debian.org> Sat, 31 May 2003 05:28:51 +0100
gaim (1:0.63-1) unstable; urgency=low
* New upstream version. The 'I am happy ChipX86' version. He hacked loads on
this release, giving us a new MSN plugin, a new plugin API, and brought
us far closer to a core/UI split than we've ever done before. Three
cheers for Chip! Also thanks to faceprint, you can put chats in your
buddy list once more. And there was much rejoycing.
-- Robert McQueen <robot101@debian.org> Sun, 18 May 2003 04:40:19 +0100
gaim (1:0.62-1) unstable; urgency=low
* New upstream version.
- fixes AIM/ICQ proxy connection problems (closes: #188530)
- includes updated Japanese translation, thanks Junichi Uekawa
(closes: #188819)
- buddy list keyboard accelerators fixed (closes: #189843)
-- Robert McQueen <robot101@debian.org> Sun, 27 Apr 2003 19:59:42 +0100
gaim (1:0.61-1) unstable; urgency=low
* New upstream version. Fixes buddy list drag and drop issues. Some
new icons and spacing to improve the look of the buddy list. New
more flexible buddy pounce code.
-- Robert McQueen <robot101@debian.org> Fri, 11 Apr 2003 03:12:18 +0100
gaim (1:0.60.0-1) unstable; urgency=low
* New upstream version. Actually 0.60, but 0.60.0 is higher than the
versions on my CVS debs. Skipped 0.59.9, oh well. (closes: #184493)
- it has been in development for almost a year, and a third of all the
code has been rewritten in porting to Gtk2!
- features new buddy list with optional large buddy list icons
(closes: #130436)
- group folding is persistent across signons and signoffs
(closes: #133238)
- i18n fixed and rewritten in all protocols
(closes: #155058, #185531)
- adds X11R6 session management support (closes: #151272)
- new sound system with libao has arts plugin (closes: #170960)
- adds "Display remote nick if no alias is set" option which can display
and update MSN friendly names automatically (closes: #176466)
- other cool stuff like XML-based buddy list, global groups, asynchronous
DNS lookups, draggable conversational tabs, tray icon plugin to
replace the GNOME applet, ICQ server-stored buddy lists, cute new
PNG icons, external sounds...
* Added long title to Debian menu entry. (closes: #175379)
* Disabled NAS support. Feel free to add it to libao.
* Dropped licq2gaim.pl, it doesn't work with XML buddy list format.
* Tweaked debian/rules with new build options and such.
* Updated build-deps with Gtk2 etc, updated standards version, suggest
gnome-panel, kicker or docker for the tray icon plugin, and detail the
new arrangement in the description.
* Updated README.Debian with triumphant post-release banter.
* Wrote a manpage for gaim-remote. Fancy that.
-- Robert McQueen <robot101@debian.org> Sat, 5 Apr 2003 12:30:11 +0100
gaim (1:0.59.8-1) unstable; urgency=low
* The 'roll on 0.60' release.
* New upstream version. I'd apologise for the delay, but I put the
interesting fixes in 0.59.7-1 so there was no hurry anyway.
* No longer build the GNOME applet variant. It only works with GNOME
1.4 which isn't shipped in Debian sid any more. Furthermore, the
applet won't exist in the Gtk2 version of Gaim, it's already been
replaced with my Tray Icon plugin. (closes: #180640)
* Add a note in the description, and a longer one in README.Debian,
explaining why gaim-gnome is gone. It's not coming back either.
If I get any bugs about this I'm gonna be hella annoyed. Use the
CVS debs from here:
deb http://people.debian.org/~robot101/gaim unstable cvs
deb-src http://people.debian.org/~robot101/gaim unstable cvs
And no, I will not upload them to sid. It's still buggy as hell.
* Kill off gaim-common and gaim-gnome packages. Conflict and replace
because all files belong to the gaim package now, and provide in
the vain hope that apt/dpkg will choose gaim over old gaim-gnome
packages and that I won't have to make a stub package.
* Major crapectomy in debian/rules now that we're only building the
one time. Thank god.
* Add gaim.preinst to remove old /usr/share/doc/gaim symlink because
dpkg wisely avoids transitions between symlinks and directories
and vice versa.
* Updated build-depends to exclude GNOME and libpanel-applet, include
esd, have libaudio-dev instead of nas-dev, and no longer require
perl 5.8 (sid is 5.6 on all arches now).
* Update standard version to 3.6.8.
-- Robert McQueen <robot101@debian.org> Tue, 18 Feb 2003 00:04:05 +0000
gaim (1:0.59.7-1) unstable; urgency=medium
* New upstream version. Various bug fixes including a remote crash bug
with malicious AIM rendezvous packets.
* Includes patch from CVS to fix Yahoo login problems - sends protocol
version 0x0900 instead of 0x0600.
* Yahoo i18n patch was included in this release. (closes: #170542)
* Fixed a small error causing the "Insert Smiley" button to crash when
offline. (closes: #175442)
* Replaced invasive automatic config.{guess,sub} updating from
debian/rules and replaced with much saner symlinking method.
* Murdered pallet of gaim-menu.xpm (for the Debian menu entry)
according to the idotic menu policy, to shut lintian up.
* This release is from the upstream 'gtk1-stable' branch. If you like
Gtk2, or use GNOME 2 or KDE 3.1, please consider trying my Gaim CVS
snapshot debs. The Gtk2 port is being worked on in CVS, and as a
result this version is a little buggier and has some regressions,
including no working IM image support and no protocol specific
smileys, but it does have infinitely better i18n, looks a lot
prettier, has support for session management (ie start at login in
GNOME 2), and also features my Tray Icon plugin, which replaces the
applet, and is visible in system-tray-applet in GNOME 2, or the
normal Kicker system tray in KDE 3.1. Please mail me directly with
any bugs you find in these, rather than filing them in the BTS. The
apt lines are:
deb http://people.debian.org/~robot101/gaim unstable cvs
deb-src http://people.debian.org/~robot101/gaim unstable cvs
(closes: #148248, #165291, #171714)
-- Robert McQueen <robot101@debian.org> Mon, 6 Jan 2003 06:11:33 +0000
gaim (1:0.59.6-1) unstable; urgency=low
* New upstream version. Fixes gigantic timestamp font in Jabber group
chats. (closes: #167153)
* Include patch from CVS to fix Yahoo! i18n issues (hopefully) and
crashes due to protocol changes. (closes: #160347, #166505)
-- Robert McQueen <robot101@debian.org> Sun, 24 Nov 2002 06:01:09 +0000
gaim (1:0.59.5-2) unstable; urgency=low
* Added patch from upstream CVS to fix bugs when an invalid gtk style
is loaded. Sigh. Roll on 0.60 with Gtk2 goodness. (closes: #152274)
-- Robert McQueen <robot101@debian.org> Sat, 26 Oct 2002 22:41:20 +0100
gaim (1:0.59.5-1) unstable; urgency=low
* New upstream version, sorry about the delay. Considering 0.59.3-1
contained most of the fixes that went into 0.59.4, I didn't bother
packaging it. The only changes to 0.59.5 are to fix a crash in the
Yahoo plugin due to a slight change in the protocol.
* Updated config.sub from 20020621 to 20020905 and config.guess from
20020529 to 20020903.
-- Robert McQueen <robot101@debian.org> Fri, 25 Oct 2002 02:42:12 +0100
gaim (1:0.59.3-1) unstable; urgency=low
* New upstream version.
* Updated to standards version 3.5.7.
* Tighten perl build-dep to require 5.8 (thanks Ryan Murray).
* Applied fixes from upstream CVS:
- remove Ctrl+K binding for colour
- fix yahoo memleak
- make the edit tab in the blist scrollable horizontally
- apply patch from A Lee to do charset transitions character by
character to avoid iconv's truncation (closes: #162396)
-- Robert McQueen <robot101@debian.org> Sun, 29 Sep 2002 18:03:49 +0100
gaim (1:0.59.2-1) unstable; urgency=low
* New upstream version.
* Revert all patches here, everything's included.
* Except for a blooper upstream which removes spaces from MSN and Yahoo
screen names, and adds random NULs instead. Doh! Pulled fix from
CVS.
-- Robert McQueen <robot101@debian.org> Fri, 13 Sep 2002 02:22:05 +0100
gaim (1:0.59.1-4) unstable; urgency=low
* Update build-deps to libgnome-dev (>= 1.4.2-3) and
libpanel-applet-dev (>= 1.4.1-2) to ensure imlib1/png2 is used.
* Minor modification from Matt Wilson at RedHat to fix UTF8 font
selection in GtkImHtml (widget used in conversation/chat windows).
-- Robert McQueen <robot101@debian.org> Tue, 3 Sep 2002 18:33:24 +0100
gaim (1:0.59.1-3) unstable; urgency=high
* The 'getting sick of this now' release. Third time lucky and all...
* Ryan Murray (of gdk-pixbuf-dev fame) suggests dropping the new build
dependencies and gently hacking the Makefile to substitute them out
of linking the applet, because they're not actually necessary. This
will also fix libpng2/3 compatibility issues that were making the
applet fall back to the ugly xpm icon (until Christian Marillat
stops being an idiot and links GNOME 1.4 against libpng2 again).
* Thanks to Lukas Geyer (of JimButton fame) for pointing me at the
right make features I needed to accomplish this without too much
hacking.
* Include a patch from Chris Blizzard (of RedHat fame) to fix an
oversight in my fix for the browser security vunlerability. Access
to unallocated memory in the non-manual browser handlers could have
caused crashes in some situations. Cheers Chris. Sorry everyone.
* Also edit the default manual browser command to not contain quotes
any more. Debian should get a /usr/bin/sensible-browser or
something.
-- Robert McQueen <robot101@debian.org> Wed, 28 Aug 2002 02:42:42 +0100
gaim (1:0.59.1-2) unstable; urgency=high
* Well, that's the reason. gdk-imlib-dev dropped the dependencies for
lib{jpeg,png,tiff,gif}-dev because apparently they're not necessary.
libgnome-dev probably needs to add these.
* Added build-deps on libpng3-dev and libtiff3g-dev, so that Gaim can
finally build on the buildds without me NMUing libgnome-dev in a fit
of anger.
* Set urgency back to high to hammer the point home. If this doesn't
build I'm going to be mighty annoyed.
* Changed gaim-gnome depend to gnome-panel (<< 1.5). It doesn't work
with GNOME 2. I'm writing a docklet for that.
-- Robert McQueen <robot101@debian.org> Mon, 26 Aug 2002 19:02:14 +0100
gaim (1:0.59.1-1) unstable; urgency=low
* New upstream version from the gtk1-stable branch. Merges my browser.c
patch, works with perl 5.8 and gettext 0.11.x, and has a pretty
icon.
* Upstream merged patch for fixed i18n with libiconv.
(closes: #154473, #155058)
* Updated gaim-menu.xpm in light of new gaim.png icon, and fixed
gaim-common.files for the new icon name.
* Fixes idiotic handling of http_proxy environment variable.
(closes: #144244)
* Updated ja.po because upstream is ignoring me about this.
(closes: #154485)
* Added libjpeg-dev build-dep. GNOME 1.4 is messed up in a half-baked
libpng2 -> 3 transition, and this dep must've fallen out somewhere
else along with someone's brain. Should let the security fix build
and propogate to sarge.
-- Robert McQueen <robot101@debian.org> Mon, 26 Aug 2002 04:59:50 +0100
gaim (1:0.59-2) unstable; urgency=high
* Wrote patch to fix hideously insecure execution of unescaped
arbitrary strings through the shell for the Manual browser URL click
handler. Replaces any spaces in the URL with +, and runs the user's
browser command directly without the shell. Users will soon learn
not to quote the %s in their browser command. (closes: #157909)
* Added libungif4-dev to build-deps. Looks like someone's brain fell
out. Ho hum.
* Updated config.sub from 20020307 to 20020621, and config.guess from
20020320 to 20020529.
-- Robert McQueen <robot101@debian.org> Sat, 24 Aug 2002 02:14:49 +0100
gaim (1:0.59-1) unstable; urgency=low
* New upstream version. Finally. Contains various new and updated
translations, and fixes for various bugs, crashes & memleaks.
* Should work around a Gtk+ bug that causes spinning when some text
widget is smaller than the text height. (closes: #117498)
* Fixes strange tabbing order in 'Add Buddy' dialog. (closes: #134502)
* Hopefully a final end to stupid MSN errors. (closes: #147141)
* Should display UTF8 MSN names in their full glory. (closes: #150354)
* Updated config.sub from 20010420 to 20020307, and config.guess from
20010420 to 20020320.
-- root <root@hadesian.demon.co.uk> Fri, 26 Jul 2002 23:19:27 +0100
gaim (1:0.58-2) unstable; urgency=low
* Applied patch from Chris Blizzard (of Redhat fame =) to fix munged
GNOME applet icon at startup. Cheers! (closes: #147071)
* Enabled NAS audio in non-GNOME package. (closes: #147291)
* Returned globbing to debian/gaim-common.files now we don't need to
make an exception for iconaway.so.
-- Robert McQueen <robot101@debian.org> Fri, 24 May 2002 23:24:16 +0100
gaim (1:0.58-1) unstable; urgency=high
* The 'DOH!' release.
* New upstream version, lots of nice stuff. See the changelog. =)
* To avoid upsetting upgrades, gaim-common now replaces suitably old
gaim-gnome packages because iconaway.so moved. (closes: #144945)
* Another attempt by upstream to fix those annoying 'Already there'
MSN errors. (closes: #145722)
* Fixes GNOME applet transparency problems. (closes: #145915)
* In the previous version, the MSN plugin got secure logins to Hotmail
that used MD5 auth cookies in a file which was opened in the
browser, and would log you straight into your inbox. Ironically,
this improved security used blatantly insecure tempfiles, which
were also created with the 644 mode, leaving the way open for
symlink attacks, and anyone on your system reading your mail. This
is fixed in this release. (closes: #146750)
* Not to mention the overflow in the Jabber plugin that got fixed.
* Automatic update of config.sub from 20010907 to 20020307, and
config.guess from 20010904 to 20020320.
-- Robert McQueen <robot101@debian.org> Tue, 14 May 2002 17:44:43 +0100
gaim (1:0.57-2) unstable; urgency=high
* The 'Ahh... phew' release. One or two patches from CVS.
* Fixes segfault DOS in TOC protocol code. (closes: #144318)
* Returns iconaway.so to gaim-common, the gnome/non-gnome dependent
code has been moved to the binary itself.
* High priority to reach woody with these fixes, and the fix in 0.57
for Yahoo's new authorisation method.
-- Robert McQueen <robot101@debian.org> Sun, 28 Apr 2002 16:54:18 +0100
gaim (1:0.57-1) unstable; urgency=low
* The 'You did WHAT with configure.ac?!?' release.
* New upstream version. Adds an evil autoconf hack upstream, support
for Yahoo's new authorisation method, new keyboard shortcuts,
hashed secure logins for Hotmail from your MSN account, and various
translations and Jabber improvements.
-- Robert McQueen <robot101@debian.org> Fri, 26 Apr 2002 17:09:18 +0100
gaim (1:0.56-1) unstable; urgency=low
* The 'Hola from Tenerife!' release.
* New upstream version. Signal patch merged. Various bugfixes, and the
much-awaited send history finally appears.
* Automatic update of config.sub from 20010420 to 20020307, and
config.guess from 20010420 to 20020320.
-- Robert McQueen <robot101@debian.org> Sat, 13 Apr 2002 18:40:05 +0100
gaim (1:0.55-2) unstable; urgency=low
* Wrote patch to unblock useful signals like SIGCHLD because gdm
helpfully blocks them. Helps avoid zombies from filling your
process space when you start the applet from the GNOME panel.
[debian/patches/unblock-handled-signals.diff]
* Applied patch from CVS to fix MSN problems such as being constantly
prompted to allow buddies who you actually wanted to block.
[debian/patches/various-msn-fixes.diff]
* Automatic update of config.sub from 20020222 to 20020307, and
config.guess from 20020219 to 20020320.
-- Robert McQueen <robot101@debian.org> Wed, 3 Apr 2002 20:53:38 +0100
gaim (1:0.55-1) unstable; urgency=low
* The 'and relax...' release.
* New upstream version (all patches have been merged).
* Updated Spanish translation. (closes: #138471)
* Fixes HTTP incompliance in proxy code. (closes: #140036)
* Fixes crashing when enabling/disabling animated buddy icons.
(closes: #140192)
-- Robert McQueen <robot101@debian.org> Sat, 30 Mar 2002 16:49:43 +0000
gaim (1:0.54-6) unstable; urgency=low
* Updated gaimrc.c to recognise the option for the new Command sound
method so it doesn't override it at loadup. (closes: #139253)
-- Robert McQueen <robot101@debian.org> Thu, 21 Mar 2002 13:01:42 +0000
gaim (1:0.54-5) unstable; urgency=low
* Added MSN embarrased icon. (closes: #139109)
* Updated MSN pixmaps from CVS to avoid evil crashing on some archs.
-- Robert McQueen <robot101@debian.org> Wed, 20 Mar 2002 11:14:58 +0000
gaim (1:0.54-4) unstable; urgency=low
* Fixed a compiler warning with the sound patch.
-- Robert McQueen <robot101@debian.org> Sun, 17 Mar 2002 17:56:05 +0000
gaim (1:0.54-3) unstable; urgency=low
* Fixed a few things with my sound patch, like the mysterious swapping
of the recieve and first recieve sound options versus events. Doh!
(closes: #138759)
-- Robert McQueen <robot101@debian.org> Sun, 17 Mar 2002 17:26:50 +0000
gaim (1:0.54-2) unstable; urgency=low
* Removed ICQ plugin. It really doesn't work very well at all any
more. (closes: #137058)
* Updated README.Debian to take account of this.
-- Robert McQueen <robot101@debian.org> Sat, 16 Mar 2002 19:46:42 +0000
gaim (1:0.54-1) unstable; urgency=medium
* New upstream version. Goodies like IM Image sending for Oscar,
protocol specific smileys, off-line message and improved
typing notification support for Yahoo, DCC chat and mIRC formatting
support for IRC, and lots of general bugfixes, especially
pertaining to never being asked to accept/decline MSN buddies who
add you when you're off-line. (closes: #138472)
* Medium urgency upload because 0.53 was buggy but I had to let 0.53-2
go in to testing because of the nul vulnerability.
* The six (!) patches in 0.53-2 from CVS are all included in this
version.
* 'Oscar' protocol renamed to 'Oscar / ICQ' upstream. (closes: #137061)
* Applied patch from me, already accepted upstream, with various
cleanups to fix unusual sound behaviour:
- attempting to play an internal sound with a command now
generates an error instead of silently failing
- attempting to play a file with the native method now warns
before probably failing
- the 'Test' button in the sound preferences now temporarily
enables the sound under test, so it always tries to play it
- using a command to play sounds is now a seperate option that
must be explicitly enabled, avoiding problems with testing for
other options happening before testing if a command had been
specified (closes: #137010)
* Now building the non-GNOME version against ESD to make sound support
more useful. Native sound support can only be expected to work for
internal sounds. (closes: #137013)
* Remove the .h files from gaim-common. It turns out to be very hard
indeed to make Gaim plugins build outside the Gaim source tree. I
will probably make a gaim-plugins package with a few worthy plugins
like the russian charset conversion, xosd signon/signoff
notification, etc - I'm open to suggestions. Plugins must be
runtime configurable (unlike irc-extras), actually useful (unlike
the one to arbitrarily change your idle time), and build against
the latest Gaim.
* Include the licq2gaim.pl buddy list import script in the examples
dir in gaim-common.
-- Robert McQueen <robot101@debian.org> Sat, 16 Mar 2002 18:47:07 +0000
gaim (1:0.53-2) unstable; urgency=low
* The 'No, I don't use CVS' release.
* Applied patches from CVS so that:
- closing a conversation window when a buddy is typing doesn't
cause a crash [debian/patches/close-typing-buddy-crash.diff]
- server-side buddy lists are disabled for ICQ over Oscar to avoid
mysterious bugs with authentication-required buddies not
appearing on-line [debian/patches/no-ssi-for-icq.diff]
- Gaim doesn't fork and uses gdk_beep() for console beeps
[debian/patches/non-forked-gdk-beep.diff] (closes: #136165)
- Gaim doesn't gradually make the X server use all your RAM
[debian/patches/memleak.diff]
- typing notification doesn't crash Gaim if you don't use tabs
[debian/paches/no-tab-crash.diff]
- sending a nul or � doesn't crash Gaim
[debian/patches/nul-crash.diff]
-- Robert McQueen <robot101@debian.org> Mon, 4 Mar 2002 19:23:38 +0000
gaim (1:0.53-1) unstable; urgency=low
* New upstream version. Adds typing notification, new ICQ icons, IM
Images, screen-name formatting support and server-side buddy list
storage/retrieval for Oscar, and various other nice features and
cleanups. (closes: #136512)
* Includes documentation and MSN segfault fixes that were patched into
the previous release.
* Automatic update of config.{sub,guess} from 20010420 to 20020222.
-- Robert McQueen <robot101@debian.org> Sun, 3 Mar 2002 19:06:52 +0000
gaim (1:0.52-1) unstable; urgency=medium
* New upstream version. Fixes a variety of nasty problems.
* Fixes crashing on connection with some MSN buddy lists.
* Uses correct Yahoo! messenger server. (closes: #133343)
* Fixes DOSable erroneous handling of HTML comments. (closes: #133603)
* Applied patch from CVS to fix MSN segfaults. (closes: #115538)
* Moved iconaway.so plugin into gaim-gnome package because it's
useless without the applet. (closes: #133500)
* Fixed little typo in manpage (already fixed in CVS).
-- Robert McQueen <robot101@debian.org> Sun, 17 Feb 2002 22:32:10 +0000
gaim (1:0.51-2) unstable; urgency=low
* Fixed description of gaim-gnome to make it obvious that it is a
panel applet.
* Made gaim-gnome depend on gnome-panel. It's unreasonable to request
that libpanel-applet0 does so, but gaim-gnome is useless without
it. (closes: #131233)
-- Robert McQueen <robot101@debian.org> Mon, 28 Jan 2002 20:25:04 +0000
gaim (1:0.51-1) unstable; urgency=low
* The 'Hi anyone on gaim's PTS' release.
* New upstream version, mostly bug fixes. (closes: #130737)
* Upstream developer Eric Warmenhoven departs... thanks for all of
your help and effort - you'll be greatly missed by all.
* According to him, crashes were caused by a Gtk+ bug which has now
been worked around. (closes: #115538)
* He removed the help message a few weeks ago because I said it didn't
wrap properly... not sure how helpful that was though.
(closes: #125310)
* He also grappled with the GNOME panel to implement transparent
backgrounds as best he could. The Gaim applet icon will have the
same background image as the panel, but it will not line up with
the panel's because the panel doesn't provide enough imformation to
achieve that. (closes: #128449)
* Made gaim-common include a handful of .h files so that you can build
plugins without the Gaim source - this opens the way for packaging
plugins that don't come with Gaim. The reason is that I do not wish
to include unofficial plugins in Gaim and accept responsibility for
ensuring they work with the latest versions, or be forced to remove
them from the package at a later date, sorry. (closes: #129737)
* I can no longer reproduce this bug with this new version, but I am
also unable to determine if/when exactly it was fixed from the CVS
logs. If you can still make it happen, please reopen it and I'll
chase it up. (closes: #117498)
* Fixed a few minor errors in the manpage. (closes: #130435, #130443)
* Re-worked description to highlight mutli-protocol support.
(closes: #130437)
* Automatic update of config.{sub,guess} from 20010907 to 20020102.
-- Robert McQueen <robot101@debian.org> Sun, 27 Jan 2002 05:45:05 +0000
gaim (1:0.50-1) unstable; urgency=low
* The 'Hi everyone who reads d-d-c!' release.
* New upstream version, includes GnomeICU import and Galeon patches
from 0.49-2. (closes: #125897)
* Added a suitably scaled Debian menu icon for gaim. (closes: #122302)
* Re-ordered build to do the non-GNOME version first and install that
'manually', so all the files from the GNOME applet get installed
with the 'make install' target. This means gaim-gnome now contains
the applet panel images. (closes: #122315)
* Fixed re-declaration of time() in jabber/xtream.c. (closes: #124390)
-- Robert McQueen <robot101@debian.org> Thu, 20 Dec 2001 18:30:16 +0000
gaim (1:0.49-2) unstable; urgency=medium
* The 'grr... dpkg' release. Fixes possibly troublesome package
relationship problems.
* Made gaim-gnome conflict and replace old gaim packages.
* Made gaim-common have a versioned depend on gaim or gaim-gnome,
because a dpkg bug seemed to let you install an old gaim-common
with a new gaim or gaim-gnome, even though they have a versioned
depend on gaim-common.
* Added patch from CVS to support GnomeICU buddy list importing.
* Added option to use Galeon as the browser.
-- Robert McQueen <robot101@debian.org> Sat, 1 Dec 2001 22:41:04 +0000
gaim (1:0.49-1) unstable; urgency=low
* New upstream version.
* Removed evil hack from debian/rules to rename plugins from
libfoo.so.0.0.0 to libfoo.so (fixed upstream).
* Updated description to include Gadu-gadu protocol.
* Removal of buddies from within the IM window is now confirmed.
(closes: #116442)
* Memory leak in buddy list fixed. (closes: #119639)
* Pgup/pgdown in IM windows now scrolls only one text box, not both.
(closes: #120027)
* Included a minor patch to remove ^M characters from Oscar messages.
(closes: #120595)
* Now suggests ispell. (closes: #121656)
-- Robert McQueen <robot101@debian.org> Fri, 30 Nov 2001 01:43:01 +0000
gaim (1:0.48-1) unstable; urgency=low
* New upstream version. (closes: #119748)
* Better support for ICQ2000 features via OSCAR protocol, like
server/offline messages.
* Doesn't temporarily grow small GNONE panels when the applet starts
up.
* GNU config automated update: config.sub (20011005 to 20011108),
config.guess (20011005 to 20011108)
-- Robert McQueen <robot101@debian.org> Fri, 16 Nov 2001 19:46:48 +0000
gaim (1:0.47-1) unstable; urgency=low
* New upstream version.
* Sound-playing children now time out after 30 seconds.
(closes: #116982)
-- Robert McQueen <robot101@debian.org> Fri, 2 Nov 2001 00:53:18 +0000
gaim (1:0.46-1) unstable; urgency=low
* New upstream version. (closes: #114950)
* Added documentation: plugins/PERL-HOWTO, plugins/SIGNALS,
doc/CREDITS, doc/FAQ.
-- Robert McQueen <robot101@debian.org> Fri, 19 Oct 2001 00:37:19 +0100
gaim (1:0.45-1) unstable; urgency=low
* New upstream version, includes fix to avoid infinite IM window
growth. (closes: #114950)
* Upgraded to DH_COMPAT=3 to make /etc/CORBA/servers/gaim_applet.gnorba
a conffile. Adjusted build deps to match.
-- Robert McQueen <robot101@debian.org> Sun, 14 Oct 2001 19:45:20 +0100
gaim (1:0.44-2) unstable; urgency=medium
* Applied patch from CVS to avoid IM windows sizing to 0 by default
and growing limitlessly.
-- Robert McQueen <robot101@debian.org> Tue, 25 Sep 2001 01:28:14 +0100
gaim (1:0.44-1) unstable; urgency=low
* New upstream version.
* Enabled perl support, upstream assures me it works now.
(closes: #112732)
-- Robert McQueen <robot101@debian.org> Sun, 23 Sep 2001 18:37:20 +0100
gaim (1:0.43-1) unstable; urgency=medium
* New upstream version including various bugfixes.
* Colour selection dialogs now remember the previous colours.
(closes: #101562)
* Autorecon plugin now has an exponential backoff to allow users to
correct non-transient errors. (closes: #102042)
* Changed 'buddy' prompt to 'contact' to make the Add Buddy dialog
less AIM-specific. (closes: #105460)
* Users can now edit their alias with the MSN plugin. (closes: #110966)
* Added postinst scripts for gaim and gaim-gnome to rmdir their dirs
from /usr/share/doc if they exist, and replace them with symlinks
to gaim-common. (closes: #111127)
* Seeing as we have to build twice, try and build as little as
possible the first time round (just the gaim_applet binary and its
dependencies) to make it more efficient.
* Updated config.{sub,guess} from latest autotools-dev.
-- Robert McQueen <robot101@debian.org> Tue, 11 Sep 2001 22:42:51 +0100
gaim (1:0.11.0pre15-1) unstable; urgency=low
* New maintainer. (closes: #100549)
* New upstream version. (closes: #54105, #96166)
* Repackaged with sane version number, pristine .orig.tar.gz, and
seperate .diff.gz. (closes: #106488)
* MSN and OSCAR protocols are functional at time of release.
(closes: #92045, #105841)
* Plugins, locales and docs are now in a shared gaim-common package.
* Therefore, gaim and gaim-gnome are concurrently installable.
(closes: #69794, #87873)
* These new shared plugins are not linked against GNOME.
(closes: #83427)
* The GNOME applet now has a CORBA file and correct Applet menu entry,
so it correctly integrates with the panel and saves settings.
(closes: #80587, #92950, #101560)
* Added code to debian/rules to update config.{guess,sub} from
autotools-dev when necessary. (closes: #104934)
-- Robert McQueen <robot101@debian.org> Fri, 31 Aug 2001 03:38:54 +0100
gaim (1:0.11.0pre11) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <edmonds@debian.org> Mon, 14 May 2001 17:40:05 -0400
gaim (1:0.11.0pre9-1) unstable; urgency=low
* New upstream release. Closes: #91854
-- Robert S. Edmonds <edmonds@debian.org> Tue, 27 Mar 2001 07:32:16 -0500
gaim (1:0.11.0pre8-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <edmonds@debian.org> Sun, 25 Mar 2001 15:26:59 -0500
gaim (1:0.11.0pre7-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <edmonds@debian.org> Sun, 18 Mar 2001 18:40:46 -0500
gaim (1:0.11.0pre4-2) unstable; urgency=low
* Fixed gaim package, now contains a plain GTK-linked binary.
-- Robert S. Edmonds <edmonds@debian.org> Tue, 20 Feb 2001 18:12:45 -0500
gaim (1:0.11.0pre4-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <edmonds@debian.org> Sat, 23 Dec 2000 16:38:09 -0500
gaim (1:0.11.0pre2-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <stu@brainfood.com> Wed, 13 Dec 2000 07:28:04 -0500
gaim (1:0.10.3-2) unstable; urgency=low
* Patched to fix remote HTML exploit when using OSCAR protocol. Closes: #77539
* New upstream release.
-- Robert S. Edmonds <stu@novare.net> Tue, 28 Nov 2000 19:48:33 -0500
gaim (1:0.10.1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <stu@novare.net> Sun, 17 Sep 2000 17:43:20 -0400
gaim (1:0.10.0-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <stu@novare.net> Mon, 11 Sep 2000 17:56:10 -0400
gaim (1:0.9.20-1) unstable; urgency=low
* Thanks to Decklin Foster <decklin@red-bean.com>
* New upstream release.
* removed au2h generated files from .diff.gz
* Build with and without Gnome support
-- Robert S. Edmonds <stu@novare.net> Wed, 26 Jul 2000 00:19:20 -0400
gaim (1:0.9.18-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <stu@novare.net> Sat, 3 Jun 2000 11:14:21 -0400
gaim (1:0.9.15-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <stu@novare.net> Sun, 21 May 2000 21:00:40 -0400
gaim (1:0.9.13-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <stu@novare.net> Wed, 29 Mar 2000 21:16:47 -0500
gaim (1:0.9.10-2) unstable; urgency=low
* Closes: #56340
-- Robert S. Edmonds <stu@novare.net> Wed, 23 Feb 2000 19:01:54 -0500
gaim (1:0.9.10-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <stu@novare.net> Tue, 23 Nov 1999 22:42:47 -0500
gaim (1:0.9.7-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <stu@novare.net> Sun, 15 Aug 1999 20:01:54 -0400
gaim (0.9.5-1) unstable; urgency=low
* New upstream release.
-- Robert S. Edmonds <stu@novare.net> Sat, 31 Jul 1999 23:12:54 -0400
gaim (0.8.0-1) unstable; urgency=low
* New upstream version.
-- Robert S. Edmonds <stu@novare.net> Mon, 17 May 1999 20:00:10 -0400
gaim (19990311-1) unstable; urgency=low
* New upstream version.
-- Robert S. Edmonds <stu@novare.net> Thu, 11 Mar 1999 16:58:29 -0500
gaim (19990227-1) unstable; urgency=low
* New upstream version.
-- Robert S. Edmonds <stu@novare.net> Sat, 27 Feb 1999 21:54:49 -0500
gaim (19981231-1) unstable; urgency=low
* New upstream version.
-- Robert S. Edmonds <stu@novare.net> Thu, 31 Dec 1998 14:06:14 -0500
gaim (19981126-1) unstable; urgency=low
* New upsteam version.
-- Robert S. Edmonds <stu@novare.net> Sat, 28 Nov 1998 17:46:25 -0500
gaim (19981117-1) unstable; urgency=low
* Initial release.
-- Robert S. Edmonds <edmonds@freewwweb.com> Wed, 18 Nov 1998 16:59:35 -0500
|