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
|
2006-03-26 ekalin <ekalin@bol.com.br>
* cmdhistory.c, parser.c, perlscript.c, we_input.c:
Removed some warnings and made code more compliant.
2006-03-24 ekalin <ekalin@bol.com.br>
* multilinesend.c, we_input.c, we_mainwindow.c, we_statusbar.c, worldgui.c:
Fixed bug with pango font freeing that caused crashes sometimes.
2006-03-08 ekalin <ekalin@bol.com.br>
* kildclient.h, net.c, triggers.c:
When two lines match a trigger, each capturing different parts of the
line with () in regexps, each trigger is now run correctly with its
appropriate parts in $_[].
2006-02-17 ekalin <ekalin@bol.com.br>
* mainwindow.c, net.c, perlscript.c, worldgui.c:
Removed compiler warnings.
* kildclient.h, mainwindow.c, worldgui.c:
Pressing ENTER in the search box activates Find Next, and pressing ESC
closes the search bar.
* kildclient.h, net.c, perlscript.c:
Fixed a bug that caused error messages to be printed when disconnected
from a World, even if there was no error.
2006-02-15 ekalin <ekalin@bol.com.br>
* mainwindow.c, net.c:
Bug fixed: when compression is disabled during the MUD session, the
status bar and Statistics dialog now reflect that fact.
* kildclient.glade, kildclient.h, multilinesend.c:
You can now choose not to close the Multi-Line Send dialog after
sending the data.
* perlscript.c:
Two new functions, $world->getconntime() and $world->getidletime()
retrieve the time connected and idle time, respectively.
2006-02-14 ekalin <ekalin@bol.com.br>
* Makefile.am, kildclient.glade, kildclient.h, net.c, we_protocols.c, worldeditor.c, worlds.c:
MCCP can now be configured to be enabled only if proposed after
connection (the new default), to be enabled at all times or to be
disabled.
2006-02-13 ekalin <ekalin@bol.com.br>
* net.c:
Telnet TTYPE and NAWS are now sent as one package only, to help
servers that don't process TELNET correctly.
2006-02-09 ekalin <ekalin@bol.com.br>
* mainwindow.c, wndmain.glade:
Fixed a but that caused a crash when the Manual menu was selected for
the second time.
2006-02-08 ekalin <ekalin@bol.com.br>
* Makefile.am, kildclient.glade, kildclient.h, simocombobox.c, simocombobox.h, we_input.c, worldgui.c, worlds.c:
Added spell checking support via gtkspell.
* we_input.c:
Fixed bugs regarding the World Editor and the input bar size.
* kildclient.h, main.c, mainwindow.c, perlscript.c:
If you try to exit the program when there are open worlds, a
confirmation dialog is now displayed.
2006-02-03 ekalin <ekalin@bol.com.br>
* cmdhistory.c, kildclient.h, mainwindow.c, wndmain.glade, worldgui.c:
Alt+Shift+Up and Down can be used to search for commands starting with
the text that is in the input bar.
2006-01-29 ekalin <ekalin@bol.com.br>
* aliases.c, triggers.c:
Debug Matches now shows trigger and alias names.
2006-01-25 ekalin <ekalin@bol.com.br>
* kildclient.h, multilinesend.c, perlscript.c:
Added a new function, $world->sendfile(), to send the contents of a
file to the mud.
2006-01-21 ekalin <ekalin@bol.com.br>
* cmdhistory.c, kildclient.h, mainwindow.c, wndmain.glade, worldgui.c:
When using the multi-line input box, the up and down arrows behave now
more naturally: they either retrieve the previous/next command or move
the cursor. They move the cursor if you have already moved the cursor
in order to edit the line, and move through commands otherwise.
2006-01-09 ekalin <ekalin@bol.com.br>
* worldselector.c:
Pressing ENTER in the "host" or "port" fields of the World Selector
now works.
2006-01-05 ekalin <ekalin@bol.com.br>
* net.c:
Fixed a bug that caused a crash when very long lines were received
when compression is active.
2006-01-03 ekalin <ekalin@bol.com.br>
* prefs.c:
Fixed a bug that caused a crash when the Preferences dialog was opened
for the second time.
2005-12-24 ekalin <ekalin@bol.com.br>
* main.c:
Prevented the input bar contents from being selected whenever it gets
focus.
2005-12-23 ekalin <ekalin@bol.com.br>
* wndmain.glade: Fixed keyboard shortcuts for moving through worlds.
2005-12-22 ekalin <ekalin@bol.com.br>
* kildclient.glade: Fixed typos in strings.
2005-12-21 Eduardo M Kalinowski <ekalin@bol.com.br>
* cmdhistory.c, kildclient.glade, kildclient.h, mainwindow.c, net.c, simocombobox.c, simocombobox.h, we_input.c, worldgui.c, worlds.c:
Merged the mlinput branch, bringing the multi-line input bar into
HEAD.
* simocombobox.c: The line height is now cached for performance.
* simocombobox.c:
The size of the multi-line input box now really represents the number
of lines.
2005-12-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, we_input.c, worldgui.c, worlds.c:
The size of the input box can now be configured in the World Editor.
* simocombobox.c:
Focus is kept in the text entry even if size is changed.
* kildclient.h, worldgui.c, worlds.c:
The size of the input box is now saved and restored.
2005-12-19 Eduardo M Kalinowski <ekalin@bol.com.br>
* simocombobox.c, simocombobox.h:
A signal is emitted when the size of the input line is changed.
* simocombobox.c:
The arrows now appear at the top and bottom of their area.
* simocombobox.c: The maximum number of lines can be changed.
* simocombobox.c, simocombobox.h, worldgui.c:
The arrows work for chaning the size of the input box.
2005-12-18 Eduardo M Kalinowski <ekalin@bol.com.br>
* simocombobox.c:
Added some arrows to change the input bar height. (But changing the
height is still inoperant.)
2005-12-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c:
Key press events are now handled in a way that everything works as expected.
2005-12-14 Eduardo M Kalinowski <ekalin@bol.com.br>
* simocombobox.c:
When the input state is toggled, the text is preserved.
* simocombobox.c:
When the multi-line input is selected, activate and changed signals
are sent when appropriate, so that it can now be used.
* mainwindow.c:
Bug fixed: the real clipboard is used for copying text from the
display window.
* simocombobox.c, simocombobox.h, worldgui.c:
Functions for getting/setting/etc with text now work for the currently
selected text widget, whichever it is.
2005-12-13 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c:
Added a button to test the multi-line input. (But this will probably
be changed in the future.)
* simocombobox.c: The multi-line entry now appears correcly.
* simocombobox.c, simocombobox.h:
The SimoComboBox can now have also a multi-line text widget.
* kildclient.h, simocombobox.c, simocombobox.h, we_input.c, worldgui.c:
Removed the last references to txtEntry (or so I hope).
* simocombobox.c, simocombobox.h, we_input.c, worldgui.c:
Removed direct reference to txtEntry with regard to completion.
* simocombobox.c: Grabbing the focus works correctly again.
* cmdhistory.c, kildclient.h, mainwindow.c, net.c, simocombobox.c, simocombobox.h, worldgui.c:
Removed several direct references to the entry widget.
* simocombobox.c, simocombobox.h, worldgui.c:
Moved some text entry signals to SimoComboBox.
2005-12-11 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c:
Fixed a bug that caused the search box to be redisplayed even if
hidden when World->Open was selected.
* worldgui.c: Fixed a bug with tooltips after a world is closed.
2005-12-07 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c, multilinesend.c:
A much simpler way of determining the character size is now used.
* kildclient.glade, multilinesend.c:
The entry boxes in the Multi Line Send dialog are now 80 characters
wide.
2005-11-30 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, hooks.c, macros.c, perlscript.c, timers.c, triggers.c:
The $world->listX functions now adapt their width to the screen width.
2005-11-24 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
The argument checking in functions is now better: no more strange
warnings if no arguments are given to some functions, a nice message
is printed. Also, the built-in $world-> functions are now safer even
if not invoked from a proper world instance.
2005-11-22 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, perlscript.c:
Added the $world->Xenabled() functions, where X is trigger, alias,
macro, timer and hook.
2005-11-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, kildclient.glade, kildclient.h, perlscript.c, perlscript.h, triggers.c, we_aliases.c, we_generic_guied.c, we_triggers.c, worlds.c:
Triggers and aliases can now match case-insensitively.
* parser.c:
Fixed a bug that caused a segfault when a recursive alias definition
was found.
2005-11-15 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Fixed bug regarding alias matching: the line is now marked as a UTF-8
string.
2005-11-12 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c: Added a missing newline in the output of getkeycode().
* macros.c:
Fixed a bug that caused macros not to be run when a non-English
keyboard is used.
2005-11-06 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.glade, kildclient.h, perlscript.c, prefs.c, sound.c:
Added the play() function to play sounds.
2005-11-05 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c:
Fixed a bug that caused the wrong number of lines that fit in the
window to be calculated (and sent to the server if NAWS is being used)
under some circunstances.
2005-11-04 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c:
Fixed a small bug that caused segfaults under some rare circunstances.
2005-11-03 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, aliases.c, ansitextview.c, cmdhistory.c, hooks.c, kcwin.c, kildclient.glade, kildclient.h, log.c, macros.c, main.c, mainwindow.c, multilinesend.c, net.c, parser.c, perlscript.c, perlscript.h, permanentvariables.c, plugins.c, prefs.c, timers.c, triggers.c, we_advanced.c, we_aliases.c, we_colors.c, we_general.c, we_generic_guied.c, we_hooks.c, we_input.c, we_macros.c, we_mainwindow.c, we_misc.c, we_plugins.c, we_scripting.c, we_statusbar.c, we_timers.c, we_triggers.c, we_vars.c, worldeditor.c, worldgui.c, worlds.c, worldselector.c:
Merged the libgnutls branch.
2005-11-02 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.glade, mainwindow.c:
Added information about the SSL certificate in the Statistics window.
* kildclient.glade, mainwindow.c:
Added information about the SSL connection to the Statistics dialog.
* mainwindow.c:
Removed a warning about pointer sizes under AMD64 architecture.
* ansitextview.c:
Fixed bug that caused text to be displayed incorrectly when line
drawing and normal characters were mixed in the same line.
* we_general.c: Removed unused variable when compiling without SSL.
* kildclient.h, mainwindow.c, net.c: Added SSL connection support.
2005-11-01 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, main.c, we_general.c, worlds.c:
Added a checkbox to select whether to use SSL when connecting.
* aliases.c, ansitextview.c, cmdhistory.c, hooks.c, kcwin.c, kildclient.h, log.c, macros.c, main.c, mainwindow.c, multilinesend.c, net.c, parser.c, perlscript.c, perlscript.h, permanentvariables.c, plugins.c, prefs.c, timers.c, triggers.c, we_advanced.c, we_aliases.c, we_colors.c, we_general.c, we_generic_guied.c, we_hooks.c, we_input.c, we_macros.c, we_mainwindow.c, we_misc.c, we_plugins.c, we_scripting.c, we_statusbar.c, we_timers.c, we_triggers.c, we_vars.c, worldeditor.c, worldgui.c, worlds.c, worldselector.c:
Corrected a problem with header inclusion order.
* Makefile.am:
Added a configure check for libgnutls (but this can be disabled.)
2005-10-31 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, perlscript.c, permanentvariables.c, we_generic_guied.c, we_vars.c:
The order of permanent variables can be changed from the GUI Editor.
* cmdhistory.c, mainwindow.c, prefs.c, we_aliases.c, we_general.c, we_generic_guied.c, we_hooks.c, we_macros.c, we_timers.c, we_triggers.c, we_vars.c, worldgui.c, worlds.c:
Removed some memory leaks because GladeXML's were not being destroyed.
2005-10-30 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, aliases.c, hooks.c, kildclient.glade, kildclient.h, macros.c, timers.c, triggers.c, we_aliases.c, we_generic_guied.c, we_hooks.c, we_macros.c, we_timers.c, we_triggers.c, we_vars.c, worldeditor.c, worlds.c:
It is now possible to export and import triggers, aliases, macros,
timers, hooks and permanent variables.
2005-10-24 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, wndmain.glade, worldgui.c:
Add a Find function to search for text in the output buffer.
2005-10-21 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c:
When there is a prompt and a command prints something, the text is now
printed above the command.
2005-10-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c, wndmain.glade:
Added the "Edit" menu with the usual Cut, Copy, Paste and Delete.
* hooks.c, kildclient.glade, kildclient.h, perlscript.c, we_advanced.c, we_aliases.c, we_hooks.c, we_macros.c, we_timers.c, we_triggers.c, worldeditor.c, worlds.c:
Triggers, aliases, etc, defined by plugins can be displayed in the GUI
editors.
2005-10-19 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade:
The Close button in the About dialog works correctly now.
2005-10-15 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, mainwindow.c:
A GtkAboutDialog is now used for the About dialog.
2005-10-14 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, multilinesend.c, we_scripting.c, worldeditor.c:
Now using a GtkFileChooserButton instead of doing the same manually.
2005-10-01 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated messages files.
* kildclient.glade: Updated version to 2.2.2.
* ansitextview.c: Corrected problem in the CVS Id line.
2005-09-30 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade:
Joined the "Colors" and "Window" tabs of the Preferences Dialog into
one.
* kildclient.glade:
Corrected the layout in the Sending tab of the Preferences dialog.
* worldgui.c:
The time displayed in the tooltips is now locale-dependent.
* perlscript.c:
Removed big memory leaks that caused memory comsumption to get very
high in long sessions.
2005-09-28 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Removed a debugging message that was kept there, forgotten.
* kildclient.h, worldgui.c:
When you leave the mouse over a link in the output window, a better
tooltip is displayed.
* ansitextview.c:
URLs with username and password are now detected and made clickable.
2005-09-25 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c:
Fixed a bug that caused a crash when a connection was broken abruptly
(ie, not in a tidy way, generally because of a network failure).
2005-09-23 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am:
We're now using autopoint instead of the old and out-of-date
glib-gettextize.
* kildclient.glade: Corrected some errors in the message files.
* ansitextview.c:
Corrected a bug that caused text to be displayed in the wrong colors
or attributes when unrecognized ANSI sequences were received. (These
are now properly ignored.)
2005-09-22 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c:
Fixed a security bug that caused a segmentation fault when a very long
ANSI sequence was receveived.
* kildclient.h, net.c, worlds.c:
A GTimer is now used to keep track of elapsed time for the prompt
timeout. (Which is good, because Mingw32 lacks gettimeofday().)
2005-09-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c, triggers.c:
Fixed a bug that caused a segfault in the Windows version when
$world->listtrigger was used and there was a trigger without an
action.
* kildclient.glade: Updated version to 2.2.1.
* worlds.c:
Fixed a bug that causes a segfault when trying to connect to a world
under Windows.
2005-09-19 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldselector.c:
Corrected a bug that prevented compilation under Windows.
* kildclient.glade: Updated version to 2.2.0.
* kildclient.glade, main.c: Corrected some messages.
2005-09-19 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldselector.c:
Corrected a bug that prevented compilation under Windows.
* kildclient.glade: Updated version to 2.2.0.
* kildclient.glade, main.c: Corrected some messages.
2005-09-18 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, mainwindow.c, net.c, wndmain.glade:
Added a dialog showing some statistics about the world and the
connection.
* ansitextview.c, kildclient.h, worldgui.c:
The line count in the status bar now displays the total number of
lines received, not the number of lines in the scrollback buffer.
2005-09-17 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c:
Fixed (hopefully) the bug that caused segfaults when Connect to
Anothre was selected.
* ansi.h, ansitextview.c, kildclient.h, net.c, we_mainwindow.c, worldgui.c:
Merged the more_ansi branch, bringing its features into HEAD.
2005-09-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c, kildclient.h, we_mainwindow.c, worldgui.c:
Added support for the vt100 line drawing characters.
2005-09-15 Eduardo M Kalinowski <ekalin@bol.com.br>
* worlds.c:
Fixed bug that caused some gtk warnings to be displayed when a world
was requested from the command line.
* kildclient.h, main.c, net.c:
Added two debug-mode command-line options that dump everything
received from the mud to a file. One of them dumps data just as
received (data which might be compressed), and the other dumps data
after decompression (if MCCP was used; otherwise the dumps are equal).
* ansitextview.c, kildclient.h, net.c:
Made the xterm256_state variable local to the function that parses
ANSI sequences, because only complete sequences are passed to that
function.
2005-09-14 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c:
Corrected the code for a grayscale level that was wrong.
* ansi.h, ansitextview.c, kildclient.h:
Added suport for ANSI "hidden" text.
* ansi.h, ansitextview.c, kildclient.h:
Ansi Reverse Video mode is now supported.
2005-09-13 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c: When you connect to a host that uses MCCP, this information is
displayed in the status bar.
* ansi.h, ansitextview.c, kildclient.h, worldgui.c:
Added support for doubly underlined and striked through text.
* ansi.h, ansitextview.c, kildclient.h, net.c, worldgui.c:
Added support for xterm's 256 color mode.
2005-09-12 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c: Corrected bug in ANSI italics and underline handling.
2005-09-11 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansi.h, ansitextview.c, kildclient.h, worldgui.c:
Underlined and italics text is now displayed, if the
common-but-not-so-official ansi codes for these attributes is used.
* ansitextview.c, kildclient.h, net.c, worldgui.c:
Changed some structures that hold text appearance settings (currently
only for ANSI) in preparation for future changes.
2005-09-10 Eduardo M Kalinowski <ekalin@bol.com.br>
* cmdhistory.c, kildclient.glade, kildclient.h, multilinesend.c, prefs.c:
You can now set default values for the delay parameters when sending
multiple lines or commands.
2005-09-07 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c:
Fixed a bug that sometimes caused segfaults when "Connect to Another
World" was selected.
* kildclient.h, main.c, mainwindow.c, we_advanced.c, wndmain.glade, worldeditor.c, worlds.c:
It is now possible to edit a Default World whose parameters are copied
from when creating new Worlds.
2005-09-04 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, net.c, we_general.c, worlds.c, worldselector.c:
Added the possibility of having more than one character associate with
a World for auto-login.
2005-09-03 Eduardo M Kalinowski <ekalin@bol.com.br>
* we_plugins.c: Removed some useless code from a couple of functions.
2005-09-02 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, multilinesend.c, worlds.c:
The multi-line send dialog is now per-world and not one for all
worlds.
2005-09-01 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c, kildclient.h, net.c, perlscript.c, perlscript.h, triggers.c, worldgui.c:
Removed compilation warnings (with GCC 4.0) about signedness mismatch
in several places.
* kildclient.glade, kildclient.h, net.c, triggers.c, we_triggers.c, wndmain.glade, worlds.c:
Added the hability to test triggers and see how they would react to
lines from the MUD.
2005-08-31 Eduardo M Kalinowski <ekalin@bol.com.br>
* hooks.c: Fixed a bug that caused an infinite loop when there was an
OnSentCommand hook and two triggers matched and caused commands to be
sent.
2005-08-30 Eduardo M Kalinowski <ekalin@bol.com.br>
* we_aliases.c, we_hooks.c, we_macros.c, we_plugins.c, we_timers.c, we_triggers.c, we_vars.c:
The DEL key works in the GUI editors for triggers, etc. as a shortcut
to delete the object.
* wndmain.glade:
Added keyboard accelerators for Reconnect and Connect to Another.
2005-08-26 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c:
Fixed a bug that caused a segfault when opening a world.
* net.c:
Fixed a bug that caused you to be disconnected if a very long line
(>1k) was sent by the mud.
2005-08-25 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated version to 2.1.0.
2005-08-25 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated version to 2.1.0.
2005-08-23 Eduardo M Kalinowski <ekalin@bol.com.br>
* triggers.c:
Fixed a bug that caused a newline to be sent when a pure gag trigger
(one without an action) matched.
* hooks.c, kildclient.h, net.c, perlscript.c, we_hooks.c, worlds.c:
Added a new hook, OnDisconnect, triggered after a connection to a
World is closed.
* cmdhistory.c, worlds.c:
Removed some memory leaks from the Command History feature.
2005-08-22 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, cmdhistory.c, kildclient.glade, kildclient.h, mainwindow.c, wndmain.glade, worldgui.c, worlds.c:
Added the Command History dialog.
2005-08-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* multilinesend.c:
Removed a memory leak in the multi-line-send feature.
2005-08-18 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c:
Corrected a bug that prevented prompts from being displayed under some
circunstances.
2005-08-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c, net.c:
Changed the way timeouts for printing incomplete lines are used,
hopefully KildClient is slightly faster now.
* Makefile.am, ansitextview.c, kcircularqueue.c, kcircularqueue.h, kildclient.h, we_misc.c, worldgui.c, worlds.c:
Added a feature that displays a tooltip with the time the line was
received when the mouse is left over a line for a little time.
2005-08-13 Eduardo M Kalinowski <ekalin@bol.com.br>
* wndmain.glade, worldgui.c:
The shortcuts for moving to the next/previous world have changed to
CTRL+Page up/down, and ALT+num has been added as a shortcut for going
to a given world.
2005-08-12 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, we_advanced.c, we_aliases.c, we_hooks.c, we_macros.c, we_timers.c, we_triggers.c, we_vars.c, worlds.c:
It is now possible to disabled the dialog confirming trigger, etc.
deletion in the GUI Editors.
* worldselector.c:
In the World Selector, the list of worlds starts focused.
2005-08-07 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c:
Fixed a bug that caused the first line not to be displayed correctly
under some circunstances.
2005-08-06 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c:
Added a tooltip to the "clear" button near the command input area.
2005-08-03 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c, perlscript.c:
The Reconnect menu item and the $world->reconnect function now work
even if it is already connected.
2005-07-31 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade:
Added a label describing how to use the "Key" entry box in the macro
edit dialog.
2005-07-25 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Allowed the win32 version to find the boogus Gettext.pm wherever it is
run from.
* worlds.c:
Bug fixed: attempting to edit an offline World no longer crashes
KildClient.
2005-07-24 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated version to 2.0.0.
* mainwindow.c, worldeditor.c:
Removed warnings when compiling with optimization on.
* we_hooks.c:
Fixed bug that prevented the OnSentCommands Hook editor from working
correctly, and which caused segfaults on some occasions.
2005-07-23 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, prefs.c, worldgui.c:
Clicking URLs now works in Windows too.
* worlds.c:
Corrected bug that prevented the command separator from being
correctly saved under some circunstances (ie, under windows).
* triggers.c: Corrected little typo in $world->listtrigger output.
2005-07-22 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, wndmain.glade:
Dialogs, especially the World Selector, now appear in the center of
the screen.
* ansitextview.c, perlscript.h:
Added a not-so-beautiful hack to prevent ActiveState Perl (under
mingw) from trying to use its own functions instead of the C library
ones.
2005-07-21 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldselector.c:
Corrected a bug in the mingw implementation of the functions that
otherwise use glob().
* worlds.c:
Corrected bug that caused a segfault when a world file could not be
loaded for display in the world selector.
* net.c: Added a mingw implementation of gettimeofday().
* log.c, main.c, mainwindow.c, prefs.c:
Made some more changes to enable compilation under Mingw.
* worldselector.c:
Corrected a bug that prevented a new world from being created.
* kildclient.h, multilinesend.c:
Moved a definition of a function that didn't need to be in
kildclient.h to a proper file.
* net.c:
Changed the write() and read() functions to send() and recv(), because
only these work with sockets under Mingw.
2005-07-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c, permanentvariables.c:
Corrected bug that caused perl_script_import_file to be called with a
NULL file.
* main.c: Made further changes to allow compilation under MINGW32.
2005-07-19 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldselector.c:
MINGW32 does not have glob(), so the parts that used that were
rewritten with what Windows provides.
* simocombobox.c, ansitextview.c, main.c, mainwindow.c:
Made some changes to make possible compilation under Windows with mingw32.
* worlds.c:
Changed the names of the structure to have a KC_ prefix because one of
them was conflicting with another #define in mingw.
2005-07-17 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Corrected some problems in the UI messages.
2005-07-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, ansitextview.c, hooks.c, kcwin.c, log.c, macros.c, main.c, mainwindow.c, multilinesend.c, net.c, parser.c, perlscript.c, permanentvariables.c, plugins.c, prefs.c, timers.c, triggers.c, we_advanced.c, we_aliases.c, we_colors.c, we_general.c, we_hooks.c, we_input.c, we_macros.c, we_mainwindow.c, we_misc.c, we_plugins.c, we_scripting.c, we_statusbar.c, we_timers.c, we_triggers.c, we_vars.c, worldeditor.c, worldgui.c, worlds.c, worldselector.c:
Renamed the config.h file to kcconfig.h, so that it does not conflict
with a config.h that libperl installs. This change allows kildclient
to be built with gcc 4.0.X, which for some reason was #include'ing
perl's config.h.
* kildclient.h, net.c, triggers.c:
Corrected bug with rewriter triggers.
2005-07-15 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade:
Added tooltips to most of the widgets, especially in the World Editor.
* ansitextview.c, kcwin.c, kildclient.h, net.c, perlscript.c:
Corrected bug that caused a segfault when a very long string was
echo()ed.
2005-07-14 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Made the ENTER key work in the World Editor.
* Makefile.am, aliases.c, hooks.c, kildclient.glade, kildclient.h, macros.c, mainwindow.c, perlscript.c, plugins.c, timers.c, triggers.c, we_aliases.c, we_hooks.c, we_macros.c, we_plugins.c, we_timers.c, we_triggers.c, we_vars.c, worldeditor.c, worlds.c, worldselector.c:
Merged the Graphical Editors branch, bringing them to the main trunk.
* we_vars.c:
Corrected a small inconvenience in the variables editor, in case you
clicked to edit a variable but later decided not to change it.
* kildclient.glade:
Corrected a small problem in the Timer editing window.
* kildclient.h, plugins.c, we_plugins.c, we_timers.c, worldeditor.c, worlds.c, worldselector.c:
Fixed some bugs that prevented the GUI Editors from being used when
editing a world from the World Selector.
2005-07-13 Eduardo M Kalinowski <ekalin@bol.com.br>
* we_plugins.c:
When loading a plugin, you can make it be loaded always at startup.
* kildclient.h, plugins.c, we_plugins.c:
The Load button now works, for loading plugins.
* kildclient.glade:
Moved the Loaded Plugins section to be the first one.
* we_plugins.c: The Help button in the Plugin Editor works.
* we_plugins.c:
Plugins can be enabled/disabled by clicking the checkbox in the
Enabled column of the GUI Editor.
* kildclient.glade:
Removed the "Information" button in the Plugin editor, all the
information is shown in the list anyway.
2005-07-12 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, perlscript.c, we_plugins.c:
The list loaded plugins is now updated when a plugin is loaded or
enabled/disabled.
* kildclient.h, we_plugins.c, worldeditor.c:
The loaded plugins are displayed in the GUI Editor.
* we_plugins.c: The order of the start up plugins can now be changed.
* plugins.c:
The plugins specified to load at startup plugins are now loaded on
startup.
* kildclient.h, mainwindow.c, plugins.c, we_plugins.c, worlds.c:
The list of startup plugins is saved and loaded now.
* kildclient.h, plugins.c, we_plugins.c:
Plugins can be added and removed to the startup list in the GUI
editor.
2005-07-11 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.glade, kildclient.h, we_plugins.c:
Added a (non functional yet) GUI Editor for plugins.
* we_plugins.c: New file.
* worldeditor.c, worlds.c:
Added a (non functional yet) GUI Editor for plugins.
2005-07-10 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.glade, kildclient.h, perlscript.c, we_vars.c, worldeditor.c:
Added a GUI Editor for Permanent Variables.
* we_vars.c: New file.
2005-07-09 Eduardo M Kalinowski <ekalin@bol.com.br>
* hooks.c, kildclient.h, perlscript.c, we_hooks.c:
The Up and Down buttons of the Hook GUI Editor work; that GUI is now
complete.
* hooks.c, kildclient.h, perlscript.c:
Added the $world->movehook function.
* hooks.c, kildclient.h, we_hooks.c:
Hooks can be added from the GUI editor.
* kildclient.glade, we_hooks.c:
Hooks can be edited from the GUI editor.
* we_hooks.c: Hooks can be deleted from the GUI editor.
* hooks.c, kildclient.h, perlscript.c, we_hooks.c:
When hooks are added, modified or deleted from the command line, the
view in the GUI Editor is updated.
2005-07-08 Eduardo M Kalinowski <ekalin@bol.com.br>
* hooks.c, kildclient.h, we_hooks.c, worldeditor.c, worlds.c:
The hooks are listed in the GUI Hook editor.
* worlds.c: Fixed a bug that attributed an invalid name to a hook.
* Makefile.am, kildclient.h, we_hooks.c:
Added a (not yet functioal) GUI editor for Hooks.
* we_hooks.c: New file.
* worldeditor.c: Added a (not yet functioal) GUI editor for Hooks.
* Makefile.am, kildclient.glade, kildclient.h, macros.c, perlscript.c, we_macros.c, worldeditor.c:
Added a GUI editor for Macros.
* we_macros.c: New file.
2005-07-07 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.glade, kildclient.h, perlscript.c, timers.c, we_timers.c:
Added a GUI editor for timers.
* we_timers.c: New file.
* worldeditor.c: Added a GUI editor for timers.
* perlscript.c:
Bug fixed: you can now create a trigger without an action if it gags
the log line.
2005-07-06 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.glade, kildclient.h, perlscript.c, triggers.c, we_aliases.c, we_triggers.c, worldeditor.c:
Added a GUI editor for triggers.
* we_triggers.c: New file.
2005-07-05 Eduardo M Kalinowski <ekalin@bol.com.br>
* we_aliases.c: Confirmation is asked before deleting an alias.
* perlscript.c:
Corrected handling of position numbers in $world->movealias().
* we_aliases.c:
The Perl Eval setting can now be toggled by clicking in the check
button directly.
2005-07-04 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, we_aliases.c:
Aliases can be moved from the GUI Editor now.
* aliases.c, kildclient.h, perlscript.c, we_aliases.c:
Added the $world->movealias() function to reorder aliases.
* net.c:
Corrected bug that caused extra newlines to be printed when using
Multi-Line Send with Command Echo active.
* kildclient.h, multilinesend.c, we_scripting.c, worldeditor.c:
Corrected bug that caused a Segfault when the ... button was used in
the Scripting section of the World Editor to select a file.
* we_aliases.c:
Bug fixed: using the Perl commands for aliases does not cause a
warning anymore if the World Editor wasn't opened before.
2005-07-03 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated version to 1.3.2.
* worlds.c:
Brought the command-separator bugfix (in HEAD) here, so that it
appears already in the next bugfix release.
* worldgui.c:
Merged the bugfix that caused segfault when opening a new world.
* worldgui.c:
Fixed bug that caused a segfault when a world was opened for the first
time.
* we_aliases.c:
The Enabled property of aliases can be toggle directly from the list
of aliases in its GUI editor by clicking on the toggle button.
2005-07-02 Eduardo M Kalinowski <ekalin@bol.com.br>
* we_aliases.c:
Double clicking on a row in the Alias editor now edits that alias.
* kildclient.glade, we_aliases.c:
The Add and Edit buttons of the Graphical Alias Editor work.
* aliases.c, kildclient.h, perlscript.c, we_aliases.c:
The Delete button of the Graphical Alias Editor works.
2005-07-01 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, perlscript.c, we_aliases.c, worldeditor.c:
The aliases are listed in the World Editor.
2005-06-30 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldeditor.c:
Moved the section of the World Editor where the script file is set to
inside the Automation Group.
* Makefile.am, kildclient.glade, kildclient.h, we_aliases.c, worldeditor.c:
Created the basic layout for a graphical editor for aliases.
* we_aliases.c: New file.
2005-06-29 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, we_advanced.c, we_colors.c, we_general.c, we_input.c, we_misc.c, we_scripting.c, worldeditor.c:
Bug fixed: when several World Editors were open, sometimes the
settings of one World affected the wrong world.
* perlscript.c:
Bug fixed: macro names are displayed in $world->listmacro().
* worlds.c:
Bug fixed: & and < can be used in the command separator and this does
not cause the world to stop being recognized anymore.
2005-06-28 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, multilinesend.c, net.c:
Corrected newline printing when "Don't Echo Commands" is active.
* kildclient.glade, kildclient.h, mainwindow.c, perlscript.c, worldeditor.c, worlds.c, worldselector.c:
The World Editor is not modal anymore.
2005-06-25 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c, net.c:
Corrected bug that caused command output to be erased sometimes.
2005-06-24 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, ansitextview.c, kcwin.c, kildclient.h, main.c, mainwindow.c, perlscript.c, perlscript.h, we_colors.c, we_mainwindow.c, worldgui.c:
Merged the novte branch again, bringing the new KCWin's without a VTE.
2005-06-23 Eduardo M Kalinowski <ekalin@bol.com.br>
* kcwin.c, perlscript.c, perlscript.h:
Removed a memory leak when a KCWin is destroyed.
* kcwin.c, kildclient.h, worldgui.c:
Added some more child widgets in the KCWin hash.
* perlscript.c:
Added a missing newline to the end of a message output by the program.
* ansitextview.c, kcwin.c, perlscript.c, perlscript.h:
Added the KCWin::feed function again.
2005-06-22 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c, kcwin.c, kildclient.h, mainwindow.c, we_colors.c, we_mainwindow.c, worldgui.c:
The new C-generated KCWin now appears in the same font/color as the
world, and is bigger.
* Makefile.am, kcwin.c, perlscript.c, perlscript.h:
Added the function KCWin::new to create KCWin's, but they are still
white, and the other functionalities are not present yet.
* kcwin.c: New file.
* worldgui.c:
Added the function KCWin::new to create KCWin's, but they are still
white, and the other functionalities are not present yet.
* kildclient.h, main.c, mainwindow.c, worldgui.c:
Changed the world_gui_new function so that it can create GUIs for the
MUD itself and for other purposes (new built-in KCWin).
2005-06-19 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c, kildclient.h, worldgui.c:
Added a line counter to the status bar.
* kildclient.h, worldgui.c: Merged the bug fix into HEAD.
* kildclient.h, worldgui.c:
Fixed bug when a world was closed and others still remained open.
* log.c:
Removed some hacks to deal with \r in lines when logging, since
newlines are converted to \n upon reception now.
* hooks.c, perlscript.c: Marked some more strings for translation.
* Makefile.am, aliases.c, ansi.h, ansitextview.c, hooks.c, kcvte.c, kcvte.h, kildclient.glade, kildclient.h, macros.c, main.c, mainwindow.c, net.c, parser.c, perlscript.c, prefs.c, timers.c, triggers.c, we_back.c, we_colors.c, we_fonts.c, we_input.c, we_mainwindow.c, we_misc.c, worldeditor.c, worldgui.c, worlds.c, worldselector.c:
Merged the novte branch.
2005-06-18 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c, kildclient.glade, kildclient.h, worldgui.c:
The scrollback buffer is now kept to the number of lines specified by
the user, lines at the beginning are removed when it gets too big.
* kildclient.glade, kildclient.h, we_mainwindow.c, worldgui.c, worlds.c:
Word wrap can be enabled or disabled now.
* Makefile.am:
Renamed the Fonts section of the World Editor to Main Window, in
preparation for the upcoming changes.
* we_mainwindow.c: New file.
* kildclient.glade, kildclient.h, we_fonts.c, we_mainwindow.c, worldeditor.c:
Renamed the Fonts section of the World Editor to Main Window, in
preparation for the upcoming changes.
* kildclient.glade, we_fonts.c, we_input.c:
Moved the Command Entry font configuration to the Input tab.
* kildclient.glade:
Removed the Background tab of the World Editor from the glade file.
* worldgui.c:
Corrected a bug that prevented selecting text from the World window.
2005-06-17 Eduardo M Kalinowski <ekalin@bol.com.br>
* we_misc.c: Corrected a bug in the last commit.
2005-06-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* we_misc.c:
Removed a (commented) reference to a vte function that is not
necessary anymore.
* ansitextview.c, kildclient.h, worldgui.c:
URLs are now clicable again.
2005-06-14 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c: Bug fixed: NAWS data is sent on resizes also.
* ansitextview.c, kildclient.h, main.c, worldgui.c, worlds.c:
In the first run of KildClient, when there is not saved window size,
the window now starts with a 80x24 character terminal screen.
2005-06-13 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c, kildclient.h, mainwindow.c, net.c, prefs.c:
Optimized the way echoed commands and connection messages are output
to the world.
* ansi.h, ansitextview.c:
Some nonstandard but well-known ANSI sequences for colors are now
supported.
* mainwindow.c, worldgui.c:
The color and font of the TextView are now set before anything is
echoed to the World, so there is no more a font shift only after
connection is established.
* ansitextview.c, worldgui.c:
Changing the default foreground or background color now yields the
correct result.
* ansitextview.c, net.c: Telnet NAWS is sent again.
* ansitextview.c, kildclient.h, perlscript.c:
The getwindowsize() function now works again.
2005-06-11 Eduardo M Kalinowski <ekalin@bol.com.br>
* ansitextview.c, we_fonts.c: The use bold setting now works again.
* ansitextview.c, kildclient.glade, kildclient.h, we_colors.c, worlds.c:
The default bold background color can now be configured.
* ansitextview.c:
Corrected bug regarding incomplete lines and long sequences of echoed
text.
* ansitextview.c, kildclient.h, perlscript.c, triggers.c:
Corrected the echo and stripansi functions.
* kildclient.h, net.c:
Corrected a bug in the ANSI parser with regard to incomplete lines.
* ansi.h, ansitextview.c, kildclient.h, mainwindow.c, net.c, triggers.c, we_colors.c, worldgui.c:
Wrote the ANSI parser. It works, but still needs some fixing.
2005-06-08 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, ansitextview.c, hooks.c, kildclient.h, macros.c, mainwindow.c, parser.c, perlscript.c, timers.c, triggers.c, worldgui.c:
Added a function to add text with printf syntax.
2005-06-07 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c:
The page up/down and ctrl+end keys for scrolling now work again.
* ansitextview.c, kildclient.h, worldgui.c:
When the scrollbar is not positioned at the end, new text does not
cause scrolling to the end, unless the Scroll Output option is active.
* kildclient.h, net.c, worldgui.c:
Lines that do not arrive complete in the first time are now printed
correctly again.
* we_fonts.c, worldgui.c: The font of the text view can be configured.
* kildclient.h, net.c:
Incoming data now has all its newlines, in whatever format, changed
into just \n. This eases processing, and removes a bug that printed
some blank lines in the new TextView.
* parser.c:
Corrected a wrong call to one of the ansi text adding functions.
* aliases.c, ansitextview.c, hooks.c, kildclient.h, macros.c, mainwindow.c, net.c, perlscript.c, timers.c, triggers.c, worldgui.c:
The text now scrolls to end when some more text is received.
* ansitextview.c: New file.
* Makefile.am, aliases.c, ansitextview.c, hooks.c, kcvte.c, kcvte.h, kildclient.h, macros.c, mainwindow.c, net.c, parser.c, perlscript.c, timers.c, triggers.c, we_colors.c, we_fonts.c, we_misc.c, worldgui.c, worldselector.c:
Removed the vte and changed it for a TextView, but it still barely
works.
2005-06-06 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.h, we_back.c, worldeditor.c, worldgui.c, worlds.c:
Removed the Background section of the World Editor, as the textview
does not support that.
* log.c: The LOG ENDED message now appears in its own line.
2005-06-05 Eduardo M Kalinowski <ekalin@bol.com.br>
* hooks.c, parser.c, perlscript.c, plugins.c, triggers.c:
Corrected some problems that caused build failures for some versions
of the Perl library.
2005-06-04 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, net.c: The Telnet IAC processor is now more robust.
2005-05-31 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated version to 1.3.1.
2005-05-27 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated version to 1.3.0.
* main.c: Corrected typos in some strings.
2005-05-27 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated version to 1.3.0.
* main.c: Corrected typos in some strings.
2005-05-27 Eduardo M Kalinowski <ekalin@bol.com.br>
* main.c: Corrected typos in some strings.
2005-05-26 Eduardo M Kalinowski <ekalin@bol.com.br>
* log.c, worlds.c:
Corrected bugs regardling logging: binary characters are not printed
anymore, and the Log Ended message is now printed correctly.
* aliases.c, triggers.c:
The debug information for matched triggers and aliases is now more
clear and informative.
2005-05-23 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, net.c, worldgui.c:
KildClient now supports the Telnet NAWS option to inform its window
size to the server.
2005-05-22 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, kildclient.h, perlscript.c, perlscript.h, worlds.c:
The substitution of aliases can now be evaluated as a Perl statement
(using the s//e construct). See the manual for more details.
2005-05-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c:
Corrected bug in the removal of old commands from the command history.
2005-05-17 Eduardo M Kalinowski <ekalin@bol.com.br>
* we_input.c, worldgui.c:
Corrected bug that caused the recent command history list to get
bigger than its determined size, and never stop growing.
* kildclient.h, main.c, mainwindow.c, net.c, perlscript.c, wndmain.glade, worldgui.c, worlds.c, worldselector.c:
Added an option to go offline when disconnected from a World, so that
you can still see the window and run Perl commands and plugins.
2005-05-13 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, simocombobox.c, simocombobox.h, we_input.c, worldgui.c, worlds.c:
Changed the behaviour of the command history to work more similarly to
the functionality provided by the libhistory library (but we are not
using this library).
2005-05-12 Eduardo M Kalinowski <ekalin@bol.com.br>
* worlds.c:
Bug fixed: timers with names now have this name loaded correctly upon
loading a world.
2005-05-09 Eduardo M Kalinowski <ekalin@bol.com.br>
* wndmain.glade:
Corrected icon for menu, that was wrong because of last commit.
2005-05-06 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, kildclient.h, mainwindow.c, triggers.c, wndmain.glade:
Added an option to display (in stderr) information about matched
triggers and aliases.
2005-05-04 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.glade, kildclient.h, main.c, mainwindow.c, net.c, perlscript.c, we_fonts.c, we_statusbar.c, wndmain.glade, worldeditor.c, worldgui.c, worlds.c:
Merged the statusbar branch, bringing its new features into HEAD.
* kildclient.glade, kildclient.h, net.c, we_statusbar.c, worldgui.c, worlds.c:
The behavior of the idle time counter can be configured now.
* worldgui.c:
Removed the frame around the main status bar text. It looks nicer this
way.
2005-05-02 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c: Corrected little bug in the time display.
* Makefile.am, kildclient.glade:
The format of the time counters can now be changed.
* we_statusbar.c: New file.
* kildclient.h, mainwindow.c, we_fonts.c, we_statusbar.c, worldeditor.c, worlds.c:
The format of the time counters can now be changed.
2005-05-01 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, main.c, mainwindow.c, net.c, worldgui.c:
Added a connection and idle time counter to the status bar.
2005-04-30 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, we_fonts.c, worldgui.c, worlds.c:
The status bar font can now be changed.
* kildclient.h, mainwindow.c, perlscript.c, wndmain.glade, worldgui.c:
Removed the stock GtkStatusBar widget and recreated one equal (or very
similar :-) ) using an hbox and a label, in order to be able to
futurely do more things with it.
2005-04-28 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, main.c, mainwindow.c, net.c, worldselector.c:
It is now possible to specify one or more Worlds in the command line
and have them opened automatically.
2005-04-26 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c:
When sending something to the server that contains the Telnet IAC
character, that character is now correctly escaped.
* main.c:
SIGPIPE signals are ignore, so the program does not crash anymore if
we try to write to a closed connection (which could happen during some
Telnet option negotiation).
2005-04-25 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c:
KildClient now identifies itself using the Telnet TERMINAL TYPE
option.
2005-04-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated version to 1.2.0.
2005-04-19 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c, net.c:
Corrected bug that prevented $world->close from exiting the program
when called in the last open world.
2005-04-17 Eduardo M Kalinowski <ekalin@bol.com.br>
* hooks.c, kildclient.h, net.c, perlscript.c, worlds.c:
Added a new hook, OnSentCommand, run after a command is sent to the
world.
2005-04-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* worlds.c:
Corrected bug that caused a segfault when a plugin tried to modify
(including deleting) a trigger, timer, etc in the UNLOAD function. Of
course, this should not be done, which is why there is now a note in
the manual about that.
* net.c, perlscript.c:
Corrected some small problems with the hook code.
2005-04-15 Eduardo M Kalinowski <ekalin@bol.com.br>
* hooks.c, kildclient.h, mainwindow.c, net.c, perlscript.c, worlds.c:
Changed the way hooks work: they are now very much more similar to
triggers, etc.
2005-04-11 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, net.c, perlscript.c, triggers.c, worlds.c:
A new trigger mode has been added: rewriter triggers. Rewriter
triggers run before normal triggers and can change the received line,
so that further triggers work on the changed line.
2005-04-10 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c:
Made a disconnected world be saved before another one is open if
"Connect to Another" is selected.
* worldselector.c:
The list of save worlds is now shown sorted alphabetically.
* kildclient.h, main.c, mainwindow.c, net.c, worldselector.c:
Rewrote the code dealing with opening and closing worlds, especially
the code to handle the "Reconnect, Open Another, Close" choice. The
code is now much more clear and simple.
2005-04-09 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.glade, kildclient.h, parser.c, we_input.c, we_misc.c, worldeditor.c, worlds.c:
The command separator is now configurable, instead of being fixed as
%;.
* kildclient.h, main.c, mainwindow.c, net.c, worldselector.c:
Corrected bug that caused two World Selector dialogs to appear when
it was not possible to connect to the first world tried when the
program started.
* perlscript.c:
Corrected reference counting of Perl objects in some cases.
2005-04-08 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
New functions, getversion() and $world->getpluginversion() to return
the version of KildClient or of a given plugin.
2005-04-02 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
New funtions $world->getmainfont() and $world->getentryfont() to
return the font used in the main screen or command entry box,
respectively.
* kildclient.h, net.c:
KildClient now supports MCCP (Mud Client Compression Protocol) version
1 and 2. This protocol, supported by several servers, compresses that
sent by the server, thus reducing greatly the bandwidth used.
2005-03-31 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, kildclient.h, macros.c, mainwindow.c, timers.c, triggers.c, wndmain.glade:
It is now possible to temporarily disable all triggers (or aliases, or
timers, or macros) via the menu.
2005-03-29 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
A new function, $world->getname(), has been added. This function
returns the name of the world.
* kildclient.h, plugins.c, worlds.c:
KildClient now calls a plugin's UNLOAD function when the plugin is
unloaded, so that it can dispose of anything it needs.
* worldselector.c:
Bug fixed: KildClient does not crash anymore if the last open world
is not present in the configuration file.
2005-03-28 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
When a plugin uses a permanent variable, there will not be warnings
about the variable being permanent (or about it being defined, in the
first time) when the plugin is loaded.
* mainwindow.c, worlds.c, worldselector.c:
Removed some more memory leaks.
2005-03-27 Eduardo M Kalinowski <ekalin@bol.com.br>
* worlds.c, worldselector.c:
Removed a couple memory leaks from the code.
2005-03-25 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated version to 1.1.2.
* net.c: Removed a memory leak when processing triggers.
2005-03-25 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c: Removed a memory leak when processing triggers.
2005-03-24 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c: Avoided some warnings when compiling with optimization.
2005-03-24 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c: Avoided some warnings when compiling with optimization.
2005-03-23 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, net.c, perlscript.c:
Corrected some type usages that caused warnings (and possibly errors)
when compiling in different architectures.
2005-03-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c:
Corrected bug that caused segfaults when a world was closed and
removed and the window lost focus.
* aliases.c, hooks.c, kildclient.glade, kildclient.h, log.c, macros.c, main.c, net.c, parser.c, perlscript.c, permanentvariables.c, plugins.c, prefs.c, timers.c, triggers.c, we_advanced.c, we_back.c, we_colors.c, we_fonts.c, we_general.c, we_misc.c, we_scripting.c, worldeditor.c, worlds.c, worldselector.c:
Merged the world_editor_glade branch, thus bringing the Glade-ified
World Editor the the main trunk.
2005-03-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c:
Corrected bug that caused segfaults when a world was closed and
removed and the window lost focus.
* aliases.c, hooks.c, kildclient.glade, kildclient.h, log.c, macros.c, main.c, net.c, parser.c, perlscript.c, permanentvariables.c, plugins.c, prefs.c, timers.c, triggers.c, we_advanced.c, we_back.c, we_colors.c, we_fonts.c, we_general.c, we_misc.c, we_scripting.c, worldeditor.c, worlds.c, worldselector.c:
Merged the world_editor_glade branch, thus bringing the Glade-ified
World Editor the the main trunk.
2005-03-19 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Added keyboard accelerators to the World Editor.
* aliases.c, timers.c, triggers.c:
Bug fixed: avoided duplicate creation of plugin timers when the plugin
is loaded from a script file, and removed duplicate calculation of
some trigger and alias REs.
* perlscript.c:
Bug fixed: plugins loaded after the world has been loaded (ie, not
from a script file) now work correctly.
2005-03-18 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade:
The Password field in the World Editor now hides the text with *
again.
* kildclient.glade:
Bug fixed: the Preferences dialog now displays correctly when opened.
* mainwindow.c:
Bug fixed: when the last world is disconnected, "Connect to another
world is selected" and then "Cancel" is clicked, the program now exits
correctly instead of keeping an open window.
* worldselector.c:
Bug fixed: when deleting a world, all its files are deleted, not only
the .wrl file. (And removed a small memleak there.)
* mainwindow.c:
Corrected bug that caused segfault when a OnConnect hook and aliases
existed in a World.
* kildclient.h, prefs.c:
The colorNames variable is not global anymore, since this is not
necessary anymore.
* kildclient.glade, kildclient.h, we_advanced.c, worldeditor.c:
Moved the Advanced section of the World Editor to Glade.
* kildclient.glade, we_back.c, we_scripting.c, worldeditor.c:
Moved the Scripting section of the World Editor to Glade.
* kildclient.glade, kildclient.h, we_back.c, worldeditor.c:
Moved the Background section of the World Editor to Glade.
* kildclient.glade, kildclient.h, we_colors.c, worldeditor.c:
Moved the Colors section of the World Editor to Glade.
* we_general.c, we_misc.c:
Corrected style errors in C function definition.
* kildclient.glade:
Removed the dummy dialog in the Glade file that used to hold the
General section of the World Editor.
* kildclient.glade, kildclient.h, we_fonts.c, we_misc.c, worldeditor.c:
Moved the Fonts section in the World Editor to Glade.
2005-03-17 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, we_general.c, worldeditor.c:
Moved the "General" section of the World Editor to glade.
2005-03-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, hooks.c, kildclient.glade, kildclient.h, log.c, macros.c, main.c, net.c, parser.c, perlscript.c, permanentvariables.c, plugins.c, timers.c, triggers.c, we_advanced.c, we_back.c, we_colors.c, we_fonts.c, we_general.c, we_misc.c, we_scripting.c, worldeditor.c, worlds.c, worldselector.c:
Moved the World Editor dialog to Glade (but not yet the panels).
* net.c:
Bug fixed: when the MUD sends lot of text at once, KildClient does not
lock until all the text has been received, and does not show it all at
once anymore.
2005-03-15 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, net.c, worlds.c:
Bug fixed: the anti-flood mechanism now works even with several open
worlds.
* perlscript.c:
qr<> is now used (instead of qr//) to precompute Regexps, this should
avoid problems with triggers/aliases containing slashes.
2005-03-14 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, kildclient.h, mainwindow.c, perlscript.c, perlscript.h, triggers.c:
Optimized regexp matching in triggers and aliases by precomputing
them.
* worldselector.c:
Bug fixed: when a world was openend by connecting directly to it, or
when the last open world does not exist anymore, there is not a GTK
warning anymore.
2005-03-13 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c:
Corrected a bug that caused some worlds to be marked with new text and
not be unmarked when focused.
* kildclient.h, worldgui.c:
Corrected another bug regarding the arrow keys to retrieve previous
commands. (And made the code slightly better.)
2005-03-12 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c:
Bug fixed: pressing up arrow to retrieve the last command now
correctly retrieves it in all cases.
* kildclient.h, main.c, mainwindow.c, perlscript.c:
Bug fixed: $world->setstatus now works even if the window does not
have focus when the function is called.
2005-03-11 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, perlscript.c:
Added a getmenubar() function to get a pointer to the menu bar, to be
used in Gtk-Perl. Unfortunately, this causes problems when loading
other worlds.
* kildclient.glade: Updated version to 1.1.1
* kildclient.h, perlscript.c: Made some modifications to plugins:
- Syntax: no need to include the file in a block anymore;
- loadplugin() does not consider the plugin as loaded if there was
an error in the file or die() was called;
- requireplugin(), a new funcion to make sure a plugin is present,
or abort if it cannot be loaded.
2005-03-10 Eduardo M Kalinowski <ekalin@bol.com.br>
* wndmain.glade:
Changed the keys used to move between worlds to Alt+Arrows because
Ctrl+arrows was used to move between words in the command entry box.
* kildclient.glade:
Corrected bug that caused the About dialog to be displayed only in the
first time it was requested.
2005-03-09 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, main.c, mainwindow.c, net.c, perlscript.c, worldselector.c:
Changed the way "Connect to Another World" is handled when a world is
disconnected, so that ir is just removal of the world followed by
opening another. The code, however, is still rather messy in that
part.
2005-03-08 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldgui.c:
Changed the regular expression for URLs again, this time it should
work well.
2005-03-05 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.h, mainwindow.c, wndmain.glade, worldgui.c:
Added a menu item in the Help menu to open the HTML Manual.
* Makefile.am, kildclient.glade, mainwindow.c, wndmain.glade, wndmain.gladep:
Moved wndMain to a separate Glade file.
* worldgui.c:
Changed the URL regexp to allow URLs with anchors and non-standard
ports, and to recognized https and ftp links.
2005-03-04 Eduardo M Kalinowski <ekalin@bol.com.br>
* kcvte.c, kcvte.h, kildclient.glade, kildclient.h, prefs.c, worldgui.c:
Added support to open or copy to the clipboard URLs that appear in the
MUD window.
2005-02-17 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Updated message strings.
* kildclient.glade: Changed the version to 1.1.0.
* kildclient.h, perlscript.c:
It is now possible to specify the author of the plugin.
* aliases.c: Corrected bug that caused segfault in listplugin.
* Makefile.am, aliases.c, kildclient.h, macros.c, perlscript.c, plugins.c, timers.c, triggers.c, worlds.c:
Added support for plugins.
2005-02-13 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, kildclient.h, macros.c, perlscript.c, triggers.c, worlds.c:
Triggers, etc. can now have names for easier usage, and for the
creating of groups.
2005-02-01 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, net.c, perlscript.c, triggers.c, worlds.c:
Added the option for triggers to also gag the line from the log file,
and a couple of functions to write text to the log file.
2005-01-28 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Added the $world->commandecho() function to get or set the status
of the command echo option, and the $world->sendecho() and
$world->sendnoecho() to send with or without echo, respectively,
regardless of that option.
* perlscript.c:
Added a getwindowsize() function to return the current size of the
window.
* perlscript.c:
Corrected bug that caused the $world->prev function to fail sometimes.
2005-01-27 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, mainwindow.c:
Added menus (and shortcuts) to move between worlds to the menu.
* kildclient.h, mainwindow.c, perlscript.c:
The crashes that happened some times when a menu item is selected
should not happen anymore.
2005-01-10 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, prefs.c, worldselector.c:
The World Selector now opens with the last world that was opened
initially selected.
2005-01-09 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, main.c, mainwindow.c, multilinesend.c, perlscript.c, prefs.c, we_misc.c:
Changed the way the support files are found under Windows.
2005-01-07 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, main.c, net.c, prefs.c, we_advanced.c, worlds.c, worldselector.c:
Under Windows, KildClient now stores its Worlds and settings under the
user's Application Data directory.
2005-01-05 Eduardo M Kalinowski <ekalin@bol.com.br>
* main.c, perlscript.c, perlscript.h:
The Perl system is now initialized only once, and it doesn't crash
anymore under cygwin.
* mainwindow.c:
Added some things so that detection of a closed connection can be
detected under cygwin.
2005-01-04 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, multilinesend.c, prefs.c, we_misc.c:
Added G_MODULE_EXPORT to signal functions called by glade, so that
they work with glade_signal_autoconnect() under cygwin.
* perlscript.c: Changed something to avoid a segfault under cygwin.
* worldselector.c:
Added a workaround for a weird behaviour of glob() under cygwin.
2004-12-30 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kcvte.c, kcvte.h, mainwindow.c, net.c, parser.c, perlscript.c, worldgui.c:
Removed \r\n from messages, the newline is now added by a function
instead of being included directly in the message.
* worlds.c:
Corrected a bug that didn't save permanent hash variable names
correctly.
2004-12-27 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c: Corrected a message that used \n\r instead of \r\n.
2004-12-26 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade: Changed all version references to 1.0.0.
2004-12-24 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Corrected bug in the functions for adding triggers, aliases, macros
and timers. The last one was not working, but works now.
2004-12-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, mainwindow.c, prefs.c:
Corrected some wrong behaviours of some dialogs.
* kildclient.glade:
Changed a label that was wrong in the Preferences dialog.
* permanentvariables.c:
Corrected the bug that did not save non-ASCII characters in permanent
variables, for strings and arrays.
* net.c:
Corrected a bug that caused some invalid characters to be printed in
the log file.
2004-12-11 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c, worlds.c:
Corrected a bug that caused new text notifications not to be erased
when the world is closed.
2004-11-28 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c: Added echos to report success of several functions.
* kildclient.glade, mainwindow.c:
Moved the main window to Glade, and added accelerators for some menu
functions. Unfortunatelly, there seems to be a bug in libglade that
does not load accelerators for stock menu items.
* kildclient.glade, mainwindow.c, perlscript.c:
Added a $world->save() function to save the current world.
* mainwindow.c: Corrected some menus that were not working.
2004-11-27 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Removed newlines from the string before matching for triggers. It now
seems to work well.
2004-11-26 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, net.c:
Corrected the behaviour of triggers and incomplete lines: now a line
is only matched for triggers when it is complete.
* parser.c:
Corrected a nasty bug that caused some sent commands not to work.
2004-11-25 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, mainwindow.c, prefs.c:
The position of the tabs can now be configured.
* kildclient.glade, prefs.c:
Moved the Preferences dialog (well, almost) to Glade.
2004-11-24 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, aliases.c, hooks.c, kildclient.glade, kildclient.h, log.c, macros.c, main.c, mainwindow.c, multilinesend.c, net.c, parser.c, perlscript.c, perlscript.h, permanentvariables.c, prefs.c, timers.c, triggers.c, we_advanced.c, we_back.c, we_colors.c, we_fonts.c, we_general.c, we_misc.c, we_scripting.c, worldeditor.c, worldgui.c, worlds.c, worldselector.c:
Merged the changes from the multi_worlds_branch into the main trunk.
2004-11-22 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Renamed the prevw, nextw and closew functions to prev, next and close,
respectively.
2004-11-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c, perlscript.c, perlscript.h:
Changed the syntax of many Perl funcions. They are now methods of the
class World. Each interpreter has a $world global variable that
represents the current world.
2004-11-19 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Perl now correctly recognizes strings from triggers as UTF-8.
2004-11-18 Eduardo M Kalinowski <ekalin@bol.com.br>
* main.c, mainwindow.c, net.c, worlds.c, worldselector.c:
Corrected some bugs in connection. Hopefully all of them.
2004-11-17 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, perlscript.c, worldgui.c:
The status bar text is now individual per world.
2004-11-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c:
The Perl interpreter is now created at the right time and correctly
set during world creating so that commands in the script file are run
correctly.
2004-11-15 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldselector.c:
Corrected bugs when using the "Connect to another world" option after
disconnecting from a world.
* kildclient.glade, kildclient.h, mainwindow.c, net.c, perlscript.c:
Added a closew function to disconnect and close the current world, and
a menu to do the same thing.
2004-11-14 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, perlscript.c:
Added functions for moving between open worlds: nextw, prevw and gotow.
* permanentvariables.c:
Corrected bug that caused segfaults on /quit under certain
circunstances.
2004-11-12 Eduardo M Kalinowski <ekalin@bol.com.br>
* hooks.c, kildclient.h, net.c:
Corrected a bug that prevented a OnReceivedText hook to send text to
the world.
* hooks.c, kildclient.h, mainwindow.c, net.c, perlscript.c, timers.c:
Corrected the bug that sent commands to the wrong world with timers,
triggers and hooks.
* kildclient.h, main.c, mainwindow.c, worldselector.c:
Removed the reconnecting parameter from connect_to(). The new
connected_at_least_once parameter does the same job, much better.
* kildclient.h, mainwindow.c:
Corrected bug that cause segfaults on reconnections in certain
circunstances.
* mainwindow.c:
There was a problem when opening new worlds, the window needed to be
resized for the vte to appear correctly (regarding scrolling). This
has been fixed.
* kildclient.h, main.c, mainwindow.c, net.c, we_general.c, worlds.c, worldselector.c:
Added back notification of new text in the worlds.
2004-11-11 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Bug fix: editing a timer to change its interval now works correctly.
* main.c:
On quitting with worlds open (with calling /quit, for example) all
worlds are saved instead of only the active one.
* mainwindow.c:
Corrected a bug that caused timers to be duplicated when reconnecting
to a world.
* aliases.c, hooks.c, kildclient.h, log.c, macros.c, main.c, mainwindow.c, multilinesend.c, net.c, parser.c, perlscript.c, perlscript.h, permanentvariables.c, prefs.c, triggers.c, we_advanced.c, we_back.c, we_colors.c, we_fonts.c, we_general.c, we_misc.c, we_scripting.c, worldeditor.c, worldgui.c, worlds.c, worldselector.c:
Now each world has its own Perl interpreter.
2004-11-10 Eduardo M Kalinowski <ekalin@bol.com.br>
* we_back.c, we_colors.c, we_fonts.c, we_misc.c:
Corrected bug that caused segfaults when editing worlds from the World
Selector.
* kildclient.h, mainwindow.c, net.c, worlds.c, worldselector.c:
Worlds can now be closed properly.
Removed temporarily the notification of new text, since it was causing
problems and needs to be reworked anyway.
* net.c: Removed unused variable that was causing a warning.
* mainwindow.c, net.c:
Corrected the silliest bug ever: the timeout for printing incomplete
lines was set to 200us instead of 200ms. I've also made some other
changes to try to avoid the problem of incomplete lines being printed.
2004-11-08 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, net.c, triggers.c:
The full line that matched a trigger, including ANSI sequences, is now
saved in the variable $colorline for use in scripts.
* kildclient.glade, kildclient.h, main.c, mainwindow.c, worldgui.c, worldselector.c:
Added the hability to open several worlds, but many things still need
to be fixed.
2004-11-07 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldselector.c:
Corrected a bug that caused segfaults when pressing Quit from the
World Selector.
* kildclient.h, mainwindow.c, net.c, worldgui.c:
The name of the world is now shown in the notebook tab, and not in the
window title.
* Makefile.am, kildclient.h, main.c, mainwindow.c, net.c, parser.c, perlscript.c, we_back.c, we_colors.c, we_fonts.c, we_misc.c, worldgui.c, worldselector.c:
Created a structure WorldGUI containing the widgets that comprise a
world's interface: basically, the vte and the entry box. Changed where
necessary to use this new structure.
* worldgui.c: New file.
2004-11-06 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Perl is now told that the expected encoding for scripts is UTF-8.
* mainwindow.c:
Added a notebook that will contain each world's terminal and entry box.
2004-11-05 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldselector.c:
Removed references to currentWorld in the disconnected message box
code, and this can also be considered a bug fix and not only a
preparation for multiple worlds support.
* worlds.c:
Removed references to currentWorld in the command history saving code,
and this can be considered a bug fix and not only a preparation for
multiple worlds support.
* kildclient.h, mainwindow.c, timers.c:
Removed references to currentWorld in the timer system.
* kildclient.h, mainwindow.c, net.c:
Removed references to currentWorld in the auto-logon code.
* net.c: Removed references to currentWorld in the code for handling of
connection closing.
* macros.c: Removed a reference to currentWorld in the macro system.
* kildclient.h, log.c, main.c, net.c, perlscript.c:
Removed dependencies of currentWorld in the logging system.
* aliases.c, hooks.c, kildclient.h, macros.c, mainwindow.c, multilinesend.c, net.c, parser.c, perlscript.c, timers.c, triggers.c, worlds.c:
Changed the received text buffers to be per-world instead of global,
and this caused a lot of other changes.
2004-11-04 Eduardo M Kalinowski <ekalin@bol.com.br>
* triggers.c:
Rewrote the ANSI sequence stripped code as a finite state machine,
this should prevent problems happening from incomplete ANSI sequences.
* net.c:
Rewrote the telnet IAC sequence processing code as a finite state
machine, this should prevent problems happening from incomplete IAC
sequences.
2004-11-02 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c:
Removed memory leaks in functions for creating triggers, aliases, etc.
* we_misc.c:
Corrected a bug that cause Gtk-Warnings when configuring the
auto-completion of a world from the World Selector.
* mainwindow.c:
Made a little correction for the bug that happened when a connection
failed but in the next try it worked.
* Makefile.am, hooks.c, kildclient.h, mainwindow.c, net.c, perlscript.c, worlds.c:
Added support for hooks.
2004-11-01 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, kildclient.h, mainwindow.c, we_misc.c, worlds.c:
Auto-completion can be disabled, or it can be configure to start only
after a certain number of characters have been typed.
2004-10-30 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.h, main.c, mainwindow.c, perlscript.c, perlscript.h, permanentvariables.c, worlds.c, worldselector.c:
Variables can now be made permanent, that is, their values are saved
when the world is closed and loaded again when the world is opened.
2004-10-29 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, mainwindow.c, simocombobox.c, simocombobox.h, util_cursor.h:
A custom widget, SimoComboBox by Todd A. Fisher, is now used instead
of GtkComboBoxEntry for the command entry. This combo box will only
display a few entries below the entry box when poped down, and has
command completion.
2004-10-27 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, main.c, worlds.c, worldselector.c:
The history of entered commands is now saved on exit and loaded again
when the world is loaded.
* mainwindow.c: Removed a memory leak.
* kildclient.glade, kildclient.h, mainwindow.c, we_misc.c, worlds.c:
The history of recent commands is now per-world (even if only one
world can be open at a time), and the number of commands to be kept
can be configured.
2004-10-26 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, we_misc.c:
Moved the Miscellaneous panel of the world editor dialog to glade.
2004-10-25 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c:
Added a "clear" button to the left of the command entry box, to clear
the entire command entry box.
* mainwindow.c:
The command entry is not a Combo Box, and previous commands can be
recalled easily by popping it down.
2004-10-23 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c:
There is now checking for errors in the conversion of commands from
UTF-8 to the mud encoding. The program will not crash anymore if an
invalid character is entered.
2004-10-22 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.glade, multilinesend.c:
Added more features to the multi-line send: now you can send some
text, a file, and more text.
* perlscript.c:
The echo function now outputs to stdout if currentWorld is NULL (as is
the case when the script file is loaded), preventing segfaults if echo
is called there, or if there are warnings.
* kildclient.glade, multilinesend.c:
Converted the Multi-line Send dialog to Glade.
* kildclient.glade, mainwindow.c: Moved the menus to Glade.
* Makefile.am, kildclient.glade, kildclient.gladep, mainwindow.c:
Added an About box... using libglade!
2004-10-21 Eduardo M Kalinowski <ekalin@bol.com.br>
* worlds.c: Some optimizations in the XML parsing code.
* worldselector.c:
The error message for a world that cannot be loaded from a file is not
printed when generating the list of worlds.
* perlscript.c:
Corrected a little display error in the listtimer function.
* perlscript.c, worlds.c:
Made some corrections and changes to warnings used, the number of
translatable strings should now be smaller (and also the program
size.)
* mainwindow.c, net.c, perlscript.c:
Changed all occurrences of \n\r to the correct \r\n.
2004-10-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, multilinesend.c, net.c:
When using the multi-line send feature, a text can be added to the
start and/or end of each line.
* Makefile.am, kildclient.h, mainwindow.c, multilinesend.c, net.c:
Added a function to send multiple lines to the world.
2004-10-17 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, prefs.c, worlds.c:
Corrected a bug: now the .kildclient directory is created if necessary
before a world is saved.
* parser.c:
Corrected a bug: aliases that include %; now correctly split the
commands defined inside.
* parser.c:
Changed the parser to be smarter. Now when %; is seen inside a quote
string, it is not interpreted as a command separator. This allows
aliases, and the like to be defined and include a %; inside.
2004-10-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, kildclient.h, macros.c, mainwindow.c, perlscript.c, timers.c, triggers.c, worlds.c:
Removed a huge memory leak when changing worlds.
2004-10-15 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldeditor.c:
Changed from that ugly and poorly functional GtkFileChoose to a
GtkFileSelector, that looks better and works better.
* we_back.c:
Corrected a bug that caused the program to try to set the background
image even when there was no vte yet.
* Makefile.am, kildclient.h, mainwindow.c, we_back.c, we_scripting.c, worldeditor.c, worlds.c:
The background of the terminal can be configure to be solid,
transparent, or to show an image.
2004-10-14 Eduardo M Kalinowski <ekalin@bol.com.br>
* aliases.c, main.c, mainwindow.c, parser.c, perlscript.c, perlscript.h, timers.c, triggers.c:
Removed a conflict between _ used for gettext and _ used in Perl
headers (for prototypes...). This removed warnings from compilation,
and also made internationalization work again.
* perlscript.c:
Added a minimize Perl function to minimize the main window.
* kildclient.h, mainwindow.c, net.c, prefs.c, we_misc.c, worlds.c:
Some more settings (scrolling, command echo, command repetition) are
also now set on a per-mud basis.
2004-10-13 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.h, mainwindow.c, prefs.c, we_fonts.c, worldeditor.c, worlds.c:
The fonts can now be set on a per-world basis, and not globally anymore.
2004-10-12 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.h, mainwindow.c, prefs.c, we_colors.c, worldeditor.c, worlds.c, worldselector.c:
Colors can now be configured on a per-world basis, instead of
globally.
* Makefile.am, kildclient.h, we_advanced.c, we_general.c, we_misc.c, we_scripting.c, worldeditor.c:
Moved each category of the World Editor dialog to a separate file.
* worldeditor.c:
Changed the layout of the World Editor dialog: not it has a list box
on the left to select the categories, instead of a notebook with tabs.
2004-10-11 Eduardo M Kalinowski <ekalin@bol.com.br>
* worlds.c: Minor optimizations in the XML parser.
* Makefile.am, kildclient.h, macros.c, mainwindow.c, perlscript.c, worlds.c:
Added support for macros.
* log.c: Corrected little bug that cause segfaults.
2004-10-08 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, net.c, worldeditor.c, worlds.c:
Added an auto-login feature.
2004-10-07 Eduardo M Kalinowski <ekalin@bol.com.br>
* log.c:
Changed the logging function to convert from \r\n (or \n\r) to only
\n, and to add a newline to the end of all lines, even if they do not
have one.
* net.c: Corrected a bug in the splitting of received lines.
2004-10-05 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.h, log.c, main.c, mainwindow.c, net.c, perlscript.c, perlscript.h:
Added support for logging output.
2004-10-02 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c:
Changed End to CTRL-End to go to the bottom of the terminal, because
End was already too useful to move to the end of the edit box.
* kildclient.h, net.c, prefs.c:
Added an option to prevent sent commands from being echoed in the main
window.
* mainwindow.c:
The END key can now be used to scroll back to the end of the output.
2004-10-01 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c:
Messages are now printed to the terminal to show the status of the
connection.
* kildclient.h, mainwindow.c, perlscript.c:
Added a status bar to the main window, and the hability to set the
text displayed there via a Perl function.
* perlscript.c:
Reorganized the order of the functions, so as not to require
predeclaration of the XS functions.
* ansi.h:
Corrected a little bug that caused command echoes (and possibly other
messages) to appear in the wrong color.
2004-09-30 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c: Corrected a bug in the trigger matching.
* kildclient.h, net.c, worldeditor.c, worlds.c, worldselector.c:
Added an anti-flooding mechanism that prevents a given number of
commands from being executed in sequence.
2004-09-24 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c:
Page Up and Page Down keys can now be used to scroll the terminal window.
* perlscript.c:
Modified the way the matching function is done to use <> as delimiters
instead of /, to ease the inclusion of / in patterns.
* kildclient.h, net.c, perlscript.c, triggers.c, worlds.c:
Added a flag "keepexecuting" to triggers. When on, the trigger
matching does not prevent other triggers from being tried.
2004-09-23 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, aliases.c, kildclient.h, parser.c, perlscript.c, perlscript.h, worlds.c:
Added support for aliases.
* worlds.c: Corrected bugs in the saving of worlds.
* worldeditor.c:
Corrected an error in the labels in the world editor ("Name" and "Perl
file to load" were switched).
2004-09-22 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, perlscript.c, triggers.c, worlds.c:
Triggers can now be enabled or disabled.
* perlscript.c: Added a help function that displays help on commands.
* Makefile.am, kildclient.h, mainwindow.c, perlscript.c, timers.c, worlds.c:
Added support for timers.
2004-09-20 Eduardo M Kalinowski <ekalin@bol.com.br>
* perlscript.c: Removed memory leak in the deletion of a trigger.
2004-09-19 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c:
The selected portion of the command entry is saved and restored when
the windows is focused again.
* kildclient.h, mainwindow.c, net.c:
Added notification of new text in the world.
* worlds.c:
Corrected a bug that sometimes caused a segfault when presenting the
world selector dialog.
* main.c:
Corrected a bug that caused a segfault on exit (and prevented the
preferences from being saved).
* worlds.c:
Minor code readability otimization in the world saving function.
* worlds.c: Corrected bug that saved gags without actions incorrectly.
* kildclient.h, net.c, perlscript.c, triggers.c, worlds.c:
Triggers can now be marked to gag the line that triggered them.
2004-09-18 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c:
Corrected a bug that prevented the window size to be saved when the
program was exited by closing the main window.
* kildclient.h, net.c, perlscript.c:
Corrected a bug that caused segfaults when /dc was used to disconnect
and connect to another world.
* parser.c, perlscript.c:
The handling of errors and warnings in Perl is now much better.
* perlscript.c:
Added the possibility of editing and deleting triggers, and also a
command to list the currently defined triggers.
* kildclient.h, net.c, perlscript.c, perlscript.h, triggers.c, worlds.c:
Added support for triggers, with a trigger Perl command to add them.
2004-09-17 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.h, perlscript.c, triggers.c:
Added a stripansi function to Perl, to strip ANSI sequences of a string.
2004-09-16 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, main.c, mainwindow.c, perlscript.c, perlscript.h, worldeditor.c, worlds.c:
A user-specified Perl file can now be run when a world is loaded,
primarily to define functions.
* worldeditor.c: The world editor is now divided in tabs.
* worldeditor.c: Removed a possible memory leak in the code.
* Makefile.am, worldeditor.c, worlds.c:
Just some code organization in new functions and files.
2004-09-15 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldselector.c:
Corrected a small bug that tried to saved worlds that were created by
directly entering the host and port.
* kildclient.h, main.c, mainwindow.c, net.c, worldselector.c:
Corrected a bug that caused gtk_main_quit to be called before the main
loop was started.
* main.c:
Corrected a small bug that tried to saved worlds that were created by
directly entering the host and port.
* kildclient.h, net.c, worlds.c, worldselector.c:
The Character Set to be used in each world can be configured.
2004-09-13 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c: Errors in charset conversion are now reported.
* perlscript.c: Removed compiler warnings in some Perl subroutines.
* kildclient.h, mainwindow.c, prefs.c:
A new configurable option has been added, whether to use bold fonts or
just highlight the ansi "bold" text.
* kildclient.h, main.c, prefs.c:
The window size and position is now saved on exit and restored on
startup.
* worldselector.c:
Corrected a small bug that caused segfaults under certain circunstances.
* kildclient.h, worlds.c, worldselector.c:
Added proper reporting of errors in the XML file.
2004-09-12 Eduardo M Kalinowski <ekalin@bol.com.br>
* worldselector.c:
Corrected a bug that caused a segmentation fault when quitting under
certain circunstances.
* kildclient.h, worlds.c, worldselector.c:
Worlds are not stored in XML format.
* main.c, mainwindow.c, worldselector.c:
Worlds are not saved after you edit them anymore, but only when you
ask them to be saved, or when the program ends, or when another world
is loaded.
* worldselector.c:
Added the list of worlds to a Scrolled Window, for when there are many
of them.
2004-09-11 Eduardo M Kalinowski <ekalin@bol.com.br>
* worlds.c:
When generating the name of a file for the world, existing worlds are
not overwritten.
* mainwindow.c, worlds.c:
Added menu commands to edit and save the current world.
* kildclient.h, worlds.c, worldselector.c:
Worlds can now be added, edited or deleted from the World Selector
window.
* worldselector.c:
Added some error reporting that was missing from last commit.
* Makefile.am, kildclient.h, mainwindow.c, prefs.c, worlds.c, worldselector.c:
Added the hability to load save worlds from files. (But saving of
worlds is still to come.)
2004-09-10 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, prefs.c:
Some miscellaneous options have been added: scroll on output, lines to
save in scrollback, and keep or no the last entered command.
* kildclient.h, mainwindow.c, prefs.c:
The default bold color can now also be changed.
2004-09-09 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, net.c, prefs.c:
The colors can now be configured.
2004-09-08 Eduardo M Kalinowski <ekalin@bol.com.br>
* net.c:
Corrected terminal output functions so that \r\n is recognized as a
good line ending, and thus another \r is not sent anymore.
* kildclient.h, mainwindow.c, net.c:
KildClient now handles correctly Telnet IAC sequences sent by the
server, even though the only one it honours is WILL ECHO, making
passwords to be hidden.
2004-09-07 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, net.c, perlscript.c:
Modified the terminal feed function so that it outputs \n\r even if
only \n is received.
* parser.c:
Changes in parser: // allows commands starting with / to be sent to
the world, and %; separates commands in a line.
2004-09-06 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, perlscript.c:
A file is now read by Perl at startup, and functions are defined in
this file.
A echonl function, similar to echo, but adding automatically a newline
in the end, has been added, as the first function actually defined in
Perl.
* perlscript.c:
Added the Perl command "echo" to print something in the terminal
window, without sending it to the world.
* kildclient.h, mainwindow.c, prefs.c:
The command entry box font can now be changed (and independently from
the terminal font, because of its weird behaviour concerning font
sizes.)
2004-09-05 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, mainwindow.c, perlscript.c:
Added menu itens to disconnect from world and to quit the program.
* kildclient.h, mainwindow.c, net.c, perlscript.c:
Added dc and quit Perl commands to disconnect from world and quit
KildClient, respectively.
* mainwindow.c:
The last 50 commands entered are now saved and can be recalled with
the up and down arrows.
* net.c: Small optimization in function flush_buffer().
* mainwindow.c, prefs.c:
Corrected a few minor bugs in the handling of preferences.
* Makefile.am, kildclient.h, mainwindow.c, net.c, prefs.c:
The processing of received data is now line-oriented. Nothing great
happens now yet, but this will help in the future.
2004-09-03 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.h, main.c, mainwindow.c, prefs.c:
The font can now be configured, and this configuration is saved.
2004-09-01 Eduardo M Kalinowski <ekalin@bol.com.br>
* Makefile.am, kildclient.h, main.c, mainwindow.c, parser.c, perlscript.c, worldselector.c:
Removed gnome dependencies, now the application uses only GTK.
* perlscript.c: Added documentation for the function.
* Makefile.am, kildclient.h, main.c, mainwindow.c, parser.c, perlscript.c, perlscript.h:
Rudimentary support for Perl scripting has been added.
2004-08-31 Eduardo M Kalinowski <ekalin@bol.com.br>
* kildclient.h, main.c, mainwindow.c, worldselector.c:
When there is an error connecting, or when the connection is closed, a
dialog opens from where it is possible to reconnect, or to connect to
another host.
2004-08-28 Eduardo M Kalinowski <ekalin@bol.com.br>
* mainwindow.c:
Agora a mensagem de tentativa de conexão mostra o IP também.
* Makefile.am, ansi.h, mainwindow.c:
Messages are now printed to the terminal to show the status of the
connection.
* mainwindow.c:
Changed deprecated gdk io notify functions to the new glib IO Channels
feature.
* .cvsignore: Added .cvsignore files.
* Makefile.am, kildclient.h, main.c, mainwindow.c, worldselector.c:
Initial Import: barely works
* Makefile.am, kildclient.h, main.c, mainwindow.c, worldselector.c:
New file.
|