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
|
$Id: Changes1.3,v 1.5 2009/05/07 01:07:05 tothwolf Exp $
Eggdrop Changes (since version 1.3.0)
_____________________________________________________________________
1.3.28 (August 10, 1999):
- Telnet banner added to config file
Found by: Dude / Patch by: Fabian
- 64 bit *nix fix for dcc chat problems
Found by: jkw / Patch by: jkw
- usermode_r fix
Patch by: drummer
- DCC Log fix
Patch by: drummer
- telnet-banner was broken; added use-telnet-banner flag
Patch by: Fabian
- More proxy changes in net.c
Patch by: drummer
- Minor fix to +inactive and tcl_botonchan
Found by: slennox / Patch by: drummer
- Tcl unset fixes
Patch by: drummer
- A fix to the +s-p mode flood patch
Patch by: drummer
- Default for Linux is now to make debugmem when you type make, this will
help debug better.
Patch by: Segfault
- Changed debug msg to an url instead of an email addy.
Patch by: dw
- Global channel set stuff.
Patch by: drummer
- Expired function didn't test for use_exempts/invites.
Found by: Dude / Patch by: arthur2
- Fixed channels.c file printf when flood settings were 0.
Patch by: drummer
- Removed ischaninviteonly() and moved use-invites/exempts to the core.
Patch by: drummer
- -clearbans stops the bot from expiring bans/exempts/invites set by bots
who are still in the channel and have chanop to prevent repeating -b/+b
on channels with bots that are not sharing their banlist (same with
+e/-e and +I/-i). to disable this set force-expire 1
Patch by: Rufus
- core dump when expiring bans/exempts/invites which are set by someone
who is not in the bots userlist.
Found by: arthur2 / Patch by: Rufus
- Rewrote doc/BOTNET and doc/patch.howto
Patch by: Wiktor
- arg instead of args in tcl-commands.doc
Patch by: Rufus
- "last message repeated" flood fixed
Patch by: Kimmo Varis
- Removed the static Tcl check for now
Found by: various / Patch by: guppy
- More exempt/invite fixes/changes
Patch by: Jason Ede
- Using chattr to change chanflags w/o a '|' made the bot wipe botflags
from the chan.
Patch by: dw
- Duplicate ban fix
Patch by: mho
- Some proxy fixes, short->default int in mem.c
Patch by: drummer
- fclose() on file that was not able to be opened (chanfile)
Found by: Mixter / Patch by: Mixter
- crash-on-start from long PATCH() macro's
Patch by: poptix
- configure now looks in /lib for Tcl (heh!)
Patch by: poptix
- configure now detects and uses Tcl 8.2, fixed typo in configure,
'to/too'.
Patch by: poptix
- Minor share changes dealing with chan exempts/invites
Patch by: guppy
- Added the new chanset options to the help
Patch by: dw
- Fixes removing of bans/exempts/invites in a non sharing environment
Patch by: guppy
- Moved puthelp/serv/quick to the server module
Patch by: guppy
- Removed useless var in tell_verbose_(status/uptime)
Patch by: guppy
- Share channel bans/exempts/invites correctly upon linking.
Found by: John` / Patch by: guppy
- Share exempts/invites when sharebots first link
Found by: Jason Ede / Patch by: guppy
- Fixes problem with -cycle/-autovoice channel settings.
Found by: daimonic / Patch by: arthur2
- -userbans doesn't have to unban server bans (on rejoin).
Found by: Jason Ede / Patch by: arthur2, Rufus, Jason Ede
- help_subst wasn't using botname for irc help.
Found by: John` / Patch by: guppy
- Default Makefile that runs ./configure then make, changed 'make dist' so
that the default is as above instead of './configure ; make install'
Patch by: poptix
- Enforce flood protect against ignored hosts
Patch by: Eule
- Patch to fix kicking bug in joinflood
Patch by: Eule
- Adds use-exempts/use-invites. +I modes set when a user wants to join a
+i channel (by messaging the bot). +e modes set when a matching ban is
set, and expires after the ban has been removed.
Found by: \-\itman / Patch by: Jason Ede
- Lots of changes to userinfo1.0.tcl (too many to name).
Patch by: Dude
- './eggdrop -m' instead of 'eggdrop -m' in language files.
Patch by: arthur2
- chan->ircnet_status &= ~CHAN_ASKED_EXEMPTS/INVITED and not
chan->status &= ~CHAN_ASKED_EXEMPTS/INVITED (chan.c)
Found by: Jason Ede / Patch by: arthur2
- '.botinfo' buffer overflows (remote/local), cosmetic fixes.
Patch by: poptix
- '.botinfo' dupes
Found by: slennox / Patch by: poptix
- '.help chaninfo' showed you could use no-idle-kick as argument to
idle-kick, infact it's dont-idle-kick.
Patch by: dw
- Small config file changes
Found by: \-\itman / Patch by: dw
- Changed strcasecmp to rfccasecmp in nick handling code, small cpu
optimization
Patch by: poptix
- More nick regain stuff
Found by: various / Patch by: guppy
- Typo in '.-chan' command (channels.mod/cmdschan.c).
Patch by: Flame
- Added default chanset's for .+chan
Patch by: dw
- Host sharing with bots, other misc botnet commands.
Patch by: guppy
- '.say' fixes/improvements
Patch by: drummer
- Unresolved hosts got rejected by dcc-sanitycheck
Patch by: poptix
- 0x660 language file fix.
Found by: Dude / Patch by: poptix
- Minor language file fixes
Patch by: Dude
- Fix for the Tcl static check
Patch by: Mixter
- New channel settings for the +e/+I support.
Patch by: Jason Ede
- Removed unused 'recycle' stuff.
Patch by: slennox
- % and & added to BADNICKCHARS.
Patch by: arthur2
- Adds +e/+I mode support in userfile and partyline.
Patch by: Jason Ede
- A bug in the note system
Patch by: drummer
- configure checks if Tcl is statically linked or not
Patch by: Mixter
- If we .-chan and the chan is inactive don't send PART
Patch by: guppy
- Fixed tcl_duration
Patch by: drummer, Fabian
- Call HOOK_PRE_REHASH before we clear the userlist
Patch by: drummer
- Bug in proxy_connect()
Patch by: drummer
- More changes to channel_inactive
Patch by: drummer
- Don't use +bitch if we have no userlist
Found by: toot / Patch by: drummer
- Reworked how default flags work
Patch by: drummer
- You can now set nonperm sticky bans
Patch by: drummer
- tcl_setuser() bugs
Patch by: drummer
- action.fix.tcl now handles {} properly
Patch by: drummer
- cmd/msg_status reported origbotname not botnetnick when saying "I am
<bot>, running eggdrop <ver> blah"
Found by: simple / Patch by: guppy
- Typo by poptix in configure.in
Found by: John` / Patch by: arthur2
- Removed newbotname, we don't assume our nick anymore
Patch by: guppy
- Minor updates to README
Patch by: guppy
- Missing 'cvs login' in the README
Found by: Dude / Patch by: guppy
- Updates README: basic cvs usage, mailing list, how to obtain Eggdrop,
upgrading Eggdrop, getting help.
Found by: Lobo^Loco, John` / Patch by: John`
- Cosmetic changes to eggdrop.conf.dist, lots of little fixes :P
Found by: Hath, John` / Patch by: John`
- Updates for tcl-commands.doc, gives a fix for the changed MODE bind (the
fix is by guppy)
Found by: Lobo^Loco, John` / Patch by: John`
- Updated copyright info to include eggheads
Patch by: guppy
- The config tried to use $owner before it was set
Patch by: John`
- Added a +protectfriends channel setting, to re-op +f users.
Patch by: arthur2
- Improved nickregain code (again?)
Patch by: guppy
- Fixed nasty little bug in refresh_ban_kick() that made the bot only ban
a global ban on the first channel the banned nick joined if he/she
joined more then one channel in 60 seconds. Hi pba!
Patch by: Tothwolf, ^PRS4^
- Fixes the killdcc bug described on eggdev@
Patch by: drummer
- Added a telnet banner much like motd (customizable)
Patch by: Fabian
- autobotchk fixes (for SCO and SunOS)
Patch by: Ernst
- userinfo1.0 with Tcl 8.0 fix
Patch by: Ernst
- If started with -m and userfile exists, warn and continue instead of
exiting. Minor cosmetic lang fixes
Patch by: Al3X
- Added setting to allow +f users to override telnet flood protection
Patch by: dw
- Added queue utilities, queuesize, clearqueue, etc
Patch by: G`Quann
- Don't deop a user on netjoin if they are +a.
Patch by: drummer
- '.+ban', '.-ban', and '.info' fixes.
Patch by: drummer
- Fixes for ban/exempt/invite bogus bounce/kick stuff.
Patch by: Tothwolf
- Fixed multiple 'password required' msgs during linking.
Patch by: drummer
- irc.c fixes.
Patch by: drummer
- Fixed cmds.c, .loadmod can be used only by permowner now
Patch by: SKY, Michael
- flush_mode fix for I/e modes.
Patch by: Eule
- CHAN_BOGUSBAN and CHAN_BOGUSUSERNAME were inverted.
Patch by: arthur2
- Fixed problems with lang patch.
Found by: Michael / Patch by: Cybah
- Update to man pages - still had Robey's mail address.
Patch by: Michael
- Modified dcc.c for better language support.
Patch by: Michael
- Share fixes.
Patch by: arthur2
- '.help chaninfo' missing how to deactivate flood* settings.
Patch by: John`
- Updates tcl-commands.doc to behavior of [chattr handle channel].
Found by: Nidhogg / Patch by: John`
- Fix to '.-bot' and '.-user' not working properly
Patch by: guppy
- Doesn't reverse bans anymore when they only *remotely* match any of our
hostmasks.
Found by: slt / Patch by: arthur2
- '/msg bot notes <pass> read all' didn't work.
Found by: L0RE / Patch by: drummer
- Don't strip ASCII between 126 and 224 from strings before sending them
to the Tcl interpreter.
Found by: AmnesiAc / Patch by: drummer
- die, jump and reset msg cmds didn't check for an empty passwd.
Found by: SuperS / Patch by: drummer
- '.-chan' no longer tells sharebots to remove all bans for that channel.
Patch by: drummer
- '.-chrec' now works on non-existant channels.
Patch by: drummer
- Dont display info line when on channel -1 (chat off).
Patch by: drummer
- '.chinfo handle' now does as expected
Found by: Dude / Patch by: Cybah
- chan/global masters could remove chan/global owners' chanrec.
Patch by: drummer
- More minor source cleanups.
Patch by: Tothwolf
- Added date/time procs to compat.tcl
Patch by: Tothwolf
- Minor source cleanups.
Patch by: Tothwolf
- cmd_mns_user, only cares about the first parm now.
Found by: Dicctr0s / Patch by: guppy
- dcc_telnet_id, changed what it says for nicknames that are not a valid
format.
Patch by: guppy
- Turn stealth telnet off by default, and ident-timeout default is now 5
instead of 30 (poptix agreed)
Patch by: guppy
- notify-newusers now defaults to $owner in eggdrop.conf.dist
Patch by: John`
- Minor changes to eggdrop.conf.dist (logfiles)
Patch by: John`
- Updated README (frequent problems with Tcl after admins upgrade,
./configure looking for Tcl in the wrong places etc)
Found by: dw / Patch by: dw, John`
- Minor changes to Makefile.in to make it easier.
Found by: John` / Patch by: dw
- init-server +w not needed as 99% of the users don't use it, just causes
unnecessary traffic.
Found by: Stu / Patch by: John`
- Added some missing quiet_reject in server.mod.
Patch by: arthur2
- NOTICEs had to be sent through DP_HELP.
Patch by: arthur2
- Added glob/chan +g as in give auto-voice. this is working as +a but for
voice instead.
Patch by: dw
- Fixes for .chattr/.botattr/mkdir commands using CHANMETA. Those commands
now handle +channels properly.
Patch by: Cybah
- Fix for -/+inactive channel option.
Patch by: drummer
- Fixed bug in /msg <bot> key
Found by: Hath / Patch by: drummer
- /me (CTCP ACTION) floods are now treated as privmsg floods.
Patch by: drummer
- Added more/better support for different channel types (#&+!)
Found by: Wull / Patch by: arthur2
- nickjoinflood stuff.
Patch by: poptix
- Minor cleanup of action.fix.tcl and compat.tcl
Patch by: Tothwolf
- Put space between number and name in output of [duration]
Patch by: Tothwolf
- dumpfile and dccdumpfile now work for files outside text/
Patch by: Tothwolf
- Various updates to alltools.tcl
Patch by: Tothwolf
- src cleanups.
Patch by: Tothwolf
- chan->next being NULL on chan_autoop() in adduser crashes,
this was a logic error(coder error), i wonder if this is causing
problems elsewhere =)
Found by: slennox / Patch by: poptix
- Fixed a typo in share.mod/share.c (no mode dcc connections).
Patch by: Mixter
- 3 missing & (& instead of &&) in notes.mod/notes.c
Patch by: arthur2
- Missing '\n' in two dprintf's
Patch by: drummer
- Fixed .adduser with static hostmask problem.
Patch by: drummer
- New Tcl bind: evnt (hurray!!)
Patch by: guppy
- '.-host's on shared bots now work .. *shrug*
Patch by: guppy
- Ignore unknown options in the chanfile.
Patch by: drummer
- Notefiles should be mode 600.
Patch by: drummer
- Added different ways to use .kickban with !nick and @nick. (see .help
kickban for more info)
Patch by: drummer
- Use the chankey on JOIN if known.
Patch by: drummer
- chanset (+autovoice/+autoop/+bitch/+enforcebans) will now update channel
on-the-fly, you wont need to do a .reset #chan.
Patch by: drummer
- Fixed bug in fixfrom() (server.mod).
Patch by: drummer
- Fixed half removed notify-onjoin.
Patch by: drummer
- Added +inactive channel option. When set, the bot will leave the
channel.. when unset, the bot will join the channel.
Patch by: drummer
- More cleanups...
Patch by: Tothwolf
- Fixes for FreeBSD's way of installing Tcl
Patch by: Tothwolf
- Fixed bad behavior between + and & channels.
Patch by: arthur2
- Added tcl_isbotnick <nick>
Patch by: guppy
- dcc/msg_info didn't send NULL to remove chan info, also tcl_setchaninfo
now supports using "none" to remove info, and rewrote it to prevent it
crashing on non-existant channels.
Patch by: guppy
- '=== Fred: X channels, X users.' should use the botnetnick not
origbotname when starting up.
Patch by: guppy
- msg_ident follows the old style .. ie: if you are identd, and try it to
identd, it wont fail.
Patch by: guppy
- src cleaning and indenting. A 2 space per level indent, with a Kernighan
& Ritchie coding style.
- This is a fairly close match to Robey's original style and seems to work
best with the deeply nested code common in Eggdrop. It appears many
different developers have used their own style when working on Eggdrop
so this will should help make future code refactoring and maintenance
much easier.
Patch by: Tothwolf
- Adds #define BADNICKCHARS and #define EGG_NOWRITE get_language(0x703).
Patch by: Al3X
1.3.27 (May 10, 1999):
- DALnet doesn't follow the RFC, now need to remove RFC_COMPLIENT for the
bot to correctly run on these networks (see configure).
Patch by: poptix
- Removed obsolete SIGUSR1/SIGUSR2 signal handling since Tcl 8.1's threads
uses these signals.
Patch by: Tothwolf
- 2 possible, 1 confirmed crash in notes handling.
Patch by: poptix
- Added Tcl command encpass and put it in tcl-commands.doc
Patch by: drummer
- Fixed some strcmp's that should have been strcasecmp (botnet.c)
Patch by: drummer
- Fixed the stdarg.h/vararg.h problems with Tcl 8.1.
Patch by: Tothwolf, Cybah
- Updated .help adduser with the new static hostmask stuff from drummer.
Patch by: Cybah
- More RFC fixes, small Makefile.in change, typo in notes.c
Patch by: Tothwolf
- doc/nets.list file removed. more than 2/3 of those botnets didn't exist
anymore.
Patch by: arthur2
- '.su' .quit rejoined message was redundant.
Found by: Hath / Patch by: arthur2
- Fix for bot sending back an error on some bogus dcc's even though
quiet_reject was turned on.
Patch by: Mixter
- '.adduser !<nick>' will add nick using a static hostmask.
- bugfixes to .deluser.
Patch by: drummer
- More spelling mistakes in cmds1.help.
Patch by: Hath
- Spelling mistakes in notes.help.
Patch by: Hath
- private-user now works much more effectively
Patch by: slennox
- Fixed overflow problems in masktype() and maskname()
Patch by: Tothwolf
- Small cleanup of allow_dk_cmds in flagrec_ok()
Patch by: Tothwolf
- Use dcc-portrange to check telnet src port also. no longer allows
telnets from invalid ips (*.255,*.0)
Patch by: dw
- ctcp-mode 2 now uses flood-ctcp setting. there was a confusion between
flood_thr and flud_thr in the src.
Patch by: arthur2
- Adds wire module to eggdrop.conf.dist file.
Patch by: Hath
- Fixed 'read/write integer couplets' in tcl.c no more corrupted set var
x:y read from the conf file now should global-flood-..setting for .+chan
work, enjoy.
Patch by: dw, vertex
- Removed the obsolete dir
Patch by: Cybah
- 'make install' also installs src/mod/*.mod/*.lang language files.
Patch by: arthur2
- Renames help/chaninfo in help/chaninfo.help.
Patch by: arthur2
- channels.mod wasn't properly accounting for the memory it used.
Found by: deadgrrrl / Patch by: arthur2
- Adds support for IRIX64 shells.
Patch by: SuperS
- '.+chan' now sets the new channel's flood-settings equal to the
global-flood-settings in the bots config.
set flood-settings to 0:0 to *deactivate* them (it no longer uses
flood-ctcp and flood-msg as default).
Patch by: arthur2
- Removed extern declaration of unused vars in /src/*.c
Patch by: arthur2
- Minor lang fixes in all 3 lang files.
Patch by: guppy
- Sanity check in flood check settings.
Patch by: Tothwolf
- Small snprintf prob in misc.c
Found by: various / Patch by: poptix
- You should use my_memcpy, and not memcpy.
Patch by: Q
- Don't dereference functions.
Patch by: Q
- flush_mode() wrote in post[-1] if it was an empty string.
Patch by: Q
- Minor doc changes
Found by: Hath / Patch by: guppy
- Patch to avoid +s-p +p-s floods, and .status will now show "xx members"
or "inactive" or "pending"
Patch by: drummer
- New Tcl variable: connect-server, the bot will call this just before it
connects to a server.
Patch by: drummer
- Lagmeter support for IRCnet
Patch by: drummer
- Can now shutoff the annoying notes notify on join
Patch by: drummer
- getchanhost/nick2hand/hand2nick no longer require that you specify a
channel to look on
Patch by: drummer
- Weren't fully RFC compliant, caused some crashes in certain
circumstances, 107KB patch to fix everything, included some
optimizations also.
Found by: Tothwolf / Patch by: poptix
- Perm owners can su to owners without a password
Found by: poptix / Patch by: guppy
- cmd_chnick can't be used to change perm owners anymore
Found by: Michael / Patch by: guppy
- tcl_pushmode should allow -l without an arg
Found by: Mixter / Patch by: guppy
- Added a few channels.mod functions to the function list
Patch by: guppy
- Made the bot regain its altnick
Found by: dw / Patch by: guppy
- Bot now watches NICK and QUIT messages .. to see if it should grab its
original name.
Patch by: guppy
- stealth-telnets shouldn't be read-only, fixed.
Patch by: Cybah
- must-be-owner is now read only ...
Patch by: guppy
- Minor fixes to Makefile.in and src/Makefile
Patch by: Tothwolf
- blowfish "" fix, and added putdccraw Tcl command.
Patch by: drummer
- Cosmetic changes to net.c
Patch by: Al3X
- alltool's number_to_number had a small bug
Found by: Daemus / Patch by: guppy
- Typos in some of the doc files
Patch by: guppy
- english.lang, number 0x906 was screwy ..
Found by: Bass / Patch by: guppy
- Added stealth-telnets option to config, so the banner doesn't get
displayed when people telnet the bot.
Patch by: Cybah
- Added +wasoptest channel setting, makes as if all +o users have +w flag
on that particular channel.
Patch by: arthur2
- Fixed buffer-overflow bugs on botinfo, status, etc... when bot was on a
lot of channels.
Patch by: Creative1
- Fixed EOF that didn't store console changes when a user left
'incorrectly'
Found by: Plex / Patch by: Creative1
1.3.26 (March 30, 1999):
- Added set quick-logs, if enabled flush logs every minute instead of
every 5 and check log size to if enabled (read eggdrop.conf.dist)
Patch by: dw
- chanmode +l with no specified limit was buggy (stupid +l mode flood).
Found by: TheUnknown / Patch by: arthur2
- max-logsize wasn't working 0 didn't disable it and it tried to write to
the logfile after closing it and before moving it.. minimum max-logsize
removed.
Patch by: dw
- testip in alltools.tcl didn't return 0 in every case when checking an
invalid ip.
Found by: MC_8 / Patch by: dw
1.3.25 (Mar 29, 1999):
- Added max-logsize, allows you to set a maximum logfile size.
Found by: Lobo^Loco / Patch by: poptix
- Successful dcc/telnet logins are logged.
Patch by: slennox
- Added channel set example for +seen to eggdrop.conf.dist.
Found by: \-\itman / Patch by: slennox
- Adds core.german.language to /language. Use '.language core.german' to
load it.
Patch by: Michael, C_Olli
- Added traces for net-type, so some variables don't get munged.
Patch by: Daemus
- Fix for msg_status bug where the bot is in many channels.
Found by: Dude / Patch by: Cybah
- Rewrote gotinvite, it now only accepts 1 invite per 30 secs to a
channel, instead of per nick
Patch by: guppy
- Added something to the motd
Patch by: Michael
- Two typos fixed in irc.mod KICK comments ":I ". IGNORE_NAME and BAN_NAME
should be used where needed.
Patch by: Daemus
- Fix for msg_hello, nick length has to be HANDLEN and not 9.
Patch by: Daemus
- '.help chaninfo' missed 'cycle'
Found by: John`, ??? / Patch by: dw
- Added a call to Tcl_PkgProvide() in src/tcl.c to register eggdrop in the
package(n) list.
Patch by: Tothwolf
- Fixes crash if someone is stupid enough to killdcc their controlling
idx/socket when we're trying to tell them it's closed (ie txt is "").
Updated tcl-commands.doc.
Found by: drummer / Patch by: Cybah
- Small fixes to a couple of sig-handlers that were displaying incorrect
context info.
Patch by: Cybah
- Really for the dev-team... added contextnote() to aid bug-tracking. eg
contextnote((string) ? string : "null").
Patch by: Cybah
- Logs now say 'last message repeated n times' to help with the large
log-file problem.
Patch by: Cybah
- Small share helpfile update.
Patch by: Michael
- deop for join flood was buggy.
Found by: mho / Patch by: arthur2
- Better nick-flood protection. Tries to kick the actual nick, and not the
old one, as nick chasing is not efficient after a few seconds.
Patch by: Eule
- '+bot *!login@hostmask #channel comment' crashed the bot.
Found by: dw, Johnny / Patch by: dw, arthur2
- Fixed an old bug in tcl.c.
Found by: Q / Patch by: guppy
- Adds ctcp-mode 2: bot doesn't answer more than C CTCPs in S seconds. C/S
are defined by set global-flood-ctcp C:S.
Patch by: Eule, arthur2, dw
- Fixes firewall bug. Default port of Sock4/5 firewalls is 1080 not 178.
Patch by: drummer
- +-cycle didn't work well. Bot parts the channel if it has op but hasn't
got the chanlist.
Patch by: drummer
- Fixes a blowfish bug (.tcl encrypt/decrypt "" "exploit").
Patch by: drummer
- Fixes the famous dcc bug, which permitted +x users to crash a filesys
bot.
Found by: drummer, slennox, Daemus / Patch by: drummer
- Added tcl_duration and updated tcl-commands.doc.
Patch by: guppy
- /msg help lead to garbage in some cases.
Found by: Dude / Patch by: dw
- Add-ons to the chaninfo help file for +shared and need-*.
Patch by: Michael
- lemmingbot kick reason wasn't explicit enough.
Found by: slennox / Patch by: arthur2
- need-* settings can only be set by perm owners if must-be-owner is set
in the config.
Found by: Michael, vod, toot / Patch by: guppy, Daemus
- Fix for RFC1459 related problems. Improper use of
strcasecmp/strncasecmp.
Found by: Dagmar / Patch by: Dagmar, arthur2
- Fixed a .su bug, problem with NULL ptr.
Found by: Dude / Patch by: guppy
- Trailing spaces failed to match with .-unstick/.-ban.
Found by: Lobo^Loco / Patch by: Crotale
- Added msg_save.
Patch by: guppy
- Beldin forgot to add $server-online and [botlist] to tcl-commands.doc I
think, added them now.
Patch by: guppy
- Added tcl_islinked (no more lsearch'ng [bots]).
Patch by: guppy
- msg_rehash saves the userfile now.
Found by: toot / Patch by: guppy
- userinfo1.0.tcl had some probs with {}[].
Found by: John` / Patch by: guppy
- tcl_die exits properly now, (ie: saves userfile).
Patch by: guppy
- Added dcc-portrange 1024:65535.
Patch by: guppy, dw
- README should use ftp.scriptics.com not sunlabs.com
Patch by: guppy
- Added .backup since there is a [backup] cmd.
Found by: KuNgFo0 / Patch by: guppy
- Added .uptime to core.help (forgot in my patch).
Patch by: guppy
- dcc.c was using 'buf' instead of 'dcc[idx].host' in some places, so you
didn't get the incoming host.
Patch by: guppy
- dcc.c now ignores source ports lowers than 1024.
Found by: toot / Patch by: guppy
- Bot didn't compile on BSD/OS with old 2.7 gcc.
Found by: John` / Patch by: arthur2
- If strict-host off, quickban will replace first login letter by a *
(except if it's a 1 letter login). (strict-host on doesn't put this *).
Found by: toot / Patch by: arthur2
- Added [botisvoice <chan>].
Found by: KuNgFo0 / Patch by: guppy
- Fixes an annoying .su bug from 1.3.15.
Found by: guppy / Patch by: Segfault, guppy
- net-type 2 now has a kick-method of 1.
Found by: mho / Patch by: guppy
- must_be_owner now works into server module. It applies now to .dump
command.
Patch by: arthur2, dw
- Silence bug must be fixed.
Found by: Dude / Patch by: arthur2
- Bot kicks exempted banned users when coming back from a split.
Found by: herz / Patch by: arthur2
- Fixes the net-type problems.
Found by: toot / Patch by: arthur2
- Fixed a typo 'begining' -> 'beginning'.
Patch by: Bass
- Fixed +w flag addition
Patch by: CHaiNeSS
- Adds the Tcl var ctcp-mode to the ctcp module. Set it to "paranoid" to
make the bot answers only to CTCP PING & CTCP CHAT requested by +o flag
users. All others CTCP will be ignored.
Patch by: arthur2, Crotale
- Only asks for +e/+I modes when net-type is set to 1.
Found by: Dude / Patch by: Daemus
- Fixes the .deluser bug. isowner wasn't defined in global_table array
(modules.c).
Found by: toot / Patch by: Daemus
- Bot crashed receiving a +k server mode with no specified key.
Found by: John` / Patch by: CHaiNeSS
- Bot crashed receiving a +l server mode with no specified limit.
Found by: John` / Patch by: CHaiNeSS
1.3.24 (March 5, 1999):
# 1.3.24i -- First eggheads.org release
- Adds a ban-fun flag.
Patch by: arthur2
- Adds a ban-bogus flag.
Patch by: vod
- Fixes a problem in #define CLIENTINFO, in CTCP module.
Patch by: Tothwolf
- Most EFnet servers only allow 4 kicks per command. This may change to 1
for most servers when they upgrade to hybrid 6.0. net_type = 0 now sets
kick-method to 1.
Found by: Shayne / Patch by: arthur2
- Adds a Tcl variable: net-type. 0 = EFnet, 1 = IRCnet, 2 = Undernet, 3 =
DALnet, 4 = other networks.
Found by: Daemus / Patch by: arthur2, Daemus
- Adds core.french.language to /language. Use '.language core.french' to
load it.
Patch by: TiTi, arthur2
- Reorganization of the eggdrop.conf.dist SERVER and IRC module sections.
Patch by: arthur2
- In cmds1.help, %{+B} should be %{+t}, since +B is no longer the flag for
botnet masters.
Patch by: Dude
- Added two new Tcl commands, "stick" and "unstick"
Found by: slennox / Patch by: guppy
- .fwd user user doesn't work anymore, must supply a botname.
Found by: deadgrrrl / Patch by: guppy
- action.fix.tcl didn't like quotes in the text.
Found by: paralyse / Patch by: guppy
- If set ban-time 0, bot never removes bans.
Patch by: arthur2
- Updates some of the doc files (CONTENTS and so on).
Patch by: arthur2
- Adds resetexempts and resetinvites Tcl functions.
Patch by: arthur2
- Fixed the jupe nickname bug crashing the bot :)
Patch by: guppy
- Bug in bogus key checking, would only kick the bot.
Patch by: guppy
- dcc chat/send's must use a port between 1024 and 65535.
Patch by: guppy
- Fixes a bug that caused the bot to loose track of its own nickname.
Patch by: guppy
- +stopnethack won't massdeop regular ops after long splits (unless they
have +w user flag - see below).
Patch by: arthur2
- Adds support for +/- e and I modes.
Patch by: Daemus
- Bot won't try to add more than max-bans bans, max-exempts +e modes,
max-invites +I modes on a channel.
Patch by: arthur2
- Bot won't try to add more than max-modes +b/+e/+I modes on a channel
(global limit for a channel).
Patch by: arthur2
- Adds a bounce-modes flag to bounce +/- i p s m t n a q l k server modes.
Is also stricter with +b +e +I server mode bounces.
Patch by: arthur2
- Adds a bounce-exempts flag to bounce +e server modes.
Patch by: arthur2
- Adds a bounce-invites flag to bounce +I server modes.
Patch by: arthur2
- Adds a kick-fun flag to avoid "that was fun, let's do it again!"
kickflood.
Patch by: arthur2
- Adds an isexempted function.
Patch by: Crotale
- kick_all won't kick +e users anymore.
Patch by: Crotale
- got_ban won't deban +e users anymore.
Patch by: Crotale
- Bot was really confused if it joins channel while trying to regain its
nick.
Patch by: Niggurath
- |o should be able to voice, as they are allowed to op
Patch by: TheUnknown
- There was a missing |m check in protectops procedure
Patch by: TheUnknown
- Adds a new user flag: +w (wasop-needed flag) If a user is +w, then
+stopnethack procedure will do a wasop test (for "untrusted" spoofable
hostmasks). If a user isn't +w, then +stopnethack procedure won't do
this wasop test, but an isop test (for "safe" static hosts).
Found by: Lobo^Loco / Patch by: arthur2
- Fixes /msg <bot> voice <pass> [channel].
Patch by: guppy
- Adds .uptime.
Patch by: guppy
- Adds [isbansticky <ban> [channel]].
Patch by: guppy
- Makes /msg <bot> status/memory/reset require a password.
Patch by: guppy
- Allows /msg <bot> die <pass> [message] to have a kill message.
Patch by: guppy
- Doesn't allow +n people to remove permanent owners via .-user/.deluser.
Patch by: guppy
- Adds botonchan <chan>.
Patch by: guppy
- Adds putquick <text>.
Patch by: guppy
- Makes I'm on too many channels show the channel it can't join.
Patch by: guppy
- Fixes the +i/l/b/k console warnings for a channel, shows the channel
name.
Patch by: guppy
- Fixes '.die' from sending QUIT :<nick> to the partyline if the bot
didn't have a server.
Patch by: guppy
- '.+ban' will now show if you try to add bans to non-existant channels.
Patch by: guppy
- '.+ban' will now show if you don't have access to add the ban on the
chan.
Patch by: guppy
- chanset/chaninfo were missing '\n' (someone on the list found these).
Found by: ??? / Patch by: guppy
- botinfo now returns your bots uptime.
Patch by: guppy
- '.whom *' can be used if your chat is off (suggested by dw@undernet).
Patch by: guppy
- '.simul' cannot be used to simul other permanent owners now.
Patch by: guppy
- Adds a new config option, must-be-owner, if set, only permanent owners
will be able to use .tcl/.set.
Patch by: guppy
- Adds a 'set must-be-owner 0' option to eggdrop.conf.dist.
Patch by: guppy
- Fixes a typo in share.mod/share.c (line 592).
Found by: Bass / Patch by: guppy
- maskhost() now replaces '~' '+' and '-' (in username) by '?'. quickban()
doesn't replace the first letter of the username by a '*' anymore. This
was a problem when quickbanning nick!s@host for instance, resulting in
+b *!*@host. Now it results in +b *!?@host.
Patch by: Crotale
- Fixes a bug in proxy_connect(), in net.c. Bot crashed when establishing
a connection through a proxy with a numeric IP address.
Patch by: Beige
- Botnet away-msg now goes to the correct channel
Patch by: Niggurath
- Modifies Eggdrop to support +shared on dynamic channels.
Patch by: Tothwolf
- Prevents SEGFAULT when Eggdrop attempts to commit a long filename to the
bots .filedb. Aborts the file move from temp to incoming and filename
commit. NOTE, the file remains in temp where it can be retrieved.
Patch by: Whicked
- Adds the following Tcl commands: chanexempts, chaninvites, ischanexempt
and ischaninvite.
Found by: Daemus / Patch by: arthur2
- Fixes old typos in eggdrop.conf.dist. allow-desync and not allow_desync,
check-mode-r and not handle-mode_r.
Patch by: arthur2
- Adds some missing entries in help. But there is a lot more to do.
Patch by: arthur2
- Adds exempt-time and invite-time to the config file.
Patch by: arthur2
1.3.23 (January 2, 1999):
- Sanity checking now optionally performed on DCC connections to prevent
spoofing foolishness.
Found by: Nobody / Patch by: Dagmar
- BSDI 4.0 configure broken
Patch by: Beldin
- .unload wire didn't clean up the dcc bindings
Found by: EraseMe / Patch by: Beldin
- More HP-UX fixes
Patch by: Kirk
- Lang'd a string in .info
Patch by: smok
- msg info would add info for non-existant channels.
Found by: TheUnknown / Patch by: smok
- Simple Quoting of silly channel names in channel files implemented.
Patch by: vod, capster
- eggdrop.conf additions
Patch by: arthur2
- Add a call to Tcl_DoOneEvent() in src/main.c needed for socket(n) and
some other Tcl commands.
Patch by: Tothwolf
- chan.c was missing a '\n' in a dprintf.
Patch by: Tothwolf
- Added a 5th element returned from Tcl dcclist function giving additional
(e.g. script) information.
Found by: Tothwolf / Patch by: ButchBub
- chan.c was missing another '\n' concerning +k support
Patch by: guppy
- If the bot gets the nickname already in use message, and it's already
on-line - don't bother changing nicks
Patch by: guppy
- notes2.tcl fixes: idx mistakes for multiple connected users.
Found by: Chriphil / Patch by: MHT
- Added userlist (bubble) sorting when saving, ordered userlist by bots
+h/+a/+l/others, then users +n/+m/+o/others alphabetically. now '.match
*' is more readable !
Patch by: MHT
- Someone puked write_userfile with unfinished "quick" code. It's
commented out now.
Found by: Tothwolf / Patch by: ButchBub
- Implemented a config file option (sort-users) to determine whether the
user wants their userlist to be bubble sorted when they save it
Patch by: Tothwolf, Kirk
- Removed the quick parameter to the write_userfile function and made the
fekker just sort the list every save, that is if the user has specified
they want to do this in the config file. A simple bubble sort shouldn't
consume that much CPU time
Patch by: Tothwolf, Kirk
1.3.22 (October 24, 1998):
- Grab new version number from src/main.c
Found by: Butthead / Patch by: Beldin
- .echo settings were being set off on return from relay
Found by: Butthead / Patch by: Beldin
- chon calls for notes was still slightly broken
Found by: Butthead / Patch by: Beldin
- tcl_jump's QUIT message was dangerous
Patch by: Mixter
- '.deluser' was using u after it was deleted.
Found by: poptix / Patch by: Beldin
- flood-chan & flood-ctcp for a channel use global on 0:0 and are turned
off on 0:1
Found by: various / Patch by: Beldin
- HP-UX fixes
Patch by: Kirk
- Fixed problem where bot crashed when taking revenge
Found by: toot / Patch by: Kirk
- Made alarm timeouts for hostname/addy lookup actually work rather than
hang the bot. New Tcl var resolve-timeout allows setting this.
Patch by: Butthead
- More lang files
Patch by: Skorpion
- Quickbans really need a * in case of ~'s etc
Found by: Daklop / Patch by: Beldin
- It was possible to create arbritary directories anywhere on the shell
with the filesys
Found by: |SKY| / Patch by: Beldin
- Getting files linked to the current bot cause SEGV case
Found by: |SKY| / Patch by: Beldin
- botinfo response now includes bot uptime
Found by: Q / Patch by: Beldin
1.3.21 (September 30, 1998):
- Hmm, console needs check_tcl_chjn, it ain't exported.
Found by: toot / Patch by: Beldin
- Ban time limit added to +ban
Found by: arthur2 / Patch by: Q, Solal
- Crash on channel join with no-chanrec-info on
Found by: ScottDrake / Patch by: Beldin
- Better +m/+f checking & +dontkickops flag
Patch by: arthur2
- kick-bogus flag
Patch by: arthur2
- The notes SEGV was due to the away sock # change
Found by: Dagmar / Patch by: Beldin
- +stopnethack works decently now, any *valid* pre-split op is allowed
*ALL* other ops are de-opped.
Patch by: ButchBub, Beldin
- Update idle-time on a mode change
Patch by: ButchBub, Beldin
- chon bindings that used killdcc were sending an unwanted part message
Patch by: ButchBub, Beldin
- get <Dir>/<file> SEGV'n in file sys (legcay of the cmd_chdir fixes)
Found by: Brian T. / Patch by: Beldin
- '.unload filesys' + '.files' caused SEGV
Found by: Michael / Patch by: Beldin
- TRACE is being used for detect added use-ison variable to use ISON if
requried
Found by: poptix / Patch by: Beldin
- It was possible for global +o's to set global bans (should be +m only)
Found by: Mr_Jode / Patch by: Beldin
- valididx wasn't returning sane results
Found by: Tothwolf / Patch by: Beldin
- Don't overwrite scripts dir
Patch by: Tothwolf
- Calling the nick binding later in gotnick makes life easier
Found by: Tothwolf / Patch by: Beldin
- .resetbans SEGV on invalid console channel
Patch by: vod
- take_revenge needed to update a channel members user entry otherwise
many extra bad users could be created.
Found by: TheUnknown / Patch by: Beldin
1.3.20 (September 21, 1998):
- '.-host' was possible on other users by anyone (yet another case of some
idiot reporting the bug 6 hours after the release of a new version, when
it's been in for several version, VERY intelligent)
Found by: data / Patch by: Beldin
- Compiler warning in dcc.c
Patch by: Dagmar
- Console module was failing to notify locally with chjn bind
Found by: Benny / Patch by: Beldin
- Added no-chanrec-info for those lamers who can't get the no chanrec/no
info display concept
Patch by: Beldin
- Away binding was giving wrong idx
Found by: Benny / Patch by: Beldin
1.3.19 (August 28, 1998):
- Whoops, typo in cmd_chdir
Patch by: Q
- Me & my bloody maskhost typos
Patch by: Beldin
- Tweaking of sharebot host/chattr/-user handling
Found by: Q / Patch by: Beldin
- .deluser was deleting nick, not handle
Patch by: vod
- .status was missing online time
Found by: QuakeMstr / Patch by: vod
- Tcl8.1 fixes
Patch by: vod
- Seen module unload was causing SEGV on irc module reload
Found by: [secret] / Patch by: Raistlin
- server.c wasn't adding all the RAW binds
Patch by: SuperS
- private-global flags
Patch by: Adam Spiers
- bye messages on botnet now reported
Patch by: Beldin
1.3.18 (July 19, 1998):
- Added set private-globals to share module
Patch by: Adze
- Fix for silly programmers who forget details in mode handling
Patch by: smok
- +ban could be used to crash the bot in certain circumstances
Found by: Toon / Patch by: Kirk
- The +ignore command could lock the bot into a nasty loop
Patch by: Kirk
- '.console' could be used to get chan+m only flags if user had +m on
another chan.
Found by: Flattie / Patch by: Beldin
- adduser /msg addhost command, and unbound /msg indent by default
Patch by: ButchBub, Beldin
- Buffer overflow in cmd_setstick
Found by: Hunger / Patch by: Beldin
- Whoops, when you fix something (-ignore), you should really fix it.
Patch by: Beldin
- Buffer overflows in botnet version handling, +ignore, .note, .+ban,
.-ban(similar to .-ignore bug), HOSTNAME, .jump, & mkdir (to some
degree)
Found by: PaulBoehm / Patch by: Beldin
- ctcp_reply had an obscure SEGV case
Found by: fasticus / Patch by: Beldin
- allow-desync variable added.
Patch by: smok
- Better looking for Tcl libraries added to configure
Patch by: smok
1.3.17 (July 7, 1998):
- Potential error with tld's in new maskhost
Patch by: smok
- private_owner was not being handled in finish_share
Found by: smok / Patch by: Beldin
- notes2.tcl fixes
Patch by: MHT
- Refinement of maskhost to deal with that nasty 4 component hosts
Found by: Daklop / Patch by: Beldin
- Extremely small fixes to userinfo1.0.tcl
Patch by: Kirk
- args for mode bind tabe seperate mode change from victim
Found by: ButchBub / Patch by: Beldin
- gamespak wants me_op exported from irc.mod
Found by: ButchBub / Patch by: Beldin
- '.channel' differentiates global vs channel flags
Patch by: ButchBub
- Ban cleanup code was unbanning & rebanning existing bans
Patch by: Beldin
1.3.16 (June 15, 1998):
- +m's can .deluser +n's (actually the fix is much shorter, add an else I
forgot - Beldin :)
Found by: various / Patch by: Segfault
- Adds a KEY msg command to get the key for +k channels and a variable
that let's it auto invite if the same channel is +i
Patch by: GoodGuy
- Added ability for using '*' as the channel in INVITE msg command to
invite person to all +i channels that they have access to and the bot is
on
Patch by: GoodGuy
- Respect CFLAGS in configure
Patch by: smok
- Clear a few ptrs in net.c (much better patch ;)
Patch by: smok
- Finally got around to fixing -ignore <number>
Found by: MANY / Patch by: Beldin
- filesys.help typo
Patch by: wylie
- Only ban 1st ban on banlist of a joiner
Found by: plan9 / Patch by: Beldin
- Rewrote maskhost to make it a little saner
Found by: smok / Patch by: Beldin
1.3.15 (May 30, 1998):
- Global flags were being nuked for bots/unshared users under
private-global = 1
Found by: TheUnknown / Patch by: Beldin
- newuser flag adding was reversed
Patch by: Daklop
- Notes module showing change of notes on case change.
Found by: Daklop / Patch by: Beldin
- Slight error in flush_mode
Patch by: Beldin
- newuser wasn't being share-relayed correclty
Found by: Daklop / Patch by: Beldin
- Bots should not accept links for bots > HANDLEN, it's bogus
Patch by: Beldin
- getuser botfl returning no flags at all times
Found by: [Eazy|E] / Patch by: Beldin
- Some cosmetic fixes
Patch by: poptix
- Added telnet-flood to config file
Patch by: NC
- Add channel arg to .invite
Patch by: NC
- Shared no-perm/no-sticky bans were missing an arg
Patch by: NC
- botname is better than origbotname for whoto /msg to (Beldin: I moved
botname back to the core, notes & filesys shouldn't NEED server)
Patch by: NC
- Added requested default kickban message
Patch by: NC
- .channel command wasn't showing actual channel
Patch by: NC
- Improved tcl-commands 'notes', added 'erasenotes' and 'listnotes'.
provided script notes2.tcl as example.
Patch by: MHT
1.3.14 (May 3, 1998):
- net.c warning
Patch by: Beldin
- private_global wasn't handling userfile downloads right, or +bot
Patch by: Beldin
- Fix to sharing global info
Patch by: NC
- Cosmetic-bug in smart-notes: display "You have no message" twice.
Found by: islandic / Patch by: MHT
- Enforce channel modes the *efficient* way upon setting
Patch by: Beldin
- Bots were sending incorrect 'thisbot' messages to 1.3.x's
Found by: mrbond / Patch by: Beldin
- Ban fixes
Patch by: Ernst
- Flushing of overlapping enforced bans (to keep some EFnet servers happy)
Found by: Daklop / Patch by: Beldin
- if cx_ptr got overwritten by a buffer overflow & the bot crashed ->
egaged CPU munch mode & partition fill mode
Patch by: Beldin
1.3.13 (April 15, 1998):
- '.botattr' SEGV
Found by: Ernst / Patch by: Beldin
- /msg hello binds should be in a different place in config
Patch by: easton
- '.help whois' clarity fixes
Patch by: easton
- easton likes 4 characet indents in status
Patch by: easton
- Made assocs use zapf's the whole way (no broadcast), so isolate will
work for them too
Patch by: Beldin
- Allow 2 bots in same directory to received userfile shares
Patch by: NC
- Added a new bot flag 'g' for sharing of all channels
Patch by: NC
- botattr should get logged well
Patch by: NC
- chattr <user> <channel> with no changes won't ** poof ** as if the user
was given all its flags from nothing
Patch by: NC
- It is now possible to share with alternate hubs
Patch by: NC
- One could get botnet traffic and share traffic even though debug_output
was set to 0
Patch by: NC
- Botnet trace returns at result at each passing bot, indicating lag by
link.
Patch by: Beldin
- .deluser was letting non +n's delete +n's (extra !)
Found by: various / Patch by: Beldin
- GO should not be sent to self
Patch by: vod
- Incoming shared chanrec were not being handled correctly
Found by: NC / Patch by: Beldin
- Incoming chattr's where not being checked for owner changes
Found by: NC / Patch by: Beldin
- Telnet ignore facility
Patch by: NC
- Made couplet-variable support generic to support telnet ignore
Patch by: Beldin
- Added a +seen channel setting
Patch by: Daklop
- Probably solution to ident timeouts causing SEGV's
Found by: Daklop / Patch by: Beldin
- Implemented smart read and erase notes
Patch by: MHT
1.3.12 (March 20, 1998):
- Socks firewall fixes
Patch by: Mloe
- Display of invalid nick char was wrong
Found by: Absinthe / Patch by: easton
- Bots was checking nickname for bogus username
Found by: Giga / Patch by: Beldin
- Botflag +i added, isolates the party line across a botlink (i.e.
bota<->botb will not transfer partyline info between them, all else
(share/botlink/unlink/notes) still pass)
Patch by: Daklop, Beldin
- Relayed chinfo's were losing the channel
Found by: Tori / Patch by: Beldin
- Lets make botattr only work on un-direct-linked bots, fixing several
nasty cases
Found by: Daklop / Patch by: Beldin
- '.chinfo' fixes
Patch by: easton
- Bot was still accepting assocs for chans > GLOBAL_CHANS
Found by: wylie / Patch by: Beldin
- Away note respone missing nick
Found by: wylie / Patch by: Beldin
- More "SENTKICK" checks before kicking, to avoid sending the same kick
more than once (making the bot flood off)
Patch by: Ernst
- Support for mass-kicks for irc networks that allows it (see
"kick-method" in eggdrop.conf.dist file)
Patch by: Ernst
- On "Avalanche" floods, don't kick masters/friends
Patch by: Ernst
- Use text from language-file on "that was fun..." kick
Patch by: Ernst
- Calling of need-op right after being deopped
Patch by: Ernst
- Fixed make trying to install in "OME/eggdrop"
Patch by: Ernst
- SHELL variable added in Makefile.in
Patch by: Ernst
- Included "weedfix" patch fixes some bugs in weed script
Patch by: Ernst
1.3.11 (February 25, 1998):
- newsplit() doesn't need to set what's 0 to 0 (this is what was really
causeing the no-args botnet crash, only join actually didn't handle no
args correctly)
Found by: easton / Patch by: Beldin
- '.+chrec' was check existing chanrec vs setter not setee
Patch by: Beldin
- laston times were not accurately documented
Found by: Ernst / Patch by: Beldin
- Shouldn't be able to su to users without partyline access (unless an
owner ;)
Found by: wheely / Patch by: Beldin
- Remote boots were totally disabled on a setting of 1
Patch by: Absinthe
- chof binding called whilst relaying had an invalid idx
Found by: wheely / Patch by: Beldin
- getparty in bot_part should check vs -1 not 0
Patch by: vod
- setuser * HOSTS wasn't sharing
Found by: Ernst / Patch by: Beldin
- tcl_setchan was broadcast parts from channels > GLOBALCHANS
Found by: wheely / Patch by: Beldin
- Console flags for a user were'nt being unset on certain .su's
Found by: vod / Patch by: Beldin
- Shared channel-changes immediately after a shared newuser were being
ignored
Patch by: Beldin
1.3.10 (February 11, 1998):
- Userfile writing error neaten
Patch by: easton
- chanlist wasn't returning non-userlisted people on -ve mtchs
Found by: Ernst / Patch by: Beldin
- %{cols=} settings which didn't fill a line were lost, (Beldin: "I modded
this slightly so you can still have tags after %{end}")
Patch by: Kirk
- +/-host for +t's with chan +m wasn't allowing them to change non-bots
Found by: WauloK / Patch by: Beldin
- time binding args were not formatting properly
Found by: Ernst / Patch by: Beldin
- Added check to remove redundant channel entries from userfiles, (where
are they actually coming from???)
Found by: Xtoper / Patch by: Beldin
- .module was still being logged as modulestat
Patch by: easton
- Default install dir is better as $HOME/eggdrop than /usr/local
Found by: numerous / Patch by: Beldin
- Some makes have both EBADSLT & ENOTCONN
Patch by: B. Jamison
- Couple of fixes to voicing code
Patch by: Dagmar
- Receiving an unlink for a non-linked bot would crash the bot
Found by: fasticus / Patch by: Beldin
- Added checks for Tcl 8.1 in the configure file, removed 7.4 (does anyone
use it anymore)
Found by: Blacky / Patch by: Beldin
- Fixed the silly mistakes in manually applying the patch
Patch by: ??? (unknown HP-UX guy)
1.3.9 (January 25, 1998):
- xtra_tcl_set typo
Patch by: deadgrrrl
- Lets fix chanfile = "" properly
Found by: Q / Patch by: Beldin
- '.chaddr' allowed too-long addresses
Patch by: Beldin
- Buffer overflow in start_sending_users with long entires
Patch by: Beldin
- setuser laston global time setting
Found by: Thomas / Patch by: Beldin
- console.mod stored local channels still got broadcast join
Found by: Daklop / Patch by: Beldin
- Config file name made avaliable to scripts
Patch by: aaronwl
- Setting sticky bans using * as the first character of the comment has
been tarted up a bit
Found by: KingKurly / Patch by: Kirk
- Mapping of listening ports has been changed, to stop the problem with
Eggdrop grabbing more ports when rehashing when it couldn't get the
specified listening port
Patch by: Kirk
- Learn to delete from link lists kirk :P
Patch by: Beldin
- Revenge wasn't setting the channel deop flag correctly on users who
weren't in the userlist (do it properly)
Patch by: Kirk, Beldin
- Added .modules command for report module listings
Patch by: Beldin
- Made the chon binding require a return value (0 = cont, 1 = stop
handling)
Found by: tdmarti / Patch by: Beldin
- Also made chon handlers verify they are using DCC_CHAT's
Found by: tdmarti / Patch by: Beldin
- Part messages were still being passed on for unkown users
Found by: tdmarti / Patch by: Beldin
- HP-UX module support (does it even work?)
Patch by: ??? (unknown HP-UX guy)
1.3.8 (December 31, 1997):
- Kicks were not being logged all the time
Patch by: Beldin
- '.-host' on yourself still got checked for permissions
Patch by: Beldin
- SEGV on +ban from a sharebot
Found by: Daklop / Patch by: Beldin
- A bit more info on revenge taking helps sometimes
Found by: Daklop / Patch by: Beldin
- extern CR when switching notes
Found by: Q / Patch by: Kirk
- Sillyness in filedb.c
Found by: Toblerone / Patch by: Kirk
- Beldin console still not saving correctly (masktype changed)
Found by: Melvan / Patch by: Daklop
- Seen module getxtra was looking up null user
Found by: ??? / Patch by: Beldin
- xtra lines now have a 500 byte limit per key/data combo
Found by: ??? / Patch by: Beldin
- /msg go infinite loop
Patch by: Rufus
1.3.7 (Dec 1997):
- pub & pubm messages were being passed n!u@h not u@h
Found by: Toblerone / Patch by: Kirk
- +/-cycle added
Found by: Ernst / Patch by: Kirk
- lastons were back-the-front
Found by: Daklop / Patch by: Beldin
- buildstatic failure to execute bug
Patch by: Ernst
- Glad I didn't release 1.3.6 public (no sharing at all :/)
Found by: Daklop / Patch by: Beldin
- Channels should default to +cycle, and +/-cycle should only effect
cycling
Found by: TheGhost / Patch by: Beldin
- .su fix
Patch by: Kirk
1.3.6 (Dec 1997): [patch released for testing only]
- tcl_addbot was still using old bot address storage method
Found by: tdmarti / Patch by: Beldin
- botaddr_tcl_set wasn't handling empty bot address info well
Found by: tdmarti / Patch by: Beldin
- Sped up language idx lookup a little
Patch by: Beldin
- Failed '.su' wasn't changing back the .nick of dcc_
Found by: tdmarti / Patch by: Beldin
- Checks if bot is opped before sending some kicks/bans
Patch by: aXs
- General cleanup of tclusers.c while I was in there
Patch by: Beldin
- '.match +<unknown flag>' will tell you that now :P
Found by: ButchBub / Patch by: Beldin
- filedb's were not being updated correctly when files were dcc sent, this
was do to module version # mismatches, several other cases of this found
& fixed
Found by: deadgrrrl / Patch by: Beldin
- New getops-2.0
Patch by: DarkDruid
- tcl_setchan wasn't broadcasting a part for localbot chans
Found by: wheely / Patch by: Beldin
- dcc & pub binds were triggering always with udef flags
Found by: easton / Patch by: Beldin
- /msg whois AKA was giving wrong user
Found by: Q / Patch by: Beldin
- setuser botaddr & botfl could be used on users
Found by: tdmarti? / Patch by: Beldin
- Fixed halfway broken support for + channels on DALnet this breaks
several commands which will be fixed, and the bot also needs to know
that the channel may be modeless
Found by: Warmage / Patch by: Raistlin
- Irc module report chopped off some channels.
Found by: Daklop / Patch by: Beldin
- Sharing of channel info make sharebots go bewm
Found by: Daklop / Patch by: Beldin
- laston should be copied from current data during a userfile download
Patch by: Daklop, Beldin
- Support for private-global, private-user sharebot variable
Patch by: Daklop, Beldin
- Unshared userents were still being set/processed in the userfile
Found by: Daklop / Patch by: Beldin
1.3.5 (Dec 1, 1997):
- Remote boots were working
Found by: mrbond / Patch by: Beldin
- GLOBAL_CHANS was defined wrong in tandem.h
Found by: Melvan / Patch by: Beldin
- Default .fwd binding was wrong
Found by: C. Massam / Patch by: Beldin
- Finally the dissapearing channel bans are fixed
Patch by: dk
- Kicked ops were not being revenged
Found by: ButchBub / Patch by: Beldin
- Lets get make install right
Found by: ButchBub / Patch by: Beldin
- '.ignores' are check before even ident lookup occurs
Patch by: ButchBub
- getuser LASTON #channel was sick (wrong arg)
Found by: GSCEGO / Patch by: Beldin
- .bottree bizzarely broken
Patch by: Beldin
- An enforced mode of -l was being interpreted as -p
Patch by: Kirk
- Automation of adding a language file for modules
Patch by: Kirk
- wire.mod loads it's own .lang file
Patch by: Kirk
- filesys.mod has it's own .lang file (moved out of core)
Patch by: Kirk
- Added install entries for installing .lang files
Patch by: Kirk
- /msg whois response was incorrectly showing o/b/m
Found by: Prime / Patch by: Beldin
- All channels were being set static on startup
Patch by: Beldin
- 'private-owner's could have their other flags changed.
Found by: Daklop / Patch by: Beldin
- post-identd ignores check was broken
Patch by: ButchBub
- '.simul' was reporting incorrect user
Patch by: ButchBub
- Lets just merge in -DEBUG, it'll help debugging errors
Found by: ButchBub / Patch by: Beldin
- nkch binding was being called as link binding
Found by: BoGuS / Patch by: Beldin
- Remote motds now show relevant highlighting
Patch by: Beldin
- You gotta worry about someone who stops 1/2 through modifying a function
(enforced chanmodes)
Found by: Scuzzi / Patch by: Beldin
1.3.4 (November 24, 1997):
- make install messup
Patch by: Darkfox
- Revenge added extra *!
Patch by: aXs
- Messed up the protect modes
Found by: wheely / Patch by: Beldin
- Stuff to fix the borg [NeXT]
Patch by: dk
- Better cp handling
Patch by: dk
- '.match' <number> was skipping rather than limiting
Found by: Q / Patch by: Beldin
- '.+host' on a user not on both bots SEGV'd the bot without the user.
Found by: Daklop / Patch by: Beldin
- Unshared users getting duplicate chanrecs
Found by: Daklop / Patch by: Beldin
- getuser <h> laston fr0ke with new channel arg
Found by: ?DOH? ??? / Patch by: Beldin
- Netsplits were not being detected
Patch by: Beldin
- '.help' was getting confused with extra spaces
Found by: LSC / Patch by: Beldin
1.3.3 (November 17, 1997):
- cmd_chattr wasn't calling check_dcc_*attr *scmack*
Patch by: Beldin
- Buffer overflow in tell_who, cmd_banner
Patch by: Beldin
- Doc updates..makefile tweaks..
Found by: various / Patch by: various
- Problems with setting enforced keys/limits
Found by: Daklop / Patch by: Beldin
- Ignores expiring + use-silence == BEWM
Found by: jman / Patch by: Beldin
- I forgot to write hosts_tcl_get/set
Found by: wheely / Patch by: Beldin
- oldbotnet pass on off away messages was chat not chan
Found by: wheely / Patch by: Beldin
- Where did tcl_jump go?
Found by: TheGhost / Patch by: Beldin
- '-DBORGCUBE' added
Patch by: dk
- get/setuser LASTON now manipulates channel settings too
Found by: ??? / Patch by: Beldin
- listen script broken
Found by: Daniel / Patch by: Beldin
- console.mod messup...
Found by: MULTITUDE / Patch by: Beldin
- Unshared channel flags were being copied over
Found by: Daklop / Patch by: Beldin
- notify-users added to notes module, turns on/off hourly notes waiting
Found by: various / Patch by: Beldin
1.3.2 (November 12, 1997):
- compat.so removed from eggdrop.conf
Patch by: Kirk
- FreeBSD uses SA_RESETHAND
Found by: ButchBub / Patch by: Beldin
- Various help file tweakes wrt userinfo1.0.tcl
Patch by: Beldin
- .stick with long host buffer overflowed
Patch by: Beldin
- tcl_getuser/setuser were not silently ignore user *
Found by: TheGhost / Patch by: Beldin
- Whoops, didn't need +x to get into file area
Found by: Kirk / Patch by: Beldin
- Added klined.tcl
Patch by: Kirk
- Quite a few typos
Patch by: Kirk
- Some channel flags were not being updated on userfile download
Found by: Daklop / Patch by: Beldin
- share-greet = 0 bot's wont send chan info lines on uf send
Patch by: Beldin
- share-greet = 0 bot's will use old info lines on uf recv.
Patch by: Beldin
- Global udef flags not shared
Found by: Daklop / Patch by: Beldin
- '.chattr' <nick> no longer sets a chanrec for <nick> unless | is used
Found by: MANYIDJITS / Patch by: Beldin
- English fix
Found by: David / Patch by: Beldin
- Higher default server-cycle-wait will make for less irate IRCOps :)
Found by: plan9 / Patch by: Beldin
1.3.1 (November 10, 1997):
# 1.3.0+bel1 - The omigod how did I don't believe i forgot that patch
- Some machines don't have SA_ONESHOT, DOH :/
Found by: David / Patch by: Beldin
- eggdrop.conf.dist still mentioned putegg
Patch by: Beldin
- userinfo1.0.tcl + Tcl 8.0 didn't load correctly
Patch by: Beldin
- Filesys get <file> <nick> with nick > HANDLEN got truncated
Patch by: Beldin
- Fixed weed c option to handle extra info
Patch by: Ec|ipse
1.3.0 (November 9, 1997): Let's do it
- Added some more stuff msg status
Patch by: TheGhost
- Cosmetic changes to dcc status
Patch by: TheGhost
- The Kewl new default motd
Patch by: KingKurly, TheGhost
- Fixed tcl-commands.doc
Found by: |mmortal / Patch by: TheGhost
- Made configure fail if the system doesn't support ANSI headers.
Patch by: TheGhost
- Something small in the config file, can't remember what
Patch by: KingKurly
- Bunch of minute junk in docs, i decided to polish them up for the
eventual release of 1.3.0
Patch by: KingKurly
- Spelling errors in english.lang and blowfish
Patch by: KingKurly
- Fixes for the move of text/
Patch by: Beldin
- Added .voice .devoice
Patch by: TheGhost
- Help files to reflect the above change
Patch by: TheGhost
- console.so memory leak, console_pack wasn't freeing old mem
Patch by: Beldin
- Shouldn't erase core hooks during .restart
Patch by: Beldin
- tcl_rehash from within a proc was being bizzare, moved rehash handling
out to the main loop
Patch by: Beldin
- Bands of the form 6!*@* cause *major* headstress with share
Found by: BoGuS / Patch by: Beldin
- Bowed to pressure like the llama I am, chattr nick +o #channel now works
the old way
Patch by: Beldin
- Anybody could use console +th, +/- in .console was fr0ke
Found by: BoGuS / Patch by: Beldin
- tcl_newchanban was doing wrong comment, 'none' wasn't a valid newban
option
Found by: |mmortal / Patch by: Beldin
- Updated userinfo1.0 and moved email into it
Patch by: Beldin
- Move dcc chat handling where it should be
Patch by: Beldin
- SIGSEGV's & SIGBUS's now dump core in -DEBUG mode
Patch by: Beldin
- '.-host' on a user with no hosts SEGV'd
Patch by: Beldin
|