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
|
2002-07-20 03:41 bugcreator
* ickle/IckleApplet.cpp: Work around some evil #defines in the
gnome headers which caused problems elsewhere. Yes, in theory the
order of the #includes shouldn't matter, but unfortunately this is
practice... :/
2002-07-14 16:39 barnabygray
* ickle/EventSubstituter.cpp: More gcc 3.xx fixes.. thanks
Christian for picking these up
2002-07-14 13:57 barnabygray
* ickle/EventSubstituter.cpp: Fix for g++ 3.xx
2002-07-11 23:06 barnabygray
* ickle/ResendDialog.cpp: namespace fix
2002-07-10 20:28 bugcreator
* control/: CommandLineParser.cpp, CommandLineParser.h,
IckleControl.cpp: Okay, I'm finally convinced that deriving from
STL containers is a bad idea (Although it wasn't really a problem
in this case)
2002-07-06 13:16 barnabygray
* scripts/gnomeicu2ickle.pl: Updated gnomeicu conversion scripts
(thanks Leo)
2002-07-03 21:18 bugcreator
* control/: CommandLineParser.cpp, IckleControl.cpp: Minor fixes
2002-07-03 02:06 bugcreator
* ickle/MessageBox.cpp: A small nasty fix to avoid resizing of
controls (and messing up the position of the history scrollbar)
after the window has been shown
2002-07-03 01:58 bugcreator
* ctrlsocket/ControlCommands.h, control/CommandLineParser.cpp,
control/CommandLineParser.h, control/IckleControl.cpp,
control/IckleControl.h, ickle/ControlHandler.cpp,
ickle/ControlHandler.h: Added an option to ickle_control to let it
change any configuration setting
2002-06-25 19:08 barnabygray
* THANKS, ickle/IckleClient.cpp, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/StatusMenu.cpp, ickle/StatusMenu.h: Nils
Bjrklund <nilbjo-0@student.luth.se> - 'connecting...' status
message
2002-06-20 15:37 barnabygray
* Makefile.am, configure.in, pixmaps/Makefile.am: DIST stuff for
new pixmaps
2002-06-20 15:07 barnabygray
* configure.in: Fix so libtoolize will actually be run.
2002-06-16 01:01 barnabygray
* ickle/MessageBox.cpp, ickle/MessageBox.h, pixmaps/delivery.xpm,
pixmaps/info.xpm: Couple of little icons for message box. Toggling
of visibility delivery status part.
2002-06-15 14:44 barnabygray
* THANKS, ickle/MessageBox.cpp, ickle/MessageBox.h: Nils Bj|rklund
<nilbjo-0@student.luth.se> - workaround for gtk+ table bug in
message box
2002-06-08 14:51 barnabygray
* ickle/: History.cpp, IckleClient.cpp, IckleGUI.cpp, Icons.cpp,
MessageBox.cpp, MessageEvent.cpp, MessageEvent.h: Support for Web
Pager messages (sync with library req.)
2002-06-08 12:58 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h, SettingsDialog.cpp,
main.cpp: Fix duplicate instance check which was *ehum* majorly
borked.
2002-06-04 23:32 barnabygray
* ickle/MessageBox.cpp: Uhem, ignore that last commit :-)
2002-06-04 21:40 barnabygray
* ickle/MessageBox.cpp: Can't be arsed to revise for finals atm.
2002-06-01 22:03 barnabygray
* ickle/AwayMessageDialog.cpp: Small away message fix.
2002-05-21 21:52 barnabygray
* THANKS, ickle/IckleClient.cpp, ickle/IdleTimer.cpp,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h: Vladimir Klebanov
<unny@rz.uni-karlsruhe.de> - option to keep the automatically set
away status when returning from idle state.
2002-05-11 13:29 barnabygray
* ickle/: IckleGUI.cpp, Makefile.am, ResendDialog.cpp,
ResendDialog.h: Resend dialog, so messages don't have to be retyped
when they need to be redelivered.
2002-05-07 18:48 barnabygray
* ctrlsocket/: ControlSocket.cpp, ControlSocket.h: Tweaked header
includes, couple of code cleanups
2002-05-06 01:15 barnabygray
* FAQ, ickle/IckleClient.cpp, ickle/IckleClient.h: Retry with same
status
2002-04-30 01:02 barnabygray
* configure.in: By default compile without -g flag, as discussed on
mailing list
2002-04-29 00:38 barnabygray
* ickle/ContactListView.cpp: Keyseeking fix - ignore keypresses
only if Ctrl/Alt are pressed, also allow seeking by number too (for
weird people)
2002-04-28 23:37 barnabygray
* Makefile.am, debian/README, debian/changelog, debian/control,
debian/copyright, debian/ickle-common.README.Debian,
debian/ickle-common.docs, debian/ickle-common.files,
debian/ickle-control.dirs, debian/ickle-control.files,
debian/ickle-control.links, debian/ickle-control.manpages,
debian/ickle-gnome.dirs, debian/ickle-gnome.files,
debian/ickle-gnome.links, debian/ickle-gnome.manpages,
debian/ickle-gnome.menu, debian/ickle.dirs, debian/ickle.files,
debian/ickle.links, debian/ickle.manpages, debian/ickle.menu,
debian/rules: Removed debian related stuff
2002-04-27 19:50 barnabygray
* autogen.sh: Pick up alternate forms of libtool macro
2002-04-27 11:22 bugcreator
* ickle/IckleGUI.cpp: This works more reliably. hopefully... I hate
Sawfish...
2002-04-26 17:01 barnabygray
* configure.in: Increment version number.
2002-04-26 17:00 barnabygray
* ChangeLog, NEWS, README: Stuff what need to be done for 0.3.1
2002-04-26 14:10 barnabygray
* ickle/IckleClient.cpp: Oops.. that'll teach me to blindly cut and
paste
2002-04-25 21:31 barnabygray
* ickle/MessageBox.cpp: No need for this now then.
2002-04-25 21:09 bugcreator
* ickle/MessageBox.cpp: - Make sure we really scroll down to the
end of the history initially (scroll *after* the pane position
has been set!) - Call show_all() in c'tor (fixing the display
errors with the blueHeart theme)
2002-04-25 20:36 barnabygray
* ickle/IckleClient.cpp: Missed catching some exceptions on bad
history files
2002-04-25 17:21 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h: Fixes to remember mobile
history
2002-04-25 10:26 barnabygray
* ickle/MessageBox.cpp: Oops.. no even I can't get it right
2002-04-25 10:20 barnabygray
* ickle/MessageBox.cpp: History table size was incorrect -
surprisingly this didn't cause any particularly noticeable
problems!
2002-04-23 02:08 barnabygray
* ickle/IckleClient.cpp: Port binding should be set on startup -
thanks Tobias for pointing this out
2002-04-22 10:07 barnabygray
* ctrlsocket/ControlSocket.h: This header should have been
explicitly included. (fixes make error on FreeBSD)
2002-04-22 00:12 barnabygray
* ickle/MessageBox.cpp: Fix for when sent offline through server
(status wouldn't be updated properly)
2002-04-21 15:56 barnabygray
* ickle/: IckleClient.cpp, SettingsDialog.cpp, SettingsDialog.h:
Port binding ranges. For all you poor firewalled people out there.
2002-04-20 17:47 barnabygray
* ickle/IckleClient.cpp: Don't want to frighten users..
2002-04-20 16:06 barnabygray
* ickle/: EventSubstituter.cpp, EventSubstituter.h,
EventSystem.cpp, EventSystem.h, IckleClient.cpp, MessageBox.cpp,
MessageBox.h, SettingsDialog.cpp: Fixed %m pending messages
substitution to work again. Added %o substitution for when contact
went online.
2002-04-19 16:52 bugcreator
* ickle/MessageBox.cpp: Message box fix... If you moved the pane
separator too far up or down, it was hidden by other controls, and
there was no way to move it back (short of manually editing
ickle.conf)
2002-04-19 16:46 bugcreator
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h: Also remember
the window's size when hiding it. Sawfish sometimes (randomly?)
forgot it otherwise. (It's probably Sawfish's fault, but this
workaround shouldn't hurt... hopefully...)
2002-04-18 23:07 bugcreator
* ickle/: SettingsDialog.cpp, UserInfoDialog.cpp: Yet another
cosmetic operation
2002-04-18 23:00 bugcreator
* ickle/IckleApplet.cpp: Slightly more reasonable behaviour of the
applet menu with classic inivisibility.
2002-04-18 18:32 nordman
* ickle/IdleTimer.h: include Xlib.h as well.
2002-04-18 18:30 nordman
* ickle/IdleTimer.cpp: The code was getting to hairy, straighten it
out somewhat and document it proper.
2002-04-18 17:33 barnabygray
* ickle/: IdleTimer.cpp, SettingsDialog.cpp, SettingsDialog.h: Fix
for auto away/NA when only one is disabled.
2002-04-18 15:00 barnabygray
* ickle/IckleClient.cpp: Changed defaults to something more
sensible hopefully.
2002-04-17 23:17 barnabygray
* FAQ, Makefile.am, ickle/IckleGUI.cpp: Added FAQ to dist. oops.
Fixed title bar showing pending messages.
2002-04-17 12:49 barnabygray
* autogen.sh: Fix to use autoconf2.50 preferentially (mostly for my
debian system), otherwise it uses the out of date autoconf2.13
which doesn't play nicely with gcc 3.0.
2002-04-16 22:17 barnabygray
* AUTHORS, NEWS, README, TODO, configure.in: Final stuff for the
release
2002-04-16 22:05 barnabygray
* ickle/: ControlHandler.cpp, ControlHandler.h,
EventSubstituter.cpp, History.h, IckleClient.cpp, IckleClient.h:
gcc 3.0 fixes
2002-04-16 21:46 barnabygray
* ChangeLog: Changelog updated
2002-04-16 20:58 barnabygray
* ickle/WizardDialog.cpp: Tweak to Wizard
2002-04-16 20:41 barnabygray
* ickle/: AddUserDialog.cpp, SettingsDialog.cpp: Fetch userinfo on
connect. Go on.. I dare you.
2002-04-15 15:30 barnabygray
* Makefile.am, configure.in, share/icons/Makefile.am,
share/icons/kit/Makefile.am, share/icons/kit/away.xpm,
share/icons/kit/chat.xpm, share/icons/kit/dnd.xpm,
share/icons/kit/ffc.xpm, share/icons/kit/file.xpm,
share/icons/kit/invisible.xpm, share/icons/kit/message.xpm,
share/icons/kit/na.xpm, share/icons/kit/occ.xpm,
share/icons/kit/offline.xpm, share/icons/kit/online.xpm,
share/icons/kit/sms.xpm, share/icons/kit/sysmsg.xpm,
share/icons/kit/url.xpm: Kit icons set added, with improvements
from CB'ke. Thanks.
2002-04-15 15:29 barnabygray
* debian/: changelog, control: More fixed to debian stuff
2002-04-14 23:49 barnabygray
* ickle/: IckleGUI.cpp, IckleGUI.h: Woohoo.. finally put this bug
to rest. (segfaults on receiving Auth reqs, Added to list, etc..)
2002-04-14 21:21 barnabygray
* debian/: control, ickle-control.dirs, ickle-control.files,
ickle-control.links, ickle-control.manpages, ickle.files: Debian
packaging stuff
2002-04-14 21:17 barnabygray
* share/icons/Makefile.am: make dist fix
2002-04-14 20:09 barnabygray
* ickle/: IckleClient.cpp, UserInfoDialog.cpp, UserInfoDialog.h:
Added some time statistics (library update required)
2002-04-13 22:21 barnabygray
* ickle/MessageEvent.h: This might have caused problems.
2002-04-11 12:14 barnabygray
* ickle/SearchDialog.cpp: Oops, should be plural :-)
2002-04-11 12:09 barnabygray
* ickle/: SearchDialog.cpp, SearchDialog.h: One last feature before
0.3: Whitepage keyword searching
2002-04-11 12:08 barnabygray
* share/icons/: doors/sysmsg.xpm, eureka/sysmsg.xpm,
gnomeicu/sysmsg.xpm, ickle/sysmsg.xpm, icq/sysmsg.xpm,
new/sysmsg.xpm: hohum, I knew I'd end up having to design them
2002-04-10 20:57 barnabygray
* ickle/Icons.cpp, ickle/Icons.h, share/icons/doors/Makefile.am,
share/icons/eureka/Makefile.am, share/icons/gnomeicu/Makefile.am,
share/icons/ickle/Makefile.am, share/icons/icq/Makefile.am,
share/icons/new/Makefile.am, share/icons/icons.conf: System icons
code. Oh, still need some icons.
2002-04-10 17:51 barnabygray
* configure.in, control/Makefile.am, control/ickle_control.1,
debian/ickle.files: All admin changes. A manpage for ickle_control
2002-04-10 14:27 barnabygray
* ickle/: SettingsDialog.cpp, SettingsDialog.h: More tidying/fixing
to Settings Dialog
2002-04-09 00:20 barnabygray
* FAQ: We have an FAQ now! Woohoo. Needs a few more Q/As tho.
2002-04-08 00:28 barnabygray
* ickle/MessageBox.cpp: Express delivery status more expressively
2002-04-07 16:03 bugcreator
* ickle/: IckleClient.cpp, IckleGUI.cpp, MessageBox.cpp,
SettingsDialog.cpp, SettingsDialog.h: Added option to disable
window icons
2002-04-07 12:50 barnabygray
* ickle/: IckleClient.cpp, MessageBox.cpp, MessageBox.h: Couple of
keybindings for history scrolling
2002-04-05 16:29 bugcreator
* ickle/UserInfoDialog.cpp: [no log message]
2002-04-05 16:27 bugcreator
* ickle/: ContactListView.cpp, ContactListView.h: Disable popup
menu items which are not available
2002-04-05 01:09 bugcreator
* ickle/PromptDialog.cpp: a single missing letter can mess up a
whole dialog...
2002-04-05 00:47 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h: Actually, a
prompt would be nicer (and required for those that don't run from
command-line).
2002-04-05 00:21 barnabygray
* ickle/IckleClient.cpp: Improve lock file behaviour a bit
2002-04-04 22:45 bugcreator
* ickle/: EventSystem.cpp, SettingsDialog.cpp, SettingsDialog.h:
added system event to event system (uhm, well...)
2002-04-04 21:08 bugcreator
* ickle/: AboutDialog.cpp, AddUserDialog.cpp, AuthRespDialog.cpp,
IckleGUI.cpp, PromptDialog.cpp, SearchDialog.cpp,
SendAuthReqDialog.cpp, SetAutoResponseDialog.cpp,
SettingsDialog.cpp, UserInfoDialog.cpp: some dialog
beautifications. only aesthetic changes really :)
2002-04-04 19:03 bugcreator
* AUTHORS, THANKS: you don't want me to put a detailed list of all
changes I made into the thanks file, do you? ;-)
2002-04-04 19:00 bugcreator
* ickle/WizardDialog.cpp: that window should be transient too...
2002-04-04 18:59 bugcreator
* ickle/: EventSubstituter.cpp, EventSubstituter.h,
EventSystem.cpp, EventSystem.h, IckleClient.cpp,
SettingsDialog.cpp, SettingsDialog.h: improved the event system by
adding an option to filter out events occuring more or less at the
same time
2002-04-04 11:40 bugcreator
* ickle/ContactListView.cpp: re-sort contact list if message queue
changes
2002-04-04 00:04 barnabygray
* ickle/: AboutDialog.cpp, AddUserDialog.cpp, AuthRespDialog.cpp,
PromptDialog.cpp, SendAuthReqDialog.cpp, UserInfoDialog.cpp:
Tidying up dialogs
2002-04-02 23:28 barnabygray
* ickle/: IckleClient.cpp, SettingsDialog.cpp, SettingsDialog.h: -
Added some tooltip explanations for settings - Added SMTP server
settings to Settings Dialog
2002-04-02 22:26 bugcreator
* ickle/EventSystem.cpp: this makes more sense really...
2002-04-02 22:11 bugcreator
* control/IckleControl.cpp, ickle/AboutDialog.cpp,
ickle/AboutDialog.h, ickle/AddUserDialog.cpp,
ickle/AddUserDialog.h, ickle/AuthRespDialog.cpp,
ickle/AuthRespDialog.h, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/ControlHandler.cpp,
ickle/ControlHandler.h, ickle/EventSystem.cpp, ickle/EventSystem.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/MessageBox.cpp, ickle/PromptDialog.cpp,
ickle/PromptDialog.h, ickle/SearchDialog.cpp, ickle/SearchDialog.h,
ickle/SendAuthReqDialog.cpp, ickle/SendAuthReqDialog.h,
ickle/SetAutoResponseDialog.cpp, ickle/SetAutoResponseDialog.h,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h,
ickle/WizardDialog.cpp: - made dialogs transient - fixed & improved
user online event - added a menu item to open the auto response
dialog, and made the auto-popup on status change configurable -
bugfix: don't set the main window's icon if the window is about to
be destroyed anyway (for some reason this used to crash my gnome
tasklist applet, and sometimes ickle as well) - other changes which
I have forgotten ;)
2002-04-01 15:26 bugcreator
* ctrlsocket/ControlSocket.h: And it should actually be implemented
as operator<< really ;-)
2002-04-01 14:20 barnabygray
* ctrlsocket/ControlSocket.h: operator<< should have been defined
explicitly really.
2002-04-01 14:18 barnabygray
* THANKS, control/IckleControl.cpp, control/IckleControl.h,
ctrlsocket/ControlCommands.h, ctrlsocket/ControlSocket.h,
ickle/ControlHandler.cpp: Patch for ickle_control to support sms
sending, from Plutonski. Thanks.
2002-04-01 12:25 barnabygray
* ickle/: History.cpp, History.h, IckleClient.cpp, IckleGUI.cpp,
MessageBox.cpp: - Sync with library - Urgent messages tagging
2002-04-01 01:46 barnabygray
* control/IckleControl.cpp, ickle/IckleClient.cpp,
ickle/IckleGUI.cpp: - Couple of small bugs caught - Tidying up
disconnection dialogs
2002-04-01 00:15 barnabygray
* ickle/: IckleGUI.cpp, SettingsDialog.cpp: Neatening up the
Settings Dialog a bit
2002-03-31 23:01 barnabygray
* ickle/: MessageBox.cpp, MessageQueue.h: Apparently these caused
compilation errors on some systems
2002-03-31 21:35 barnabygray
* ickle/: AddMobileUserDialog.cpp, AddMobileUserDialog.h,
AddUserDialog.cpp, AddUserDialog.h, IckleClient.cpp, IckleClient.h,
IckleGUI.cpp, IckleGUI.h, Makefile.am, MessageEvent.cpp,
MessageEvent.h, MobileNoEntry.cpp, MobileNoEntry.h: - Merged Add
Contact/Add Mobile Contact into one dialog - Tidied up Add Contact
dialog - Added Alerting Contact when adding - User Added messages
support
2002-03-31 21:26 barnabygray
* ickle/: AuthRespDialog.cpp, AuthRespDialog.h,
SendAuthReqDialog.cpp, SendAuthReqDialog.h: Added files for auth
stuff
2002-03-31 18:00 barnabygray
* ickle/: ContactListView.cpp, ContactListView.h, History.cpp,
IckleClient.cpp, IckleGUI.cpp, IckleGUI.h, Makefile.am,
MessageBox.cpp, MessageQueue.cpp, MessageQueue.h, PromptDialog.cpp:
Added GUI support for Auth requests/responses. Sync with library
required.
2002-03-30 23:09 nordman
* ickle/IckleClient.cpp: Remove unwanted debug cout.
2002-03-30 18:00 nordman
* ctrlsocket/ControlSocket.cpp: Add missing includes.
2002-03-30 14:48 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h, MessageQueue.cpp,
MessageQueue.h: Restore the applet to its former glory. Add
iterators to MessageQueue to assist with this.
2002-03-29 23:52 barnabygray
* ickle/IckleClient.cpp: Add contacts not on list messaging you to
list for now
2002-03-28 21:51 barnabygray
* ickle/: IckleApplet.cpp, IckleApplet.h, IckleClient.cpp: Fixed
Applet so it mostly works now
2002-03-28 19:33 barnabygray
* ickle/ControlHandler.cpp: Fix to ControlHandler
2002-03-28 18:29 barnabygray
* configure.in, ickle/AwayMessageDialog.cpp,
ickle/AwayMessageDialog.h, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/ControlHandler.cpp,
ickle/ControlHandler.h, ickle/EventSubstituter.cpp,
ickle/EventSubstituter.h, ickle/EventSystem.cpp,
ickle/EventSystem.h, ickle/History.cpp, ickle/History.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/Icons.cpp, ickle/Icons.h,
ickle/Makefile.am, ickle/MessageBox.cpp, ickle/MessageBox.h,
ickle/MessageEvent.cpp, ickle/MessageEvent.h,
ickle/MessageQueue.cpp, ickle/MessageQueue.h,
ickle/PromptDialog.cpp, ickle/PromptDialog.h,
ickle/SearchDialog.cpp, ickle/SearchDialog.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h: Major changes to
sync with library. - Message queueing done in ickle now. - Start
of some general event wrappers to break away from libicq2000
dependance
2002-03-16 18:10 barnabygray
* ickle/ContactListView.cpp: ContactListView behaviour tweaks
2002-03-12 21:39 barnabygray
* THANKS, ickle/IckleClient.cpp, ickle/IckleGUI.cpp,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h: Patch contributed
by Christian Borntrger to allow changing of the dictionary ispell
uses.
2002-03-12 19:43 barnabygray
* ickle/: History.cpp, IckleClient.cpp, MessageBox.cpp: Fixed up
EmailExpress message receiving.. and virtual contacts too
2002-03-08 17:53 barnabygray
* ickle/ContactListView.cpp: Tweaked behaviour of key seek on
ContactList
2002-03-06 22:18 barnabygray
* ickle/: IckleClient.cpp, Settings.cpp, Settings.h,
UserInfoDialog.cpp: Fixed up settings saving so it's a bit more
reliable when you hit no space left on your filesystem.
2002-03-05 12:54 barnabygray
* ickle/SettingsDialog.cpp: Bit of tidying up on SettingsDialog.
2002-03-02 18:42 barnabygray
* ickle/UserInfoDialog.cpp: Nicefy IPs
2002-03-02 15:21 bugcreator
* ickle/StatusMenu.cpp: Small invisibility fix
2002-03-01 21:53 bugcreator
* ickle/: Icons.cpp, StatusMenu.cpp: Wow Barnaby, that's great, how
can I thank you? :-) But I'm still not satisfied :-p
2002-03-01 19:39 barnabygray
* ickle/IdleTimer.cpp: Related change to last commit
2002-03-01 19:36 barnabygray
* ickle/: ControlHandler.cpp, IckleClient.cpp, IckleGUI.cpp,
IckleGUI.h, SettingsDialog.cpp, SettingsDialog.h, StatusMenu.cpp,
StatusMenu.h: Added the option of 'classic' invisibility if you
want invisible to just be any other status, similar to how the
official client works. (There you go Dominik, don't say I'm not
good to you :-)
2002-03-01 18:38 bugcreator
* ickle/: ContactListView.cpp, ContactListView.h, IckleClient.cpp:
Improved contact list sorting
2002-02-28 17:29 barnabygray
* scripts/licq2ickle.pl: Patch from Sergey Pinaev to fix up missing
off last message from licq history. Cheers.
2002-02-27 21:25 bugcreator
* control/IckleControl.cpp, ctrlsocket/ControlSocket.cpp,
ctrlsocket/ControlSocket.h: Fixed some embarrassing bugs in
ickle_control. I'm wondering if that code ever worked...
2002-02-27 17:00 barnabygray
* configure.in, share/icons/Makefile.am,
share/icons/eureka/Makefile.am, share/icons/eureka/away.xpm,
share/icons/eureka/chat.xpm, share/icons/eureka/dnd.xpm,
share/icons/eureka/ffc.xpm, share/icons/eureka/file.xpm,
share/icons/eureka/invisible.xpm, share/icons/eureka/message.xpm,
share/icons/eureka/na.xpm, share/icons/eureka/occ.xpm,
share/icons/eureka/offline.xpm, share/icons/eureka/online.xpm,
share/icons/eureka/sms.xpm, share/icons/eureka/url.xpm: Added
Dominic's eureka icons to the build process
2002-02-26 17:30 barnabygray
* ickle/ContactListView.cpp: Added some autosize calls to fix up
scroll bar when text might change.
2002-02-26 17:21 barnabygray
* ickle/IckleGUI.cpp: Suggestion from Cb'ke. Cheers.
2002-02-26 13:48 barnabygray
* ickle/: ContactListView.cpp, MessageBox.cpp: - Syncing with
library changes
2002-02-23 20:06 barnabygray
* ickle/: IckleGUI.cpp, IckleGUI.h, SetAutoResponseDialog.cpp,
SetAutoResponseDialog.h: Fixed up other away predefined response
stuff.
2002-02-23 19:44 barnabygray
* ickle/: SettingsDialog.cpp, SettingsDialog.h: Fixed up predefined
away messages in SettingsDialog.
2002-02-20 23:48 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: fix bug occuring when you
removed a user from the contactlist that had pending messages. Also
style-changes and better icon handling.
2002-02-20 17:45 barnabygray
* ickle/gtkspell.cpp: Tidied up gtkspell message
2002-02-20 17:35 barnabygray
* THANKS: And we give thanks to all those who have contributed
2002-02-20 17:34 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h, main.cpp, main.h: Thanks
to CB'ke for patch to implement run-only-once pid lockfile
behaviour.
2002-02-20 02:17 barnabygray
* ickle/: SettingsDialog.cpp, SettingsDialog.h: Partial
implementation of my alternative settings widget setup for
predefined away message setting.
2002-02-18 19:28 barnabygray
* ickle/MessageBox.cpp: Not necessary after I changed my mind
2002-02-18 19:15 barnabygray
* ickle/: MessageBox.cpp, MessageBox.h: Catch attempts to send
blank messages nicely
2002-02-13 15:09 barnabygray
* THANKS: [no log message]
2002-02-13 14:50 barnabygray
* ickle/: IckleClient.cpp, SetAutoResponseDialog.cpp,
SetAutoResponseDialog.h, SettingsDialog.cpp, SettingsDialog.h:
Predefined away messages patch from Daniel. Thanks.
2002-02-13 13:27 barnabygray
* control/IckleControl.cpp, ctrlsocket/ControlSocket.cpp,
ickle/ControlHandler.cpp: Small fix
2002-02-12 17:15 barnabygray
* ickle/WizardDialog.cpp: Not setting password meant the wizard
wouldn't logon straight after finishing.
2002-02-12 17:09 barnabygray
* ickle/IckleGUI.cpp: Small mistake.
2002-02-12 16:46 barnabygray
* ickle/WizardDialog.cpp: Shouldn't really be setting the size
2002-02-09 17:33 oizoken
* control/CommandLineParser.cpp, control/CommandLineParser.h,
control/IckleControl.cpp, control/IckleControl.h,
ctrlsocket/ControlSocket.cpp, ctrlsocket/ControlSocket.h: gcc 3.0
namespaces fixes for the otherwise excellent ickle_control
2002-02-05 20:03 nordman
* control/IckleControl.o, ctrlsocket/ControlSocket.o: remove object
files.
2002-02-05 19:40 barnabygray
* Makefile.am, configure.in, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/Makefile.am: Oops, patch wasn't applied
to that. Should work now.
2002-02-05 19:30 barnabygray
* ickle/: ControlHandler.cpp, ControlHandler.h: And a copy more
files
2002-02-05 19:29 barnabygray
* control/CommandLineParser.cpp, control/CommandLineParser.h,
control/IckleControl.cpp, control/IckleControl.h,
control/IckleControl.o, control/Makefile.am, control/main.cpp,
ctrlsocket/ControlCommands.h, ctrlsocket/ControlSocket.cpp,
ctrlsocket/ControlSocket.h, ctrlsocket/ControlSocket.o,
ctrlsocket/Makefile.am: Added the excellent ickle_control
contributed by Dominic Sacr
2002-02-05 18:54 barnabygray
* ickle/AddUserDialog.cpp: Modal dialogs fix
2002-02-05 18:49 barnabygray
* ickle/: AboutDialog.cpp, AddMobileUserDialog.cpp,
AddMobileUserDialog.h, AddUserDialog.cpp, AddUserDialog.h,
IckleGUI.cpp, PromptDialog.cpp, SettingsDialog.cpp,
SettingsDialog.h: Fixed various buggy modal dialogs, not exiting
their Gtk::Main loops when window manager close is clicked.
2002-02-05 17:30 barnabygray
* ickle/: SearchDialog.cpp, SearchDialog.h: Inherited fix to Age
searching from library (should be done as ranges)
2002-02-05 17:30 barnabygray
* README: Noise info added to README
2002-02-02 16:26 barnabygray
* ickle/: MessageBox.cpp, MessageBox.h: Fix to counting as read
behaviour
2002-02-02 12:50 nordman
* ickle/IdleTimer.cpp: Only let auto-{away,na} kick in the user
hasn't already set the status explicitly.
2002-02-01 20:30 nordman
* ickle/: IckleApplet.h, IckleApplet.cpp: The applet now correctly
tracks the number of online users, even when an online user is
removed.
2002-01-30 22:13 barnabygray
* ickle/: IckleGUI.cpp, MessageBox.cpp, MessageBox.h: Pending
message behavioural changes for MessageBox: - Count a message as
'read' when the box is focussed - Show Status and Pending message
indication on title of MessageBox - Show Status/next pending
message for icon of window
2002-01-30 15:35 nordman
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h: Add popups for
the rest of the disconnected reasons and modify the logic somewhat.
2002-01-29 18:39 nordman
* ickle/: SearchDialog.cpp, SearchDialog.h: Dynamically update
search button as status changes.
2002-01-29 17:06 nordman
* ickle/: IckleGUI.cpp, IckleGUI.h, UserInfoDialog.cpp,
UserInfoDialog.h: Dynamically enable and disable menu entries for
the ickle menu. Redo userinfo dlg to do the same.
2002-01-29 16:00 nordman
* ickle/: UserInfoDialog.cpp, UserInfoDialog.h: Disable upload and
fetch buttons when disconnected. Accidently also fixes a minor
memory leak.
2002-01-27 23:56 nordman
* ickle/AboutDialog.cpp: Add my UIN.
2002-01-27 23:51 nordman
* ickle/AwayMessageDialog.cpp: mouse wheel support for the
away-messages text.
2002-01-27 23:11 nordman
* ickle/: IckleClient.cpp, Makefile.am, WizardDialog.cpp,
WizardDialog.h: First stab at a startup wizard. Needs more work but
should work without any major problems. Don't be suprised when the
userinfo dialog pops up next time you restart ickle ;P
2002-01-27 12:43 oizoken
* ickle/UserInfoDialog.cpp: gcc 3.0 port
2002-01-26 14:26 barnabygray
* THANKS: Thanks for Dominic
2002-01-26 14:24 barnabygray
* ickle/: ContactListView.cpp, ContactListView.h, IckleClient.cpp,
IckleClient.h, SettingsDialog.cpp, SettingsDialog.h: Patch from
Dominic Sacr: - Added User Online Event - Sorting by clicking on
columns of contact list
2002-01-25 18:01 nordman
* ickle/History.cpp: Fix error introduced with the gcc 3 fixes.
Always make sure the semantics of the code is retained with the
fixes.
2002-01-25 15:03 barnabygray
* ickle/: AwayMessageDialog.cpp, MessageBox.cpp: Use Contexts for
the Text boxes so we don't temper with foreground/background font
colours that might be set in a theme.
2002-01-25 14:25 nordman
* ickle/IdleTimer.cpp: auto-status should of course also take the
current state of invisibility into account.
2002-01-25 14:04 barnabygray
* ickle/ContactListView.cpp: Don't check away message on
offline/online contacts.
2002-01-25 13:29 nordman
* ickle/UserInfoDialog.cpp: Fix compability bug with get_chars(),
pointed out by various people.
2002-01-25 11:55 barnabygray
* ickle/: UserInfoDialog.cpp, UserInfoDialog.h: Editability of age
field in user info
2002-01-25 11:35 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h: Fixed not
limiting position to screen size on startup. Applet users - plz
check that show/hide still works for you.
2002-01-25 01:36 barnabygray
* ickle/: UserInfoDialog.cpp, UserInfoDialog.h: Timezone setting
working in UserInfo now
2002-01-24 19:45 barnabygray
* ickle/UserInfoDialog.cpp: Make About Text box editable.
2002-01-24 19:41 barnabygray
* ickle/UserInfoDialog.cpp: - Fixed changed behaviour
2002-01-24 19:39 barnabygray
* ickle/UserInfoDialog.cpp: UserInfo dialog self changes: - fixed
languages - fixed homepage - fixed about
2002-01-24 19:19 barnabygray
* ickle/: UserInfoDialog.cpp, UserInfoDialog.h: More editable
fields in User Info, thanks to Daniel
2002-01-24 19:19 barnabygray
* ickle/: SearchDialog.cpp, SearchDialog.h: Changed over to using
combo boxes for language and country
2002-01-23 16:49 barnabygray
* ickle/UserInfoDialog.cpp: Library userinfo change
2002-01-22 14:05 barnabygray
* ickle/: IckleClient.cpp, MessageBox.cpp: - Moved defaults into
IckleClient - Use Gtk::Window::set_default_size rather than
Gtk::Widget::set_usize (which is a minimum)
2002-01-22 10:50 barnabygray
* THANKS, ickle/MessageBox.cpp, ickle/MessageBox.h: Message box
remembering sizes
2002-01-21 16:43 barnabygray
* ickle/UserInfoDialog.cpp: Oops, correct the nasty sex change
everyone on your contact list had undergone. Thanks Dominic for
pointing this out.. ;-)
2002-01-21 13:30 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h,
UserInfoDialog.cpp, UserInfoDialog.h: Timezone library change,
displays it correctly in UserInfo dialog now. Need to make fields
editable in UserInfo dialog still.
2002-01-21 01:45 oizoken
* ickle/History.cpp: gcc 3.0.2 history file read fix
2002-01-20 23:35 oizoken
* ickle/History.cpp: History file error on gcc 3
2002-01-20 21:42 nordman
* ickle/IckleClient.cpp: Fix bug introduced with the setting of own
info, namely deferencing an non-initialized pointer.
2002-01-20 20:31 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: Update for the recent
changes in libicq, statuschanged merged into self_event.
2002-01-19 16:08 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h: Saving/loading of self
user info (from disk)
2002-01-19 15:20 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h,
MessageBox.cpp, MessageBox.h, UserInfoDialog.cpp, UserInfoDialog.h:
Added own info basics. Still need to do: - settings own info -
saving own info, so it doesn't need to fetched everytime you start
ickle up
2002-01-18 00:43 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, SettingsDialog.cpp,
SettingsDialog.h: Added use aspell instead of ispell option. aspell
is generally much better quality results than ispell, but it is
significantly slower it seems.
2002-01-16 22:19 oizoken
* THANKS: And we give thanks to all contributing...
2002-01-16 19:54 oizoken
* ickle/: AboutDialog.cpp, SetAutoResponseDialog.cpp,
SetAutoResponseDialog.h: namespace fixes for gcc 3.0
2002-01-16 19:30 oizoken
* ickle/: AboutDialog.cpp, SetAutoResponseDialog.h: namespace fixes
for gcc 3
2002-01-16 19:19 oizoken
* ickle/SetAutoResponseDialog.h: namespace fixes for gcc 3
2002-01-16 19:12 oizoken
* ickle/: AboutDialog.cpp, SetAutoResponseDialog.cpp,
SetAutoResponseDialog.h: namespace fixes for gcc 3
2002-01-16 12:58 barnabygray
* ickle/: ContactListView.cpp, IckleApplet.cpp, IckleApplet.h,
IckleClient.cpp, IckleGUI.cpp, IckleGUI.h, Icons.cpp, Icons.h,
Makefile.am, StatusMenu.cpp, StatusMenu.h, main.cpp: - Created a
separate widget for the StatusMenu - Use auto_ptr's in Icons
2002-01-16 03:09 barnabygray
* ickle/IckleGUI.cpp: Added icon for current status. Happy now?
2002-01-15 20:47 barnabygray
* scripts/licq2ickle.pl: Merges history too now.
2002-01-14 15:07 barnabygray
* ickle/: gtkspell.cpp, gtkspell.h: Fixed versions. Looks like
gnomeicu had similar problems, so I nabbed their fixed versions.
2002-01-14 11:34 barnabygray
* macros/: Makefile.am, libicq2000.m4: Added libicq2000 macro
2002-01-13 20:33 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h, Makefile.am,
MessageBox.cpp, MessageBox.h, SettingsDialog.cpp, SettingsDialog.h,
gtkspell.cpp, gtkspell.h, main.cpp: Added spelling correction
through gtkspell.
2002-01-13 17:20 barnabygray
* Makefile.am, share/icons/doors/Makefile.am,
share/icons/gnomeicu/Makefile.am, share/icons/ickle/Makefile.am,
share/icons/icq/Makefile.am, share/icons/new/Makefile.am,
share/translations/Makefile.am: Corrected Makefile.am changes for
dist variable
2002-01-13 17:19 barnabygray
* debian/: changelog, control, ickle-common.README.Debian,
ickle-common.files, ickle-dev.files, ickle-gnome.links,
ickle.links, rules: Updated debian package control
2002-01-13 14:19 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h: Call autoconnect in an
idle callback, so blocking dns will at least not stop the user from
seeing something when ickle first starts up.
2002-01-13 13:24 barnabygray
* ickle/IdleTimer.cpp: Idle timer bug fix, stop sending auto status
every 2 seconds
2002-01-11 21:40 barnabygray
* autogen.sh, configure.ac, configure.in, macros/Makefile.am,
macros/aclocal-include.m4, macros/compiler-flags.m4,
macros/curses.m4, macros/gnome-bonobo-check.m4,
macros/gnome-common.m4, macros/gnome-fileutils.m4,
macros/gnome-gettext.m4, macros/gnome-ghttp-check.m4,
macros/gnome-gnorba-check.m4, macros/gnome-guile-checks.m4,
macros/gnome-libgtop-check.m4, macros/gnome-objc-checks.m4,
macros/gnome-orbit-check.m4, macros/gnome-print-check.m4,
macros/gnome-pthread-check.m4, macros/gnome-support.m4,
macros/gnome-undelfs.m4, macros/gnome-vfs.m4,
macros/gnome-x-checks.m4, macros/gnome-xml-check.m4,
macros/gnome.m4, macros/linger.m4, macros/need-declaration.m4,
share/icons/doors/Makefile.am, share/icons/gnomeicu/Makefile.am,
share/icons/ickle/Makefile.am, share/icons/icq/Makefile.am,
share/icons/new/Makefile.am, share/translations/Makefile.am:
Friendlier for developers now: - works with autoconf 2.13 (and 2.50
still) - works with automake 1.4 (and 1.5 still)
2002-01-11 10:53 barnabygray
* ickle/: AboutDialog.cpp, AboutDialog.h, SearchDialog.cpp,
SearchDialog.h: Added
2002-01-11 01:28 barnabygray
* ickle/Makefile.am: Need sleep..
2002-01-11 01:27 barnabygray
* ickle/Makefile.am: Oops, my mistake
2002-01-11 01:02 barnabygray
* README, configure.ac, ickle/IckleClient.cpp, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/Makefile.am, ickle/MessageBox.cpp,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/sstream_fix.h: - Added Search dialog - Added About dialog -
Added accept incoming/making outgoing DC settings - Maybe some
other stuff, I can't remember.. PS. Sorry Nils for the big commit
;-)
2002-01-10 11:43 nordman
* ickle/IdleTimer.h: Include config.h as well so that we actually
use xss when we can.
2002-01-09 22:37 nordman
* ickle/: IckleApplet.cpp, IckleClient.cpp, SettingsDialog.cpp,
SettingsDialog.h: Add applet-specific option for hiding main window
upon startup.
2002-01-09 20:24 nordman
* configure.ac: Add checks for the XScreenSaver extension.
2002-01-09 20:20 nordman
* ickle/: IckleClient.cpp, IckleClient.h, Icons.cpp, Icons.h,
IdleTimer.cpp, IdleTimer.h, Makefile.am, SettingsDialog.cpp,
SettingsDialog.h: Add support for auto-away and auto-N/A. Also
adjust for the fact that that constants.h is now wrapped in the
ICQ2000 namespace.
2002-01-07 22:18 nordman
* ickle/SettingsDialog.cpp: Fix bug where ickle would segfault upon
only selecting a new size and not a new font for either header or
messages.
2002-01-07 21:13 barnabygray
* ickle/: ContactListView.cpp, ContactListView.h, IckleClient.cpp,
SettingsDialog.cpp, SettingsDialog.h: The contact list changes from
Raphael's patch (with a few changes by me).
2002-01-05 18:22 barnabygray
* THANKS: And we give thanks to all contributing..
2002-01-05 18:21 barnabygray
* Makefile.am: Added gnomeicu2ickle.pl converter script contributed
by jakub suchy
2002-01-05 18:20 barnabygray
* scripts/gnomeicu2ickle.pl: Added gnomeicu converter script
contributed by jakub suchy
2002-01-05 13:06 barnabygray
* NEWS: Ooops. :-)
2002-01-05 12:56 nordman
* NEWS: Update NEWS for 0.2.2 release.
2002-01-05 12:26 barnabygray
* README, debian/changelog: Added info to README. Updated debian
version number.
2002-01-04 15:50 nordman
* ickle/: History.cpp, History.h, IckleApplet.cpp, IckleApplet.h,
IckleClient.cpp, IckleClient.h, IckleGUI.cpp, IckleGUI.h: Backport
fixes to 0-2-stable:
History fix for mobile-only users (make it work). Settings are now
saved correctly when ickle is exited via the "remove from panel"
option (applet) or from the exit menu. Ignore any unknown
commandline options when run as an applet, allows the applet to be
added to the panel via the panel menu.
2002-01-04 15:29 barnabygray
* configure.ac, src/Makefile.am: Version number updates
2002-01-04 15:22 barnabygray
* README, ickle/IckleClient.cpp, ickle/MessageBox.cpp,
src/Client.cpp, src/Client.h, src/DCCache.h, src/DirectClient.cpp,
src/DirectClient.h, src/ICQ.cpp, src/ICQ.h, src/SNAC-MSG.cpp,
src/SNAC-MSG.h, src/SNAC-SRV.cpp, src/SNAC.cpp, src/sstream_fix.h:
Backported fixes in 0.3 to 0.2. - Resending through server normal
after server advanced fails - Using server acks for status in
client - Messages through direct connections timeout now
2002-01-04 14:15 nordman
* ickle/IckleClient.cpp: Remove Contact from m_{settings,hist}map
upon removal, so that the .user file is not automatically recreated
upon exit. Also remove the history file for a mobile-only user
since we'll not be able to reuse that anyway.
Fix comments, the new history stuff goes into 0.2.2
2002-01-02 21:54 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: Fix non-critical bug:
illegal casts upon "remove from panel" while status != offline.
2002-01-02 21:41 nordman
* ickle/: History.cpp, History.h, IckleClient.cpp, IckleClient.h:
Fix bug, history now works for mobile-only users.
2002-01-02 17:20 nordman
* ickle/: PromptDialog.cpp, PromptDialog.h, SettingsDialog.cpp,
SettingsDialog.h: Provide a list of the available substitutions for
the events.
2002-01-02 14:33 barnabygray
* README: [no log message]
2001-12-30 20:39 nordman
* ChangeLog: update changelog.
2001-12-28 20:23 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h, IckleClient.cpp: Make
sure settings are correctly saved even when exiting via the "remove
from panel" option (gnome applet).
2001-12-28 16:19 nordman
* ickle/: IckleApplet.cpp, IckleGUI.cpp, IckleGUI.h: Revert the
window positioning code in IckleApplet and instead handle that with
{show,hide}/_impl in IckleGUI.
From Dominic Sacr <bugcreator@gmx.de>
2001-12-28 01:04 barnabygray
* THANKS, TODO, configure.ac, ickle/IckleClient.cpp: Amended
Michael's THANKS entry.
2001-12-28 00:59 barnabygray
* src/: Client.cpp, Contact.cpp, Contact.h, Makefile.am,
SNAC-LOC.cpp, TLV.cpp, TLV.h, UserInfoBlock.cpp, UserInfoBlock.h:
These shouldn't have been there, the merge wrongly kept them.
2001-12-27 15:16 nordman
* THANKS, ickle/IckleApplet.cpp, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/IckleGUI.h: Save
settings correctly upon exiting. Make the applet keep track of the
main window position between toggles. Closing the main window does
not exit ickle when run as an applet now.
From Dominic Sacr <bugcreator@gmx.de>
2001-12-27 14:27 nordman
* ickle/IckleClient.cpp: Ignore any unknown options in
processCommandLine(...) when run as an applet. This allows the
applet to be used added from the panel. Although this works it
should be improved later.
2001-12-26 23:32 barnabygray
* ickle/IckleGUI.h: Corrected mistake made in merge
2001-12-26 23:24 barnabygray
* Makefile.am, README, configure.ac, examples/Makefile.am,
examples/shell.cpp, ickle/AddUserDialog.h,
ickle/AwayMessageDialog.cpp, ickle/AwayMessageDialog.h,
ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/EventSubstituter.cpp, ickle/EventSubstituter.h,
ickle/History.cpp, ickle/History.h, ickle/IckleApplet.cpp,
ickle/IckleApplet.h, ickle/IckleClient.cpp, ickle/IckleClient.h,
ickle/IckleGUI.cpp, ickle/IckleGUI.h, ickle/Icons.cpp,
ickle/Icons.h, ickle/Makefile.am, ickle/MessageBox.cpp,
ickle/MessageBox.h, ickle/SetAutoResponseDialog.cpp,
ickle/SetAutoResponseDialog.h, ickle/Settings.h,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h,
ickle/sstream_fix.h, share/icons/doors/invisible.xpm,
share/icons/ickle/invisible.xpm, src/Cache.h, src/Client.h,
src/ContactList.cpp, src/ContactList.h, src/DCCache.h,
src/DirectClient.cpp, src/DirectClient.h, src/ICBMCookie.cpp,
src/ICBMCookie.h, src/ICBMCookieCache.h, src/ICQ.cpp, src/ICQ.h,
src/RequestIDCache.h, src/SNAC-BUD.cpp, src/SNAC-BUD.h,
src/SNAC-GEN.cpp, src/SNAC-GEN.h, src/SNAC-LOC.h, src/SNAC-MSG.cpp,
src/SNAC-MSG.h, src/SNAC-SRV.cpp, src/SNAC-SRV.h, src/SNAC-UIN.cpp,
src/SNAC-UIN.h, src/SNAC-base.cpp, src/SNAC-base.h, src/SNAC.cpp,
src/SNAC.h, src/SeqNumCache.h, src/Translator.cpp,
src/Translator.h, src/Xml.cpp, src/Xml.h, src/buffer.cpp,
src/buffer.h, src/constants.h, src/custom_marshal.h,
src/events.cpp, src/events.h, src/exceptions.cpp, src/exceptions.h,
src/socket.cpp, src/socket.h, src/sstream_fix.h,
src/userinfoconstants.h: Merged 0.3 branch back into main
2001-12-26 23:04 barnabygray
* NEWS: Speling mistake
2001-12-26 22:09 barnabygray
* ChangeLog, NEWS, README, debian/changelog, src/Makefile.am: Small
fixes for 0.2.1 release
2001-12-26 00:07 barnabygray
* src/: SNAC-LOC.cpp, TLV.cpp, TLV.h: Fixes for what Ian's patch
broke. The Capabilities TLV coded was not for parsing incoming
capabilities which arrive with a different TLV type then the sent
ones. Changing the Capabilities TLV to parse your incoming ones and
then changing the constant broke my code, and I spent a long while
tracking this down so am rightfully a bit annoyed.
2001-12-25 22:47 barnabygray
* ickle/IckleGUI.cpp: And some initialisers..
2001-12-25 22:46 barnabygray
* ickle/IckleGUI.cpp, ickle/IckleGUI.h,
share/icons/doors/invisible.xpm, share/icons/ickle/invisible.xpm:
Fixed invisibility. Added pixmaps.
2001-12-25 21:48 barnabygray
* ickle/: IckleGUI.cpp, IckleGUI.h, Icons.cpp: Invisible status
enabled!
2001-12-25 19:32 barnabygray
* README, configure.ac, ickle/EventSubstituter.cpp,
ickle/EventSubstituter.h, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/IckleGUI.h,
ickle/Makefile.am, ickle/MessageBox.cpp, ickle/MessageBox.h,
ickle/SetAutoResponseDialog.cpp, ickle/SetAutoResponseDialog.h: -
Patch for away message setting from Michael Smith (with additions)
2001-12-25 19:32 barnabygray
* ickle/EventSubstituter.cpp: file EventSubstituter.cpp was
initially added on branch ickle-0-3-unstable.
2001-12-25 19:32 barnabygray
* ickle/SetAutoResponseDialog.h: file SetAutoResponseDialog.h was
initially added on branch ickle-0-3-unstable.
2001-12-25 19:32 barnabygray
* ickle/EventSubstituter.h: file EventSubstituter.h was initially
added on branch ickle-0-3-unstable.
2001-12-25 19:32 barnabygray
* ickle/SetAutoResponseDialog.cpp: file SetAutoResponseDialog.cpp
was initially added on branch ickle-0-3-unstable.
2001-12-24 14:10 barnabygray
* src/: Client.cpp, Contact.cpp, Contact.h, TLV.cpp, TLV.h,
UserInfoBlock.cpp, UserInfoBlock.h: Sending advanced message to
ICQLite fix.
2001-12-24 13:58 barnabygray
* ickle/: MessageBox.cpp, MessageBox.h: Fixes to behaviour of
history
2001-12-21 21:40 barnabygray
* configure.ac, ickle/IckleApplet.cpp: Use m4 macro for libicq2000
now
2001-12-21 18:44 nordman
* ickle/MessageBox.cpp:
Change the functionality of the historyview, it now provides one
tick for every message instead of one for every historypage. This
also means there's always history_shownr messages shown, provided
that the historysize >= history_shownr.
2001-12-21 18:12 barnabygray
* configure.ac, ickle/AddUserDialog.h, ickle/AwayMessageDialog.cpp,
ickle/AwayMessageDialog.h, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/History.cpp, ickle/History.h,
ickle/IckleApplet.h, ickle/IckleClient.cpp, ickle/IckleClient.h,
ickle/IckleGUI.cpp, ickle/IckleGUI.h, ickle/Icons.h,
ickle/Makefile.am, ickle/MessageBox.h, ickle/Settings.cpp,
ickle/Settings.h, ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h,
ickle/sstream_fix.h: - Use new library header location scheme -
Removed all uses of hash_map in preference to using the standard
map instead.
2001-12-21 18:12 barnabygray
* ickle/sstream_fix.h: file sstream_fix.h was initially added on
branch ickle-0-3-unstable.
2001-12-21 18:01 nordman
* configure.ac: revert last change, we'll keep it until the
librarysplitting is completed.
2001-12-21 17:57 nordman
* ickle/ContactListView.h, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/IckleGUI.h,
ickle/Settings.cpp, ickle/Settings.h, configure.ac: Bye bye
hash_map.
2001-12-21 16:40 nordman
* ickle/MessageBox.cpp: Change the functionality of the
historyview, it now provides one tick for every message instead of
one for every historypage. This also means there's always
history_shownr messages shown, provided that the historysize >=
history_shownr.
2001-12-19 18:57 barnabygray
* configure.ac: configure guff
2001-12-19 16:41 barnabygray
* Makefile.am, configure.ac: Preparation for building with
libicq2000 separately
2001-12-19 14:16 barnabygray
* examples/: Makefile.am, shell.cpp: Removed examples, they go in
the library now
2001-12-19 14:10 barnabygray
* src/: Cache.h, Client.cpp, Client.h, Contact.cpp, Contact.h,
ContactList.cpp, ContactList.h, DCCache.h, DirectClient.cpp,
DirectClient.h, ICBMCookie.cpp, ICBMCookie.h, ICBMCookieCache.h,
ICQ.cpp, ICQ.h, Makefile.am, RequestIDCache.h, SNAC-BUD.cpp,
SNAC-BUD.h, SNAC-GEN.cpp, SNAC-GEN.h, SNAC-LOC.cpp, SNAC-LOC.h,
SNAC-MSG.cpp, SNAC-MSG.h, SNAC-SRV.cpp, SNAC-SRV.h, SNAC-UIN.cpp,
SNAC-UIN.h, SNAC-base.cpp, SNAC-base.h, SNAC.cpp, SNAC.h,
SeqNumCache.h, TLV.cpp, TLV.h, Translator.cpp, Translator.h,
UserInfoBlock.cpp, UserInfoBlock.h, Xml.cpp, Xml.h, buffer.cpp,
buffer.h, constants.h, custom_marshal.h, events.cpp, events.h,
exceptions.cpp, exceptions.h, socket.cpp, socket.h, sstream_fix.h,
userinfoconstants.h: Moved library files from ickle to libicq2000
2001-12-19 14:07 barnabygray
* README, configure.ac, debian/changelog: Updated version numbers
for 0.2.1 release
2001-12-19 13:40 nordman
* ickle/: IckleApplet.cpp, IckleClient.cpp: Fix bug where
ickle_applet couldn't handle ickles commandline option.
2001-12-19 12:50 barnabygray
* share/translations/Makefile.am: Ukrainian entry in Makefile.am
2001-12-19 12:32 barnabygray
* ickle/IckleClient.cpp: More intelligent positioning of window
2001-12-19 12:28 barnabygray
* ickle/: ContactListView.cpp, PromptDialog.cpp: Added prompt for
removing users
2001-12-18 22:51 barnabygray
* ickle/: MessageBox.cpp, MessageBox.h: Icons in messageboxes will
update when icons are changed now
2001-12-18 22:16 barnabygray
* ickle/: IckleApplet.cpp, IckleApplet.h, IckleGUI.cpp, IckleGUI.h,
Icons.cpp, Icons.h, SettingsDialog.cpp, SettingsDialog.h: Reverted
some of Nils' changes, so icons_changed are still signalled
separately from settings_changed. Now we can do it the proper way
having both signals.
2001-12-18 20:02 nordman
* ickle/: Icons.h, Settings.cpp: Some minor stuff part of the
Settings interface change.
2001-12-18 19:45 nordman
* ickle/: ContactListView.h, IckleApplet.cpp, IckleApplet.h,
IckleGUI.cpp, IckleGUI.h, Icons.cpp, Icons.h, MessageBox.cpp,
MessageBox.h, Settings.cpp, Settings.h, SettingsDialog.cpp,
SettingsDialog.h: Fix problem that would arise upon having a
messagebox open and at the same time increasing the number of
messages shown in the history.
Revamp the Settings interface at the same time. It now features one
signal, "settings_changed", that passes along the key that have
been changed. Callbacks listening to this signal should then use
the key to determine whether this is the key that they're
interested in and check for the new value if that's the case.
2001-12-18 18:01 barnabygray
* TODO, debian/ickle-common.files, debian/ickle-dev.files,
debian/rules: Adding back in DNS lookups to TODO, adding
sending/removing contact list support to TODO. Debian files
updates
2001-12-18 17:21 nordman
* TODO: Some items done.
2001-12-18 16:56 nordman
* THANKS, share/translations/UKRAINIAN_WIN: translation file for
wincp1251 - koi8-u (UKRAINIAN_WIN), thanks to Serhiy Brytskyy.
2001-12-17 22:46 nordman
* ickle/History.cpp: gcc 3.*
2001-12-17 18:58 nordman
* ickle/MessageBox.cpp: gcc 3.* fix
2001-12-17 18:24 barnabygray
* ickle/IckleClient.cpp: gcc 3.0 compatibility fix
2001-12-17 15:16 nordman
* ickle/History.h: gcc 3.* compability fix.
2001-12-16 15:56 nordman
* ickle/ContactListView.cpp: Enter/return/space on a contact in the
contactlist now pops up the messagebox for that contact.
2001-12-16 14:38 nordman
* ickle/MessageBox.cpp: shortcuts should be available even if
history is focused.
2001-12-16 13:33 nordman
* configure.ac: window manager -> desktop enviroment.
2001-12-15 13:15 barnabygray
* Makefile.am, NEWS, debian/changelog: Updated debian stuff
2001-12-15 13:07 barnabygray
* NEWS: Nils got a bit enthuistic with the version number there :-)
2001-12-15 13:00 barnabygray
* ChangeLog, NEWS: Put date in NEWS, updated ChangeLog
2001-12-15 12:23 nordman
* NEWS: Add initial release information.
2001-12-14 13:00 barnabygray
* examples/shell.cpp: Updated shell example to work with
nonblocking connects
2001-12-14 11:05 barnabygray
* ickle/ContactListView.cpp: I'm not awake this morning
2001-12-14 10:40 barnabygray
* ickle/ContactListView.cpp: moveto only if not visible (thanks
Michael)
2001-12-14 10:36 barnabygray
* ickle/ContactListView.cpp: Fixed 100% cpu lookup bug, and
possible other bugs in key press for contact list
2001-12-13 23:04 barnabygray
* ickle/MessageBox.cpp: Added date to history entries is they not
for 'today'. Might me nice to make more customisable in future.
2001-12-13 22:09 barnabygray
* src/Makefile.am: Incremented library current interface
2001-12-13 20:29 barnabygray
* src/socket.cpp: - Fixed blocking on incoming direct connections
2001-12-13 20:28 barnabygray
* debian/: changelog, ickle.substvars: Debian package updates
2001-12-13 19:18 barnabygray
* ickle/IckleClient.cpp, src/Client.cpp, src/Contact.cpp,
src/Contact.h, src/DirectClient.cpp, src/DirectClient.h,
src/buffer.cpp, src/socket.cpp, src/socket.h: - Non-blocking
sockets - Removed use of back_inserter in socket, older libstdc++s
don't have string::push_back - Added a little intelligence to
direct connections, so after failing once they won't be tried
again.
2001-12-13 16:11 barnabygray
* ickle/IckleClient.cpp: default for retries should be 0
2001-12-13 12:37 barnabygray
* src/DirectClient.cpp: Direct connections to 2000 clients working
finally! WOOHOO!
2001-12-12 23:16 barnabygray
* ickle/IckleClient.cpp: Lower limit imposed on input value for
pager size should be 1
2001-12-12 22:43 nordman
* ickle/: IckleClient.cpp, MessageBox.cpp, MessageBox.h,
SettingsDialog.cpp, SettingsDialog.h: Added option for specifying
the number of messages shown per history-page.
2001-12-12 19:08 barnabygray
* THANKS, src/Client.cpp: Konst pointed out a problem in Client.cpp
for sending urls. Ooops.
2001-12-12 18:20 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, SettingsDialog.cpp,
SettingsDialog.h: Added autoraise option, so you can autoraise
without having to autopopup.
WARNING: Once you pop, you just can't stop.
2001-12-12 17:23 barnabygray
* Makefile.am, debian/README, debian/README.Debian,
debian/changelog, debian/control, debian/dirs, debian/docs,
debian/ickle-common.README.Debian, debian/ickle-common.docs,
debian/ickle-common.files, debian/ickle-dev.files,
debian/ickle-gnome.dirs, debian/ickle.dirs, debian/ickle.files,
debian/ickle.manpages, debian/ickle.menu, debian/ickle.substvars,
debian/manpages, debian/menu, debian/rules: Debian related package
stuff
2001-12-11 15:52 barnabygray
* AUTHORS, configure.ac, debian/changelog, debian/control,
debian/docs, debian/ickle-dev.files, debian/ickle-gnome.files,
debian/ickle-gnome.manpages, debian/ickle-gnome.menu,
debian/ickle.substvars, debian/manpages, debian/menu,
debian/postinst, debian/postrm, debian/preinst, debian/prerm,
debian/rules, ickle/Makefile.am, ickle/ickle.1,
ickle/ickle_applet.1: - Updated debian stuff - Added manpages
2001-12-11 15:14 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h: Added usage information
2001-12-11 01:17 barnabygray
* src/: Client.cpp, ContactList.cpp, ContactList.h: Fixed segfault
on adding new user.
2001-12-10 23:59 barnabygray
* ickle/ContactListView.cpp: Added back in the moveto() that
Michael's original patch for ContactListView had.
2001-12-10 23:53 barnabygray
* src/: Cache.h, DCCache.h, ICBMCookieCache.h, RequestIDCache.h:
Fixed the obscure segfaults that were happening on removing users
2001-12-10 23:06 barnabygray
* ickle/IckleClient.cpp, src/Client.cpp, src/Client.h: ickle
behaving correctly with empty aliases
2001-12-10 21:39 nordman
* ickle/ContactListView.cpp: please gcc 3.*
2001-12-10 21:16 nordman
* ickle/IckleClient.cpp: erm. That was supposed to be gone before
checking in.
2001-12-10 20:58 nordman
* ickle/ContactListView.cpp: do it the leet c++ way.
2001-12-10 20:28 nordman
* ickle/: IckleClient.cpp, MessageBox.cpp, SettingsDialog.cpp,
SettingsDialog.h: Added option: autoclose after sending a message.
2001-12-10 19:19 nordman
* ickle/: MessageBox.cpp, MessageBox.h: Add mousewheel support for
the Gtk::Text boxes.
2001-12-10 15:55 barnabygray
* ickle/: ContactListView.cpp, ContactListView.h: Patch from
Michael smith: - Sorting by aliases in contact list, after
#messages and status - Jumping to a contact by keypress in
contactlist
2001-12-10 15:43 barnabygray
* THANKS: Updated THANKS
2001-12-10 02:34 barnabygray
* ickle/History.cpp: Added some defaults for missing fields in
history. Turns out lots of messages being tagged as multiparty was
actually what used to be a bug in ickle.
2001-12-10 02:12 barnabygray
* ickle/: AwayMessageDialog.cpp, SettingsDialog.cpp: - More font
related stuff
2001-12-10 02:04 barnabygray
* ickle/: History.cpp, History.h, IckleClient.cpp, MessageBox.cpp,
SettingsDialog.cpp, SettingsDialog.h: - Fine tuning Nils' history
changes - Added customisable font selection for message box
2001-12-10 00:17 nordman
* ickle/MessageBox.cpp: hmrpf. I can afford to expand that.
2001-12-10 00:12 nordman
* ickle/: History.cpp, History.h, IckleClient.cpp, IckleClient.h,
IckleGUI.cpp, IckleGUI.h, MessageBox.cpp, MessageBox.h: ickle now
has a leet history viewing capability.
2001-12-09 22:58 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h,
SettingsDialog.cpp, SettingsDialog.h: Added autopopup for incoming
messages - if that's your sort of thing.
2001-12-09 20:38 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h: Security on log file, as
password may be logged there
2001-12-09 20:26 barnabygray
* examples/shell.cpp, ickle/Icons.cpp, ickle/MessageBox.cpp,
src/Cache.h, src/Client.cpp, src/Client.h, src/DCCache.h,
src/DirectClient.cpp, src/DirectClient.h, src/ICBMCookieCache.h,
src/ICQ.cpp, src/ICQ.h, src/RequestIDCache.h, src/events.cpp,
src/events.h: - Fixes for Direct connections - Message acks for SMS
- Parsing SMS delivery failed messages
2001-12-09 19:51 nordman
* ickle/IckleApplet.cpp: Fix segfault.
2001-12-09 00:53 barnabygray
* TODO, ickle/IckleClient.cpp, ickle/IckleClient.h,
ickle/MessageBox.cpp, ickle/Settings.cpp, ickle/Settings.h,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h, src/Client.cpp,
src/Client.h, src/DirectClient.cpp, src/TLV.cpp: - Added Settings
for selecting a different server/port and overriding port for
redirect server - Neatened up logging, added timestamp and removed
extraneous linefeeds. - Fixed Settings class so defaults are done
better and more consistently
2001-12-08 03:14 barnabygray
* src/Client.cpp: Fixed a cause of segfaults in direct connections
2001-12-08 02:33 barnabygray
* README: Placed emphasis more on mailing lists as first point of
contact for people.
2001-12-08 02:24 nordman
* README: minor stuff
2001-12-08 01:57 barnabygray
* src/DCCache.h: Oops, there's always one I forget.
2001-12-08 01:57 barnabygray
* examples/shell.cpp, ickle/IckleClient.cpp: Couple of fixes to
please PowerPC compilation related to signedness. Hopefully this
is now the text-book way of handling fgetc() and istream::getc().
2001-12-08 01:43 barnabygray
* README, TODO, configure.ac, examples/shell.cpp: Tidying up README
for an impending release
2001-12-08 01:42 barnabygray
* ickle/: AwayMessageDialog.cpp, AwayMessageDialog.h,
ContactListView.cpp, IckleClient.cpp, IckleClient.h, Makefile.am,
MessageBox.cpp, SettingsDialog.cpp, SettingsDialog.h: - Changes
library side to make away messages more sensible - Added auto
reconnect + retries - Added finer logging control and logging to a
file
2001-12-08 01:40 barnabygray
* src/: Cache.h, Client.cpp, Client.h, DirectClient.cpp,
DirectClient.h, Makefile.am, SeqNumCache.h, events.cpp, events.h,
socket.cpp, socket.h: Direct connections *almost* working now
2001-12-07 23:48 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h, IckleClient.cpp: Use a
newly added signal to popup users messagebox.
2001-12-07 14:40 barnabygray
* ickle/: ContactListView.cpp, UserInfoDialog.cpp: - Removed
set_sensitive calls for User Info dialog, so they are selectable
for clipboard, etc.. - Fixed behaviour of Contact List for
contacts with empty aliases, so it behaves the same as official
clients (and more sensibly anyway).
2001-12-06 23:10 nordman
* ickle/main.cpp: Wrap execution in a try-catch block.
2001-12-06 22:50 barnabygray
* ickle/: ContactListView.cpp, ContactListView.h, IckleClient.cpp,
IckleClient.h, IckleGUI.cpp, IckleGUI.h, MessageBox.cpp,
MessageBox.h, UserInfoDialog.cpp, UserInfoDialog.h: Made user info
dialog non-modal and added a toggle for it in the Message box.
2001-12-06 15:45 nordman
* ickle/MessageBox.cpp: Make resizing of messageboxes act sanely.
2001-12-05 11:41 nordman
* README: Add blurb about --without-gnome
2001-12-05 11:17 nordman
* configure.ac: After configuring for the GNOME applet, add note
about how to configure to not use GNOME.
2001-12-04 15:41 nordman
* ickle/: History.cpp, History.h, IckleClient.cpp, IckleClient.h:
Pave way for future history viewing.
2001-12-02 22:06 nordman
* NEWS: nitpick.
2001-12-02 17:19 barnabygray
* NEWS: Updated NEWS
2001-12-02 17:18 barnabygray
* Makefile.am: Added thanks to dist
2001-12-02 17:17 barnabygray
* Makefile.am, ickle/Makefile.am, share/Makefile.am,
share/icons/Makefile.am, share/icons/doors/Makefile.am,
share/icons/ickle/Makefile.am, share/icons/icq/Makefile.am,
share/translations/Makefile.am, share/icons/gnomeicu/Makefile.am,
share/icons/new/Makefile.am: Fixes for dist target
2001-12-02 17:17 barnabygray
* THANKS: Added a thanks file
2001-12-02 17:12 barnabygray
* debian/: README.Debian, changelog, control, copyright, dirs,
docs, ickle.substvars, menu, postinst, postrm, preinst, prerm,
rules: - Added debian packaging files thanks to Dominik 'Aeneas'
Schnitzer
2001-12-02 17:03 nordman
* README: Add some stuff about the GNOME applet. Update the
shortcuts section.
2001-12-02 15:26 nordman
* acinclude.m4, configure.ac: Add a check to see if the applets
library actually is installed. Add a notice so the user knows
whether the applet is going to be built or not.
2001-12-02 13:19 nordman
* configure.ac, acinclude.m4: GNOME config stuff back in a new
form, use a modified copy of the stock macro.
2001-12-02 13:15 nordman
* ickle/Makefile.am: Program specific CPPFLAGS have no effect,
@GNOME_INCLUDEDIR@ goes back to AM_CPPFLAGS (will expand to an
empty string if the applet is not built anyway)
2001-12-01 17:07 barnabygray
* configure.ac, ickle/Makefile.am: Cut out applet GNOME config
stuff until it's fixed. Sorry Nils :-(
2001-12-01 13:24 nordman
* ickle/: MessageBox.cpp, MessageBox.h: Use Statusbar instead of an
Entry.
2001-11-29 19:42 nordman
* ickle/SettingsDialog.cpp: Remove text about echo -e "\a" working,
that's not portable so we can't say.
2001-11-29 19:18 nordman
* configure.ac, ickle/Makefile.am: Use the stock GNOME checks,
though we hack our way round the broken GNOME_INIT_HOOK macro. This
also means that the GNOME applet will be built by default if GNOME
is installed. To avoid this, pass the --without-gnome option to
configure.
Remove pthreads checks, we don't use pthreads.
2001-11-28 17:09 barnabygray
* ickle/: ContactListView.cpp, IckleClient.cpp, IckleClient.h: [no
log message]
2001-11-28 15:59 barnabygray
* TODO: Updated TODO
2001-11-27 18:42 nordman
* ickle/MessageBox.cpp: Also allow escape to close down a
messagebox.
2001-11-27 18:41 nordman
* ickle/IckleApplet.cpp: "sstream_fix" -> "sstream_fix.h"
2001-11-27 17:56 barnabygray
* ickle/MessageBox.cpp: Added Alt-C shortcut for closing MessageBox
2001-11-27 17:18 nordman
* ickle/MessageBox.cpp: Uses the defines instead of hardcoding
numbers.
2001-11-27 15:34 barnabygray
* configure.ac, examples/shell.cpp, ickle/AwayMessageDialog.cpp,
ickle/IckleApplet.cpp, ickle/IckleClient.cpp, ickle/MessageBox.cpp,
ickle/MobileNoEntry.cpp, ickle/Settings.cpp,
ickle/UserInfoDialog.cpp, src/Client.cpp, src/Contact.cpp,
src/DirectClient.cpp, src/ICQ.cpp, src/Makefile.am,
src/SNAC-MSG.cpp, src/SNAC-SRV.cpp, src/Translator.cpp,
src/socket.cpp, src/sstream_fix.h: Added wrapping for the older
strstream so that it can be used like the new sstream. This is a
messy stop gap measure that'll hopefully stop people complaining
about the dependancy on the new libstdc++ libraries, or the
backport of sstream from them.
2001-11-26 23:58 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: Make applet update in
realtime as icons changes from within the settingsdialog.
2001-11-26 23:45 nordman
* ickle/: ContactListView.cpp, IckleApplet.cpp, IckleClient.cpp,
IckleGUI.cpp, IckleGUI.h, Icons.cpp, Icons.h, MessageBox.cpp,
SettingsDialog.cpp, SettingsDialog.h, main.cpp, main.h: The Icons
class no longer has any static members, but a global g_icons is
available for use. The icons_changed signal in SettingsDialog have
been replaced with a icons_changed signal in Icons. This is
signaled *every* time the icons changes, as opposed to the old
signal.
2001-11-26 20:36 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: Better handling of applet
size, should look better with a tiny panel for example.
Throw in support for panel orientation at the same time.
2001-11-26 19:29 barnabygray
* ickle/: AwayMessageDialog.cpp, AwayMessageDialog.h,
ContactListView.cpp, ContactListView.h, IckleClient.cpp,
IckleGUI.cpp, IckleGUI.h, Makefile.am, Settings.cpp, Settings.h,
SettingsDialog.cpp, SettingsDialog.h: Away Message Dialog support
added (fetching away messages). Away messages won't work for older
licq/icq99 users though - need to do direct connections for that.
2001-11-25 22:02 barnabygray
* ickle/MessageBox.cpp: Fixed displaying 'Sending message..' and
'Sent Message' in wrong order for non-advanced via server messages.
2001-11-25 15:30 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: - Add context menu option
for toggling the main gui. - If there's messages pending, clicking
on the applet will now popup the messagebox for the contact who
sent the next message. Holding down the shift key will override
this and only cause the gui to be toggled. (option will be
introduced for specifying the default behaviour of this later).
2001-11-25 14:13 nordman
* src/Client.cpp: If a message is erased,
SignalMessageQueueChanged() must be called as well.
2001-11-25 12:55 barnabygray
* ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/MessageBox.cpp, ickle/MessageBox.h,
src/Cache.h, src/Client.cpp, src/Client.h, src/DirectClient.cpp,
src/ICBMCookie.cpp, src/ICBMCookie.h, src/ICBMCookieCache.h,
src/Makefile.am, src/SNAC-MSG.cpp, src/SNAC-MSG.h, src/TLV.cpp,
src/events.cpp, src/events.h: Added support for message ack's. GUI
now listens for the ack of a message and informs user. Need to fix
for SMSs' and probably Auth requests too.
2001-11-24 19:49 barnabygray
* ickle/: History.cpp, History.h, MessageBox.cpp, Settings.h: gcc
3.0 fixes
2001-11-24 16:48 barnabygray
* ickle/Settings.cpp: gcc 3.0 fixes
2001-11-24 16:19 barnabygray
* src/Translator.cpp: more gcc 3.0 fixes
2001-11-24 15:52 barnabygray
* src/: ICQ.cpp, ICQ.h: More gcc 3.0 fixes
2001-11-24 15:25 barnabygray
* src/: Contact.cpp, SNAC-SRV.cpp: - more gcc 3.0 fixes - advanced
messages to offline users fixed
2001-11-24 15:04 barnabygray
* src/SNAC-MSG.cpp: Another gcc 3.0 namespace fix
2001-11-24 13:49 barnabygray
* src/: Client.cpp, SNAC-GEN.cpp, SNAC-GEN.h: Fixed bug for
screwing up direct connection information when your status is
changed after logging in.
2001-11-24 13:48 barnabygray
* src/DirectClient.cpp: Working on direct connections
2001-11-24 13:44 barnabygray
* src/DirectClient.h: More gcc 3.0 namespace fixes
2001-11-24 13:42 barnabygray
* src/: Translator.h, exceptions.h, socket.h: Namespace fixes for
gcc 3.0
2001-11-23 19:36 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: This actually makes the
applet quite usable.
-Better handling of messages. -Improved visuals: * tooltip *
applet display
2001-11-23 17:19 nordman
* src/: Client.cpp, events.cpp, events.h: StatusChangeEvent now
also provides the old status as well as the new one.
2001-11-23 15:19 barnabygray
* ickle/AwayMessageDialog.cpp, ickle/AwayMessageDialog.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/Settings.cpp, ickle/SettingsDialog.cpp,
ickle/SettingsDialog.h, src/Client.cpp: - Added Away Message
signalling - Patch for Auto login, and OptionMenu in SettingsDialog
- Fix to get gui working with Nils' signal changes
2001-11-23 13:13 alant
* ickle/IckleGUI.cpp, src/Client.cpp, src/ICQ.cpp, src/ICQ.h,
src/SNAC-MSG.cpp, src/events.cpp, src/events.h:
Added support for dealing with authorization requests/responses.
2001-11-23 12:04 nordman
* log: Got imported by mistake it seems, lose it.
2001-11-23 11:06 barnabygray
* src/socket.cpp: Fixed socket closing bug on error. Thanks Alex
for pointing this out.
2001-11-22 20:54 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: Use the new statuschanged
signal in libicq to keep track of the status.
2001-11-22 20:16 nordman
* src/: Client.cpp, Client.h: Added statuschanged signal, should be
used by the parts of the program that needs to keep track of the
status (applet,GUI).
2001-11-22 19:08 barnabygray
* src/: Client.cpp, Client.h, ICQ.cpp, ICQ.h, events.cpp, events.h:
- Added support in library for signalling away message responses -
Added MyStatusChangeEvent for Nils
2001-11-22 15:41 nordman
* ChangeLog: Quit correctly when run as applet. Use a separate
wmclass for IckleGUI, fixes problem where main GUI would jump
around on the screen a lot when run as applet.
2001-11-22 14:34 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h, IckleClient.cpp,
IckleGUI.cpp: - Quit correctly when run as applet. - Use a
separate wmclass for IckleGUI, fixes problem where main GUI would
jump around on the screen a lot when run as applet.
2001-11-22 14:34 barnabygray
* src/SNAC-SRV.cpp: Patch to fix User Info translation. Thanks
Alexandr Kukushkin.
2001-11-22 10:36 barnabygray
* src/socket.cpp: - Couple of small fixes, thanks to David Hill for
pointing them out
2001-11-21 14:24 barnabygray
* ickle/ContactListView.h, ickle/IckleClient.cpp, src/TLV.cpp: -
Quick fix for empty message check - Changed ostringstream problems
2001-11-21 14:08 barnabygray
* src/socket.cpp: - Fixed already connected problems that can occur
if connect fails. Thanks to Alex for pointing it out.
2001-11-21 14:05 barnabygray
* src/socket.cpp: [no log message]
2001-11-20 22:31 nordman
* ChangeLog: Added GNOME applet to the tree.
2001-11-20 22:21 nordman
* configure.ac: Add --with-gnome option (for GNOME applet) along
with the required checks.
2001-11-20 22:16 nordman
* ickle/: IckleClient.cpp, IckleClient.h, main.cpp: Enable GNOME
applet.
2001-11-20 22:09 nordman
* ickle/Makefile.am: Modify for GNOME applet. Also remove unneeded
ickle_DEPENDENCIES.
2001-11-20 22:06 nordman
* ickle/: ickle_applet.desktop, ickle_applet.gnorba: Data files for
GNOME applet.
2001-11-20 22:04 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: Initial GNOME applet for
ickle.
2001-11-20 20:23 barnabygray
* TODO, configure.ac, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/IckleClient.cpp, ickle/IckleGUI.cpp,
ickle/Icons.cpp, ickle/MessageBox.cpp, ickle/SettingsDialog.cpp,
ickle/SettingsDialog.h, share/icons/Makefile.am,
share/icons/gnomeicu/Makefile.am, share/icons/gnomeicu/away.xpm,
share/icons/gnomeicu/chat.xpm, share/icons/gnomeicu/dnd.xpm,
share/icons/gnomeicu/ffc.xpm, share/icons/gnomeicu/file.xpm,
share/icons/gnomeicu/invisible.xpm,
share/icons/gnomeicu/message.xpm, share/icons/gnomeicu/na.xpm,
share/icons/gnomeicu/occ.xpm, share/icons/gnomeicu/offline.xpm,
share/icons/gnomeicu/online.xpm, share/icons/gnomeicu/sms.xpm,
share/icons/gnomeicu/url.xpm, share/icons/new/Makefile.am,
share/icons/new/away.xpm, share/icons/new/chat.xpm,
share/icons/new/dnd.xpm, share/icons/new/ffc.xpm,
share/icons/new/file.xpm, share/icons/new/invisible.xpm,
share/icons/new/message.xpm, share/icons/new/na.xpm,
share/icons/new/occ.xpm, share/icons/new/offline.xpm,
share/icons/new/online.xpm, share/icons/new/sms.xpm,
share/icons/new/url.xpm, src/socket.cpp: - Added a couple more sets
of icons - Fixed changing icon sets under Settings now - Added
contacts moving to top of list when they message (within the
other contacts with same status) - Fixed socket IP order and added
Alt-S send shortcut. Thanks Tobias Hoffman for pointing these out
2001-11-20 01:44 barnabygray
* ickle/: Dir.cpp, Dir.h: - Directory globbing stuff
2001-11-19 20:26 barnabygray
* ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/Icons.cpp, ickle/Icons.h,
ickle/Makefile.am, ickle/SettingsDialog.cpp,
ickle/SettingsDialog.h, ickle/main.cpp, ickle/main.h,
src/Cache.cpp, src/Cache.h, src/Client.cpp, src/Client.h,
src/Makefile.am, src/RequestIDCache.cpp, src/RequestIDCache.h,
src/SNAC-base.cpp, src/SNAC-base.h: - Request ID caching - Loading
icons almost works now
2001-11-18 19:57 barnabygray
* share/translations/Makefile.am: - Oops
2001-11-18 19:20 barnabygray
* share/: icons/Makefile.am, icons/doors/Makefile.am,
icons/ickle/Makefile.am, icons/icq/Makefile.am,
translations/Makefile.am: - More files I forgot to add
2001-11-18 18:04 barnabygray
* configure.ac, share/Makefile.am, src/Cache.cpp, src/Cache.h,
src/RequestIDCache.cpp, src/RequestIDCache.h: - More new files
2001-11-18 17:48 barnabygray
* Makefile.am, TODO, configure.ac, examples/shell.cpp,
ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/History.cpp, ickle/History.h, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/IckleGUI.h,
ickle/Makefile.am, ickle/MessageBox.cpp, ickle/MessageBox.h,
ickle/MobileNoEntry.cpp, ickle/MobileNoEntry.h,
ickle/PromptDialog.cpp, ickle/PromptDialog.h, ickle/Settings.cpp,
ickle/Settings.h, ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h, ickle/main.cpp,
ickle/main.h, icons/away.xpm, icons/chat.xpm, icons/dnd.xpm,
icons/ffc.xpm, icons/file.xpm, icons/invisible.xpm,
icons/message.xpm, icons/na.xpm, icons/occ.xpm, icons/offline.xpm,
icons/online.xpm, icons/sms.xpm, icons/url.xpm,
icons.doors/away.xpm, icons.doors/chat.xpm, icons.doors/dnd.xpm,
icons.doors/ffc.xpm, icons.doors/file.xpm,
icons.doors/invisible.xpm, icons.doors/message.xpm,
icons.doors/na.xpm, icons.doors/occ.xpm, icons.doors/offline.xpm,
icons.doors/online.xpm, icons.doors/sms.xpm, icons.doors/url.xpm,
icons.icq/away.xpm, icons.icq/chat.xpm, icons.icq/dnd.xpm,
icons.icq/ffc.xpm, icons.icq/file.xpm, icons.icq/invisible.xpm,
icons.icq/message.xpm, icons.icq/na.xpm, icons.icq/occ.xpm,
icons.icq/offline.xpm, icons.icq/online.xpm, icons.icq/sms.xpm,
icons.icq/url.xpm, share/Makefile.am, share/icons/doors/away.xpm,
share/icons/doors/chat.xpm, share/icons/doors/dnd.xpm,
share/icons/doors/ffc.xpm, share/icons/doors/file.xpm,
share/icons/doors/invisible.xpm, share/icons/doors/message.xpm,
share/icons/doors/na.xpm, share/icons/doors/occ.xpm,
share/icons/doors/offline.xpm, share/icons/doors/online.xpm,
share/icons/doors/sms.xpm, share/icons/doors/url.xpm,
share/icons/ickle/away.xpm, share/icons/ickle/chat.xpm,
share/icons/ickle/dnd.xpm, share/icons/ickle/ffc.xpm,
share/icons/ickle/file.xpm, share/icons/ickle/invisible.xpm,
share/icons/ickle/message.xpm, share/icons/ickle/na.xpm,
share/icons/ickle/occ.xpm, share/icons/ickle/offline.xpm,
share/icons/ickle/online.xpm, share/icons/ickle/sms.xpm,
share/icons/ickle/url.xpm, share/icons/icq/away.xpm,
share/icons/icq/chat.xpm, share/icons/icq/dnd.xpm,
share/icons/icq/ffc.xpm, share/icons/icq/file.xpm,
share/icons/icq/invisible.xpm, share/icons/icq/message.xpm,
share/icons/icq/na.xpm, share/icons/icq/occ.xpm,
share/icons/icq/offline.xpm, share/icons/icq/online.xpm,
share/icons/icq/sms.xpm, share/icons/icq/url.xpm, src/Client.cpp,
src/Client.h, src/Contact.cpp, src/Contact.h, src/ContactList.h,
src/DirectClient.cpp, src/DirectClient.h, src/ICBMCookie.h,
src/Makefile.am, src/TLV.h, src/Xml.h, src/buffer.cpp,
src/buffer.h, src/events.h, src/exceptions.h, src/socket.cpp,
src/socket.h: - Removed all lazy unnecessary 'using namespace'
statements, to hopefully speed up compilation a bit. Probably
will break gcc 3.0 compile, but I can't test that :-( - Fixed the
signal/delete/destroy sequence for MessageBoxes, which was flawed
before. Hopefully got it right this time. - Moved icons around, so
they installed in share. - Made translation maps install properly
now.
Phew..
2001-11-13 17:48 barnabygray
* src/SNAC-MSG.cpp: Fixed some messages coming from UIN 0 problem.
2001-11-13 15:26 barnabygray
* Makefile.am, README, configure.ac, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/IckleGUI.h,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/UserInfoDialog.cpp, ickle/main.cpp, ickle/main.h,
share/Makefile.am, share/translations/ASCII,
share/translations/CP437, share/translations/CP850,
share/translations/DANISH, share/translations/DEC_MCS,
share/translations/DG_MCS, share/translations/DUTCH,
share/translations/FINNISH, share/translations/FRENCH,
share/translations/FRENCH_CANADIAN, share/translations/GERMAN,
share/translations/HP_MCS, share/translations/IRV,
share/translations/ITALIAN, share/translations/JIS,
share/translations/LATIN_2, share/translations/MACINTOSH,
share/translations/NEXT, share/translations/NORWEGIAN_1,
share/translations/NORWEGIAN_2, share/translations/POLISH,
share/translations/POLISH_NOPL, share/translations/PORTUGUESE,
share/translations/PORTUGUESE_COM, share/translations/RUSSIAN,
share/translations/RUSSIAN_ALT, share/translations/RUSSIAN_WIN,
share/translations/SPANISH, share/translations/SWEDISH,
share/translations/SWEDISH_NAMES,
share/translations/SWEDISH_NAMES_COM, share/translations/SWISS,
share/translations/UNITED_KINGDOM,
share/translations/UNITED_KINGDOM_COM, src/Client.cpp,
src/Client.h, src/Contact.cpp, src/DirectClient.cpp,
src/DirectClient.h, src/ICQ.cpp, src/ICQ.h, src/Makefile.am,
src/SNAC-MSG.cpp, src/SNAC-SRV.cpp, src/SNAC-base.cpp,
src/SNAC-base.h, src/TLV.cpp, src/TLV.h, src/Translator.cpp,
src/Translator.h, src/buffer.cpp, src/buffer.h: - Added Translation
map files, so they will be installed into
share/ickle/translations - Added Translation patch from Alex
(ported from licq) to Library. Thanks. - Added Translation
selection into settings dialog. - Put status icons onto status
pulldown.
2001-11-12 14:52 barnabygray
* src/ICQ.cpp: Alex pointed out m_ack wasn't being initialised.
2001-11-12 01:09 barnabygray
* src/userinfoconstants.h: Detailed user info
2001-11-11 16:08 barnabygray
* ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/IckleClient.cpp, ickle/Settings.cpp, ickle/Settings.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h, src/Client.cpp,
src/Client.h, src/Contact.cpp, src/Contact.h, src/ICQ.cpp,
src/ICQ.h, src/Makefile.am, src/SNAC-MSG.cpp, src/SNAC-MSG.h,
src/SNAC-SRV.cpp, src/SNAC-SRV.h: Implementing extended user info.
Done most of it, a few bits might need tidying up.
2001-11-09 16:01 barnabygray
* configure.ac, ickle/IckleClient.cpp, ickle/IckleClient.h: Added
patch for %X substitutions as licq does for event received
commands, etc. Thanks to John Steele Scott.
2001-11-09 15:07 barnabygray
* src/: Client.cpp, ICQ.cpp, ICQ.h, SNAC-MSG.cpp: Fixed multiline
problem in sending advanced messages (messages icq2000 users)
2001-11-09 10:41 barnabygray
* ickle/main.cpp: Enabled locale support for ickle.
2001-11-09 02:16 barnabygray
* src/: DirectClient.cpp, DirectClient.h: More fixes for gcc 3.0
2001-11-08 19:39 barnabygray
* examples/Makefile.am, ickle/Makefile.am, src/buffer.h: Locked
linking to local library to fix linking to older libraries already
installed.
2001-11-08 16:39 barnabygray
* src/: DirectClient.cpp, buffer.cpp, buffer.h, exceptions.cpp,
socket.cpp: gcc 3.0 fixes.
2001-11-08 16:01 barnabygray
* ickle/ContactListView.cpp, ickle/Icons.cpp, ickle/Icons.h,
src/exceptions.h, src/socket.h: Invisible status info patch from
Tobias Hoffman. Thanks.
2001-11-08 09:53 barnabygray
* configure.ac, src/buffer.cpp: Fixed printing non-printable
characters that was messing up gnome-terminal. Thanks for Michael
Smith for the patch.
2001-11-08 09:46 barnabygray
* scripts/micq2ickle.pl: Thanks to ord for the micq2ickle.pl
script.
2001-11-08 09:40 barnabygray
* src/: ICBMCookie.cpp, ICBMCookie.h: Oops, forgot to add these to
CVS.
2001-11-08 01:14 barnabygray
* src/: Client.cpp, Client.h, ICQ.cpp, ICQ.h, Makefile.am,
SNAC-MSG.cpp, SNAC-MSG.h, SNAC-base.cpp, SNAC-base.h, TLV.cpp,
TLV.h, UserInfoBlock.cpp, buffer.cpp, buffer.h: Finally got
advanced message acks working. Should receive messages + urls fine
from icq2000 people now.
2001-11-07 20:56 barnabygray
* ChangeLog, src/Client.cpp, src/SNAC-MSG.cpp, src/SNAC-MSG.h,
src/SNAC.cpp: Fixed server login problem related to not fully
logging in because server was no longer sending the MOTD.
2001-11-07 20:16 barnabygray
* README, configure.ac, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/Makefile.am,
src/Client.cpp, src/buffer.cpp, src/socket.cpp, src/socket.h: Got
0.1 patch branch up to date on fixes and fixed the no MOTD login
problem that was stopping it from going online proper.
2001-11-07 15:12 barnabygray
* README: CVS instructions updated.
2001-11-07 13:39 barnabygray
* src/Contact.cpp: TCP Version not initialised properly in
Contact.cpp
2001-11-07 01:52 barnabygray
* ickle/IckleClient.cpp, ickle/UserInfoDialog.cpp,
ickle/UserInfoDialog.h, src/Client.cpp, src/Contact.cpp,
src/Contact.h, src/buffer.cpp: - Fixed bug in
Buffer::UnpackUint16StringNull, wasn't advancing over the null at
the end. - Added First name, Last name and Email details to User
Info dialog.
2001-11-06 16:47 barnabygray
* configure.ac, src/Client.cpp, src/Contact.cpp, src/Contact.h,
src/SNAC-MSG.cpp, src/SNAC-MSG.h, src/socket.cpp, src/socket.h:
Fixed problem on MacOS X with inet address lookup.
2001-11-06 15:19 barnabygray
* README, configure.ac, examples/shell.cpp,
ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/Makefile.am, src/Client.cpp, src/Client.h, src/Contact.cpp,
src/Contact.h, src/DirectClient.cpp, src/DirectClient.h,
src/ICQ.cpp, src/ICQ.h, src/Makefile.am, src/SNAC-BUD.cpp,
src/SNAC-BUD.h, src/SNAC-GEN.cpp, src/SNAC-GEN.h, src/SNAC-LOC.cpp,
src/SNAC-LOC.h, src/SNAC-MSG.cpp, src/SNAC-MSG.h, src/SNAC-SRV.cpp,
src/SNAC-SRV.h, src/SNAC-UIN.cpp, src/SNAC-UIN.h,
src/SNAC-base.cpp, src/SNAC-base.h, src/SNAC.cpp, src/SNAC.h,
src/TLV.cpp, src/TLV.h, src/UserInfoBlock.cpp, src/UserInfoBlock.h,
src/buffer.cpp, src/buffer.h, src/events.cpp, src/events.h,
src/exceptions.h, src/socket.cpp, src/socket.h: Lots of work in
progress stuff.. - bug fixes - Direct Connections halfdone - Split
up SNAC into separate files - Added patch by Alex Antropoff for
rate limit responses + new uin Beware, it's half done currently, so
sending + receiving messages is broken for the moment.
2001-10-30 20:51 barnabygray
* configure.ac: Fixed configure so it should link in correct
libraries for solaris.
2001-10-21 15:03 barnabygray
* TODO, ickle/ContactListView.cpp, ickle/ContactListView.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.h,
ickle/Settings.h, src/Client.cpp, src/Client.h, src/Contact.cpp,
src/Contact.h, src/ContactList.h, src/SNAC.cpp, src/SNAC.h,
src/TLV.cpp, src/TLV.h, src/events.cpp, src/events.h,
src/socket.cpp: Added Alex Antropoff changes: - Registering new
UINs to libicq2000 - Handle SNAC 4 0 - message sent offline -
Compiler warnings on his compiler - Invisible status
My changes: - Half-way through implementing a proper socket handle
signalling system. - Invisible status to contacts - Handle Dual
Login error SNAC
2001-10-21 14:56 barnabygray
* Makefile.am: Icons directories changed around
2001-10-21 14:56 barnabygray
* icons/: away.xpm, dnd.xpm, ffc.xpm, invisible.xpm, na.xpm,
occ.xpm, offline.xpm, online.xpm: New icons!
2001-10-21 14:55 barnabygray
* icons.doors/: away.xpm, chat.xpm, dnd.xpm, ffc.xpm, file.xpm,
invisible.xpm, message.xpm, na.xpm, occ.xpm, offline.xpm,
online.xpm, sms.xpm, url.xpm: Moved old icons to icons.doors
directory.
2001-10-21 14:53 barnabygray
* README, configure.ac, examples/Makefile.am, examples/shell.cpp:
Added a basic example
2001-10-14 14:56 barnabygray
* ickle/History.cpp, src/events.cpp: Added history logging
Offline/Multiparty message info.
2001-10-14 12:23 barnabygray
* ickle/MessageBox.cpp, src/Client.cpp, src/SNAC.cpp, src/TLV.cpp,
src/TLV.h, src/events.cpp, src/events.h: Receiving Multiparty
messages supported.
2001-10-13 14:15 barnabygray
* Makefile.am, configure.ac, src/Client.cpp, test/Makefile.am,
test/test-client.cpp, test/test-xml, test/test-xml.cpp: Test wasn't
any use to anyone and wasn't keeping up with the library either.
2001-10-09 09:40 barnabygray
* ChangeLog, ickle/MessageBox.cpp: Eeek, SMS not working for
non-ICQ contacts - forgot to change the tab numbering after
changing the tabs.
2001-10-08 19:49 barnabygray
* README, configure.ac: Version 0.1.1 ready for release.
2001-10-08 19:46 barnabygray
* src/: Client.cpp, SNAC.cpp, buffer.cpp: Fixed parsing SMS Server
response packets. Still need to do Request ID caching code for
them though.
2001-10-08 18:51 barnabygray
* ickle/: AddMobileUserDialog.cpp, AddMobileUserDialog.h,
Makefile.am, MessageBox.cpp, MobileNoEntry.cpp, MobileNoEntry.h:
Mobile No entry on add Mobile contact. Mobile contacts only have
mobile tab on message box.
2001-10-08 09:20 barnabygray
* ickle/: History.cpp, History.h: History logging.
2001-10-08 00:54 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h, Settings.cpp,
Settings.h: Window remembers where it was in between
quiting/reloading.
2001-10-07 18:57 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h, Makefile.am: Added
history logging.
2001-10-07 14:01 barnabygray
* ChangeLog, README, TODO: Updating docs
2001-10-07 13:59 barnabygray
* ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h,
src/Client.cpp, src/Client.h, src/ContactList.h, src/SNAC.cpp,
src/SNAC.h, src/buffer.cpp, src/buffer.h, src/exceptions.h: Added
fetching simple user info from server.
2001-10-06 18:09 barnabygray
* ickle/ContactListView.cpp: Fixed problem that was probably
causing segfaults on earlier version of gtk--.
2001-10-03 17:02 barnabygray
* configure.ac, ickle/ContactListView.h, ickle/IckleClient.h,
ickle/IckleGUI.h, ickle/Settings.h, src/ContactList.h, src/TLV.h:
Fixed g++-3.0 hash_map problems.
2001-10-03 12:59 barnabygray
* aclocal.m4, stamp-h, stamp-h.in, config.cache: Shouldn't be on
CVS
2001-10-03 12:56 barnabygray
* config.log, config.status, config.h.in, libtool: Shouldn't be on
CVS
2001-10-03 12:55 barnabygray
* README, config.h.in, config.log, config.status, configure.ac:
Catch more missing headers now at configure.
2001-10-03 01:37 barnabygray
* config.h.in, config.log, config.status, libtool,
ickle/AddMobileUserDialog.h, ickle/ContactListView.h,
ickle/IckleClient.h, ickle/IckleGUI.h, ickle/MessageBox.h,
ickle/PromptDialog.h, ickle/Settings.h, ickle/UserInfoDialog.h,
ickle/main.h, src/Client.h, src/Contact.h, src/ContactList.h,
src/SNAC.h, src/TLV.h, src/Xml.h, src/buffer.h, src/events.h,
src/exceptions.h, src/socket.h, test/test-client.cpp: Fixed
namespace std problems.
2001-10-03 01:13 barnabygray
* README: [no log message]
2001-10-03 01:05 barnabygray
* ickle/SettingsDialog.cpp: Small fix in descriptive text
2001-10-03 01:05 barnabygray
* configure.ac: Fixed check for libstdc++
2001-10-01 19:52 barnabygray
* ickle/IckleGUI.cpp: Eek.
2001-10-01 17:43 barnabygray
* ickle/: IckleGUI.cpp, MessageBox.cpp: Fixed times displayed,
clear url boxes after sending.
2001-10-01 17:35 barnabygray
* ChangeLog, config.log, config.status, configure.ac, libtool,
ickle/IckleClient.cpp, src/Client.cpp, src/events.h,
test/test-client.cpp: Fixed configure versioning.
2001-10-01 15:23 barnabygray
* config.h: [no log message]
2001-10-01 15:20 barnabygray
* src/.deps/Client.P, src/.deps/Contact.P, src/.deps/ContactList.P,
src/.deps/SNAC.P, src/.deps/TLV.P, src/.deps/Xml.P,
src/.deps/buffer.P, src/.deps/events.P, src/.deps/exceptions.P,
src/.deps/logger.P, src/.deps/socket.P, test/.deps/test-client.P,
test/.deps/test-sms.P, test/.deps/test-sms.pp, configure: [no log
message]
2001-10-01 13:21 barnabygray
* README: [no log message]
2001-10-01 13:16 barnabygray
* COPYING, INSTALL, Makefile, Makefile.in, aclocal.m4, config.h,
config.log, config.status, configure, configure.ac, libtool,
ickle/Makefile, ickle/Makefile.in, src/Makefile, src/Makefile.in,
test/Makefile, test/Makefile.in, Makefile, Makefile.in,
ickle/Makefile, ickle/Makefile.in, src/Makefile, src/Makefile.in,
test/Makefile, test/Makefile.in: [no log message]
2001-10-01 12:55 barnabygray
* icons/.xvpics/away.xpm, icons/.xvpics/dnd.xpm,
icons/.xvpics/ffc.xpm, icons/.xvpics/invisible.xpm,
icons/.xvpics/message.xpm, icons/.xvpics/na.xpm,
icons/.xvpics/occ.xpm, icons/.xvpics/offline.xpm,
icons/.xvpics/online.xpm, icons/.xvpics/sms.xpm,
icons/.xvpics/url.xpm, icons.icq/.xvpics/sms.xpm: [no log message]
2001-10-01 12:28 barnabygray
* AUTHORS, ChangeLog, Makefile, Makefile.am, NEWS, README,
config.h.in, configure.ac, stamp-h, stamp-h.in, Makefile.in,
config.h, configure, aclocal.m4, autogen.sh, config.cache,
config.log, config.status, log, TODO, libtool, src/Client.cpp,
src/Client.h, src/Makefile, src/Makefile.am, src/Makefile.in,
src/SNAC.cpp, src/buffer.cpp, src/constants.h, src/socket.cpp,
src/socket.h, src/Contact.cpp, src/Contact.h, src/ContactList.cpp,
src/ContactList.h, src/SNAC.h, src/TLV.cpp, src/TLV.h, src/Xml.cpp,
src/Xml.h, src/buffer.h, src/custom_marshal.h, src/events.cpp,
src/events.h, src/exceptions.cpp, src/exceptions.h,
src/.deps/Client.P, src/.deps/TLV.P, src/.deps/buffer.P,
src/.deps/events.P, src/.deps/exceptions.P, src/.deps/Contact.P,
src/.deps/ContactList.P, src/.deps/SNAC.P, src/.deps/Xml.P,
src/.deps/logger.P, src/.deps/socket.P, test/Makefile.in,
test/test-client.cpp, test/test-xml.cpp, test/Makefile,
test/Makefile.am, ickle/AddMobileUserDialog.cpp,
ickle/AddMobileUserDialog.h, ickle/AddUserDialog.cpp,
ickle/AddUserDialog.h, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/IckleGUI.h,
ickle/Icons.cpp, ickle/Icons.h, ickle/Makefile, ickle/Makefile.am,
ickle/Makefile.in, ickle/MessageBox.cpp, ickle/MessageBox.h,
ickle/PromptDialog.cpp, ickle/PromptDialog.h, ickle/Settings.cpp,
ickle/Settings.h, ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h, ickle/main.cpp,
ickle/main.h, test/test-xml, test/.deps/test-client.P,
test/.deps/test-sms.P, test/.deps/test-sms.pp, icons/away.xpm,
icons/chat.xpm, icons/dnd.xpm, icons/ffc.xpm, icons/file.xpm,
icons/invisible.xpm, icons/message.xpm, icons/na.xpm,
icons/occ.xpm, icons/offline.xpm, icons/online.xpm, icons/sms.xpm,
icons/url.xpm, icons/.xvpics/away.xpm, icons/.xvpics/dnd.xpm,
icons/.xvpics/ffc.xpm, icons/.xvpics/invisible.xpm,
icons/.xvpics/message.xpm, icons/.xvpics/na.xpm,
icons/.xvpics/occ.xpm, icons/.xvpics/offline.xpm,
icons/.xvpics/online.xpm, icons/.xvpics/sms.xpm,
icons/.xvpics/url.xpm, icons.icq/away.xpm, icons.icq/chat.xpm,
icons.icq/dnd.xpm, icons.icq/ffc.xpm, icons.icq/file.xpm,
icons.icq/invisible.xpm, icons.icq/message.xpm, icons.icq/na.xpm,
icons.icq/occ.xpm, icons.icq/offline.xpm, icons.icq/online.xpm,
icons.icq/sms.xpm, icons.icq/url.xpm, icons.icq/.xvpics/sms.xpm,
scripts/licq2ickle.pl: Initial revision
2001-10-01 12:28 barnabygray
* AUTHORS, ChangeLog, Makefile, Makefile.am, NEWS, README,
config.h.in, configure.ac, stamp-h, stamp-h.in, Makefile.in,
config.h, configure, aclocal.m4, autogen.sh, config.cache,
config.log, config.status, log, TODO, libtool, src/Client.cpp,
src/Client.h, src/Makefile, src/Makefile.am, src/Makefile.in,
src/SNAC.cpp, src/buffer.cpp, src/constants.h, src/socket.cpp,
src/socket.h, src/Contact.cpp, src/Contact.h, src/ContactList.cpp,
src/ContactList.h, src/SNAC.h, src/TLV.cpp, src/TLV.h, src/Xml.cpp,
src/Xml.h, src/buffer.h, src/custom_marshal.h, src/events.cpp,
src/events.h, src/exceptions.cpp, src/exceptions.h,
src/.deps/Client.P, src/.deps/TLV.P, src/.deps/buffer.P,
src/.deps/events.P, src/.deps/exceptions.P, src/.deps/Contact.P,
src/.deps/ContactList.P, src/.deps/SNAC.P, src/.deps/Xml.P,
src/.deps/logger.P, src/.deps/socket.P, test/Makefile.in,
test/test-client.cpp, test/test-xml.cpp, test/Makefile,
test/Makefile.am, ickle/AddMobileUserDialog.cpp,
ickle/AddMobileUserDialog.h, ickle/AddUserDialog.cpp,
ickle/AddUserDialog.h, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/IckleGUI.cpp, ickle/IckleGUI.h,
ickle/Icons.cpp, ickle/Icons.h, ickle/Makefile, ickle/Makefile.am,
ickle/Makefile.in, ickle/MessageBox.cpp, ickle/MessageBox.h,
ickle/PromptDialog.cpp, ickle/PromptDialog.h, ickle/Settings.cpp,
ickle/Settings.h, ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h, ickle/main.cpp,
ickle/main.h, test/test-xml, test/.deps/test-client.P,
test/.deps/test-sms.P, test/.deps/test-sms.pp, icons/away.xpm,
icons/chat.xpm, icons/dnd.xpm, icons/ffc.xpm, icons/file.xpm,
icons/invisible.xpm, icons/message.xpm, icons/na.xpm,
icons/occ.xpm, icons/offline.xpm, icons/online.xpm, icons/sms.xpm,
icons/url.xpm, icons/.xvpics/away.xpm, icons/.xvpics/dnd.xpm,
icons/.xvpics/ffc.xpm, icons/.xvpics/invisible.xpm,
icons/.xvpics/message.xpm, icons/.xvpics/na.xpm,
icons/.xvpics/occ.xpm, icons/.xvpics/offline.xpm,
icons/.xvpics/online.xpm, icons/.xvpics/sms.xpm,
icons/.xvpics/url.xpm, icons.icq/away.xpm, icons.icq/chat.xpm,
icons.icq/dnd.xpm, icons.icq/ffc.xpm, icons.icq/file.xpm,
icons.icq/invisible.xpm, icons.icq/message.xpm, icons.icq/na.xpm,
icons.icq/occ.xpm, icons.icq/offline.xpm, icons.icq/online.xpm,
icons.icq/sms.xpm, icons.icq/url.xpm, icons.icq/.xvpics/sms.xpm,
scripts/licq2ickle.pl: Imported sources
|