File: Changes1.0

package info (click to toggle)
eggdrop 1.6.20-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,020 kB
  • sloc: ansic: 56,566; sh: 4,560; tcl: 2,747; makefile: 1,506
file content (2513 lines) | stat: -rw-r--r-- 77,159 bytes parent folder | download | duplicates (2)
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
$Id: Changes1.0,v 1.5 2009/05/07 01:07:05 tothwolf Exp $

Eggdrop Changes (since version 0.9)

    _____________________________________________________________________


1.0t  (June 8, 1998):

  # Released by: KingKurly <kurly@mindless.com>

  - Added 'make install' to the 1.0 series. You can still use putegg if you
    insist, but make install is just too cool to pass up.

  - Fixed a few annoying little warnings at compile time. Doesn't change
    functionality at all. How exciting.

  - Fixed a spelling error or two in the config. Now this is PROOF that I'm
    bored.

  - If you already run a happy 1.0p fully patched, or a 1.0s, this is really
    an unneeded version. I only put it together in boredom. Note how the
    last two versions I put out were also products of the summer boredom.


1.0s (July 14, 1997):

  # Released by: KingKurly <kurly@mindless.com>

  - Directory/file structure more like 1.1.x.

  - More tcl scripts loaded by default.


1.0r (July 13, 1997):

  # Released by: KingKurly <kurly@mindless.com>
    [not public, unreleased due to unplugged security hole]

  - Fixed a small compilation time warning from main.c


1.0q (June 1997):

  # Released by: KingKurly <kurly@mindless.com>
    [not public, internal testing] (basically just 1.0p+dk+pl6)

  - Added info to README and botchk on how to setup a cron without receiving
    emails from cron.

  - Added check for a userfile in botchk. Move the ~new or ~bak file over
    if one doesn't exist.

  - Fixed flag bindings for help files.

  - Added console wallops to log wallops sent to bot. Also added user def'd
    log levels 6-8.

  - Updated nets.list for RussianNet and The-Net.

  - Added action.fix.tcl to the standard tcl scripts.

  - Added tcl command topic that returns the topic of the channel given to
    it. Also .topic without arguments returns the console channel's topic.

  - Fixed nulluser from being shared out.

  - Added define for the default irc port to connect to in eggdrop.h

  - Fixed revenge bug of "Banning so and so now..." not setting a ban.

  - Made +ban be able to set channel specific bans. Also -ban <hostmask>
    will remove matching channel bans.

  - Made it so only owners can change a shared bot's password.

  - New telnet users can't use the bot's name as a username.

  - Ported beldin's NEWLINKS code from 1.1

  - Made .nick be able to be used by any partyline users

  - Added feature that bot msgs users on channel and partyline that they
    have notes every hour. The time after the hour is set in the config file
    with set notify-users-at.

  - Added an extra * in front of the username in maskhost in case of users
    not running ident.

  - msg_ident returns if person tries to ident with bot's name. Could be
    used for detection.

  - msg_op requires a password to be set in order to op a user. Also,
    msg_op can take a channel as an arguement and only op the user in that
    channel instead of all the channels.

  - Fixed bug in tputs with logging an invalid socket.

  - Added setting timezone in config for scripting purposes to keep track of
    the bots timezone.

  - Added tcl command resetchan from julius+bel1.

  - Expanded tcl command dcclist to include bots, files receiving, files
    sending, and files send pending.

  - Fixed memory leak in userrec.c

  - Allowed channels with 8-bit characters in channels.

  - Undoes the fix in dk+pl4 for the broken file system.

  - Includes the corrected patch by poptix to change users going to the file
    system from parting to just being away. Fixes .whom bug.

  - Fix in altnick suggested by Wild

  - .whom bug fix for users going to a broken file system

  - Fix for notes coming in from 1.1 Eggies

  - Implementation of -user -host and chattr on shared bots for bot entries,
    but will not affect bots marked +s.

  - Added share-greet to config file. 0 means do not send out info
    change to shared bots, 1 do.

  - Fix for the telnet (dropping a relay) bug reported by DK.

  - Changes the structure of the "special" character handling code in the
    dcc_chat function in dcc.c to a for loop instead of a while loop.

  - Added the code for ESC characters from beldin4e.

  - Updated nets.list

  - Fix for new 1.1 partyline join/part stuff, 1.1 - 1.0 - 1.1 botnets now
    work properly.


1.0p (March 16, 1997):

  # Released by: Wade

  - Kickban reasons are now being included in the kick
    Patch by: ???

  - Kickban will now let owner's kickban anyone, and masters can kickban ops
    Patch by: ???

  - 437 numeric on DALnet/Undernet means you can't change your nickname
    because your nickname is banned, plus some buffer overflow fixes
    Patch by: cmwagner

  - 437 numeric (nickname/channel is juped) has been changed to reflect
    whether it is specfically the channel or the nickname, bot will not
    change nicknames if the channel is juped :)
    Found by: Ernst / Patch by: Robey

  - Botnet routing has been changed, no longer bothers sending out botnet
    commands to bots that don't exist
    Patch by: cmwagner

  - Added 'restart' command, this may cause some problems
    Patch by: cmwagner

  - Long nickname mask in whois command caused bot to crash
    Found by: Ernst / Patch by: cmwagner

  - Downlink can no longer unlink uplink and cause a nasty amount of noise
    on the botnet
    Found by: EraseMe / Patch by: cmwagner

  - Long filename in dcc send caused bot to crash
    Found by: Mike Hammarin / Patch by: cmwagner

  - Sharebots aborting xfers would cause the bot to kill off the wrong
    socket
    Patch by: cmwagner

  - Space before ctcp commands would be stripped off, could be used to
    detect eggdrop bots
    Patch by: cmwagner

  - When rehashing and the bot was using the alternate nickname it would
    result in the bot thinking the nickname was in use and changing it
    Found by: seth / Patch by: cmwagner

  - Party line wasn't being updated when attributes were being changed
    Found by: imoq / Patch by: cmwagner

  - Topic command was not letting users change the topic on a non +t channel
    when the bot was opless
    Found by: DeathHand / Patch by: cmwagner

  - Users were not being deopped when channel is set +revenge and they deop
    Found by: DeathHand / Patch by: cmwagner

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
      get # of downloads for a file
  - files '.mv' move directories
    Suggested by: Andrej
  - '.sort' to sort files
  - Remote sharing of directories (large project)
  - Channel-specific flags (large project, v1.1)
  - 'listen <port> <"bot-only"|"all"|"user-only"> [nick-mask]'
  - 'listen <port> script <procname>'
  - 'listen <port> off'

  BUG REPORTS:

  - dcc chat with firewalled bot doesn't seem to work (error 2)
    Reported by: Rajat Goel
  - Changing nicks every 60 seconds on the undernet (which eggdrop does when
    it can't get its nick) can be perceived as a flood; suggested fix is to
    use ISON to determine if the name is available
    Reported by: Troy Davis
  - killdcc <idx> "on a relay to another bot that was stuck (I had lost the
    connection to my ISP) and the bot went haywire ('Can't find user for
    relay!')"

  SUGGESTIONS:

  - Be able to leave a parting comment when doing '.quit'
    Suggested by: a person
  - Fix up help substitutions (%[ %] is pretty lame)
  - Quota for file system


1.0o (February 4, 1997):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Solaris sigaction thingy fixed
    Patch by: dunk

  - 'kick'/'kickban' won't kick other channel bots
    Suggested by: Mikael Hammarin

  - ctcp quoting removed (eggdrop was the only client that correctly did it
    according to the ctcp-1 spec -- the new ctcp-2 quoting will be
    introduced once the ctcp-2 draft is finalized in a month or so)
    Patch by: ButchBub

  - Server renaming was case sensitive and could sometimes cause a crash
    (fixed)

  - Small bug in DEBUG_TCL (fixed)
    Patch by: poptix

  - Other bots can't use msg 'ident' command

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
      get # of downloads for a file
  - files '.mv' move directories
    Suggested by: Andrej
  - '.sort' to sort files
  - Remote sharing of directories (large project)
  - Channel-specific flags (large project, v1.1)
  - 'listen <port> <"bot-only"|"all"|"user-only"> [nick-mask]'
  - 'listen <port> script <procname>'
  - 'listen <port> off'

  BUG REPORTS:

  - dcc chat with firewalled bot doesn't seem to work (error 2)
    Reported by: Rajat Goel
  - Changing nicks every 60 seconds on the undernet (which eggdrop does when
    it can't get its nick) can be perceived as a flood; suggested fix is to
    use ISON to determine if the name is available
    Reported by: Troy Davis
  - killdcc <idx> "on a relay to another bot that was stuck (I had lost the
    connection to my ISP) and the bot went haywire ('Can't find user for
    relay!')"

  SUGGESTIONS:

  - Be able to leave a parting comment when doing '.quit'
    Suggested by: a person
  - Fix up help substitutions (%[ %] is pretty lame)
  - Quota for file system


1.0n (Jauary 6, 1997):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Moved to GNU GPL licensing

  - ctcp extraction from privmsg improved
    Patch by: os2warp@invlogic.com

  - Nick flood was broken (fixed)
    Patch by: Mr. Wizard

  - mIRC ctcps and colors stripped from party-line chatter

  - ctcp behaves paranoidly by popular demand

  - Changing the nick of a directly-connected bot could befuddle the dcc
    tables (fixed)
    Found by: Beldin

  - Some servers apparently give broken pong replies (copes with it now)

  - Won't reverse -b modes if they weren't bot-protected bans

  - 'chnick' wouldn't let you change capitalization (fixed)
    Found by: Xerxes

  - '+bot' will not let spaces be part of the address any more
    Suggested by: vince@who.net

  - Turns control characters into '?' in a password

  - Was letting users change nicks to the bot's nick (fixed)
    Found by: Dan Anatol

  - 'init-server' is delayed until 001 numeric is received from the server
    Suggested by: Troy Davis

  - 'ispermban' Tcl command wasn't working (fixed)
    Found by: void

  - Wouldn't correctly finish the nick scroll when it couldn't get any nick
    (fixed)
    Found by: void

  - '.topic' was sometimes refusing to change the topic when the bot wasn't
    op'd, even if the channel was not +t (fixed)
    Found by: James Colton

  - +c common users were not able to use 'hello' msg command (code was all
    gibberish) (fixed)
    Found by: Aaron Zollman

  - GNU configure file updated to handle Tcl 8.0
    Patch by: Tom Rini

  - +secret/-secret channel settings weren't listed in sample config file
    (fixed)

  - Remote 'who' requests to unknown bots are no longer broadcast
    Patch by: cmwagner

  - Initial ban checking would try to de-ban a number instead of a detested
    ban (fixed)
    Found by: Jesse Schachter

  - console.tcl will filter out c/x/r/o/d/1-5 console modes for non-masters

  - Console modes weren't removed when a user's +m flag was removed and
    he/she was still online (fixed)
    Found by: EraseMe

  - compile-time option to allow lowercase ctcps

  - Nick flood protection streamlined and no longer kicks the same user
    multiple times
    Patch by: Mike McLagan

  - Better checking of recently-placed bans (to avoid constantly refreshing
    a group of bans that are under a minute old and probably pending in the
    queue)
    Patch by: Mike McLagan

  - Some changes to support Cygnus Windows/NT environment
    Patch by: darkshde, garbanzo

  - ctcp flood sent directly to the bot wasn't getting completely ignored
    (fixed)
    Found by: Dejan Oklobdzija

  - Tcl 'dccsimul' no longer gives the user a temporary +n ('dccsimul' will
    now only let the user do commands he/she would normally be able to use)

  - Motd display could barf on long %C output (fixed)
    Found by: Seth Mattinen

  - Nick jupe on Euronet will get treated like "nickname in use"

  - Updated the README file

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
      get # of downloads for a file
  - files '.mv' move directories
    Suggested by: Andrej
  - '.sort' to sort files
  - Remote sharing of directories (large project)
  - Channel-specific flags (large project, v1.1)
  - 'listen <port> <"bot-only"|"all"|"user-only"> [nick-mask]'
  - 'listen <port> script <procname>'
  - 'listen <port> off'

  BUG REPORTS:

  - dcc chat with firewalled bot doesn't seem to work (error 2)
    Reported by: Rajat Goel
  - Changing nicks every 60 seconds on the undernet (which eggdrop does when
    it can't get its nick) can be perceived as a flood; suggested fix is to
    use ISON to determine if the name is available
    Reported by: Troy Davis
  - killdcc <idx> "on a relay to another bot that was stuck (I had lost the
    connection to my ISP) and the bot went haywire ('Can't find user for
    relay!')"

  SUGGESTIONS:

  - Be able to leave a parting comment when doing '.quit'
    Suggested by: a person
  - Fix up help substitutions (%[ %] is pretty lame)
  - Quota for file system


1.0m (December 4, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - '.kick' was broken (that's what i get for meddling) (fixed)
    Found by: tuvix

  - Since undernet uses 484 ("restricted connection") to mean "you can't
    kick or deop the channel server", bots that attempted to do this would
    think they were i-lined (a concept that does not exist on undernet) and
    jump -- now uses umode +r to detect
    Found by: Emmanuel Marty

  - 'banner' could send blank message (fixed)
    Found by: EraseMe

  - 'adduser' existed for limbo bots (fixed)
    Found by: EraseMe

  - Access check removed from filedb (not all OS's understand it)

  - Bogus bans/channel keys weren't queueing correctly (could cause
    inadvertant flood) (fixed)
    Found by: coolio

  - 'die' Tcl command added

  - MSGM bindings checked even if a MSG binding matches
    Suggested by: bingony

  - Nick flood protection was horribly broken (fixed)
    Found by: Dejan Oklobdzija

  - Console masktype buffer could overflow (fixed)
    Found by: nitemoon

  - Won't deop on a ban unless the channel member was op'd (prevents
    sharebots from sending a slew of deops all at once, most of the time)

  - dcc transfers will display acked amount in the home stretch

  - ^C not counted as avalanche material any more

  - Euronet 437 (nick has been juped) now understood and (sort of) treated
    Suggested by: genady

  - Typo on ques3 (fixed)

  - Mode changes by non-ops will be reversed (apparently on some nets, a
    desync makes it appear that non-ops are doing mode changes)
    Suggested by: xerox@foonet.net

  - whom info wouldn't get updated on a Tcl 'setchan' (fixed)
    Patch by: Beldin

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
      get # of downloads for a file
  - files '.mv' move directories
    Suggested by: Andrej
  - '.sort' to sort files
  - Remote sharing of directories (large project)
  - Channel-specific flags (large project, v1.1)
  - 'listen <port> <"bot-only"|"all"|"user-only"> [nick-mask]'
  - 'listen <port> script <procname>'
  - 'listen <port> off'

  BUG REPORTS:

  - dcc chat with firewalled bot doesn't seem to work (error 2)
    Reported by: Rajat Goel
  - Changing nicks every 60 seconds on the undernet (which eggdrop does when
    it can't get its nick) can be perceived as a flood; suggested fix is to
    use ISON to determine if the name is available
    Reported by: Troy Davis
  - killdcc <idx> "on a relay to another bot that was stuck (I had lost the
    connection to my ISP) and the bot went haywire ('Can't find user for
    relay!')"

  SUGGESTIONS:

  - Be able to leave a parting comment when doing '.quit'
    Suggested by: a person
  - Fix up help substitutions (%[ %] is pretty lame)
  - Quota for file system


1.0l (November 11, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Typo in ques3 (fixed)
    Found by: Gord-

  - Limbo bot had compilation error (fixed)
    Found by: imoq

  - When using filedb-path, sometimes filenames would get spurious trailing
    dots added (fixed)
    Found by: Trond Refsnes

  - NCSA telnet was causing eggdrop to think two linefeeds happened instead
    of one (fixed, i think)
    Found by: pepsi@gear.torque.net

  - Mass deop detection was broken with respect to +o-o+o-o etc on nets that
    allow huge numbers of modes per line (fixed)
    Found by: Sean T.

  - ctcp flood to channel wasn't causing kick (fixed)
    Found by: Dejan Oklobdzija

  - configure was checking for 'awk' and it didn't need to (fixed)

  - 'whom' info wasn't updated on boots (fixed)
    Found by: imoq

  - 'whom' info wasn't updated on dcc floods (fixed)
    Found by: Beldin

  - Fixed some weirdness with read-only vars

  - Version shown in DEBUG output

  - No longer immediately enforces bans that are placed by a server

  - Channel ops/bans aren't reversed for other bots (try to prevent two bots
    from fighting)

  - Channel ops are no longer exempt from revenge (but friends still are)

  - Tcl 'getinfo' was stripping off the leading @ on an info line if it was
    locked (fixed)
    Found by: Gord-

  - dcc 'kick' command follows 'kickban'-style checking now
    Suggested by: Bert Bohla

  - 'die' will wait a little longer for the server to catch up
    Suggested by: Bruce Gingery

  - ctcp avalanche detection couldn't be turned off (fixed, now can be
    turned off by setting flood-ctcp to 0)
    Found by: edmiester

  - Remote boot was getting logged incorrectly (fixed)
    Found by: Gord-

  - Display of ban in 'match' is better looking now

  - Hostmask redundancy checking was being done on the ban and ignore list
    too (causing sometimes mysterious disappearance of bans or ignores)
    (fixed)

  - 'bans <mask>' wasn't checking the hostmask correctly (fixed)
    Found by: iceman

  - 'match <mask>' would only show the first ban that matched, not
    subsequeent ones

  - Matching ignores are now displayed in 'match'

  - 'ignores' can take an argument: a mask for matching only certain ignores
    Suggested by: Xerxes

  - Ban list would prematurely end if there were no global bans (wouldn't
    show channel-specific bans) (fixed)

  - Better handling of IPs (doesn't depend on size of long)

  - Ignored users still get flood checked
    Suggested by: Neale Pickett

  - Compile-time option to let ignored users still trigger many bindings
    Suggested by: Neale Pickett

  - Channel-specific bans wouldn't get expired if there were no global bans
    (fixed)
    Found by: Gaven Cohen

  - Warning about permbans given to ops/masters made more specific
    Suggested by: Nick_

  - Would take revenge on itself for deop'ing itself (fixed)
    Found by: cuentero

  - Streamlined putlog to try to save CPU and memory

  - ctcps from channels with '.' in the name weren't triggering bindings
    (fixed)
    Found by: Gaven Cohen

  - File descriptors could get lost in help system (fixed)

  - filedb checks ctime when updating too

  - Note bindings won't be triggered by notices from other bots
    Found by: EraseMe

  - Wasn't echoing successfully sent notes that got trapped by bindings
    (fixed)
    Found by: EraseMe

  - Tcl 'killchanban' was using wrong args for sending the deban (fixed)
    Found by: darkshde

  - Mysteriously vanishing half of a relay could cause infinite loop -- the
    recovery is cleaner now, though still choppy (this should not happen)

  - Nick flood protection wasn't passing the whole hostmask, so the bot
    might sometimes fail to recognize itself, and would punish itself for
    nick floods (fixed)
    Found by: Nicholas J. Dear

  - Random number generator wasn't seeded until after config file (and any
    scripts that load on startup) were loaded (fixed)
    Found by: Troy Davis

  - '+host'/'-host' accepted incomplete parameters (fixed)
    Found by: rawdon

  - refresh_ban_kick() was mangling the kick reason (fixed)
    Found by: Gaven Cohen

  - Better i-line detection

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
      get # of downloads for a file
  - files '.mv' move directories
    Suggested by: Andrej
  - '.sort' to sort files
  - Remote sharing of directories (large project)
  - Channel-specific flags (large project, v1.1)
  - 'listen <port> <"bot-only"|"all"|"user-only"> [nick-mask]'
  - 'listen <port> script <procname>'
  - 'listen <port> off'

  BUG REPORTS:

  - dcc chat with firewalled bot doesn't seem to work (error 2)
    Reported by: Rajat Goel
  - Changing nicks every 60 seconds on the undernet (which eggdrop does when
    it can't get its nick) can be perceived as a flood; suggested fix is to
    use ISON to determine if the name is available
    Reported by: Troy Davis
  - Some people say their bot thinks it's i-lined when it's not, but i can't
    duplicate it, and those people won't send me logs or info

  SUGGESTIONS:

  - Be able to leave a parting comment when doing '.quit'
    Suggested by: a person
  - Fix up help substitutions (%[ %] is pretty lame)
  - Quota for file system


1.0k (October 17, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Spelling fixes

  - Whom signoff notice was mangled when relaying off the bot (fixed)
    Found by: Gord-

  - If expired dynamic bans weren't removed quickly enough by the server,
    the bot would obsessively deban once a minute until the server reacted
    (fixed)
    Found by: Bruce S.

  - expire-time for bans and ignores was displayed weird (fixed)

  - When kicked from a channel, queue the join to avoid excess flood
    Found by: xerox@foonet.net

  - Changing nicks on the party line wouldn't update whom info on other bots
    (fixed)
    Found by: Michele

  - First word of ban comment was stripped off in the kick comment (fixed)
    Found by: Gaven Cohen

  - Idle time was always 15 mins for remote users in whom right after a
    connect (fixed)

  - +autoop will make the bot op a user after he/she idents or is .adduser'd
    (if they're +o)
    Suggested by: Jesse Schachter

  - New Tcl command 'whom'
    Suggested by: Gord-

  - Fake connections trapped by net module now (was causing failed connects
    to look like successful connects that got immediately dropped)

  - Debugging console mode

  - Better version handling (patches can identify themselves more easily, to
    the user and to scripts)

  - Wasn't adding hostmasks correctly for bots when they were on the channel
    (fixed)
    Found by: dorgan

  - Access to help files wasn't following chattr changes (fixed)
    Found by: Stephen Hunter

  - People with only +p can now ask for help on specific items

  - New Tcl commands 'dumpfile' and 'dccdumpfile'
    Suggested by: goo

  - 'whom' away info would get mixed up when people left the party line
    (fixed)
    Found by: dorgan

  - Keep track of time connected to a server
    Patch by: cmwagner

  - bind 'act' wasn't trapping local actions (fixed)
    Found by: genady

  - Long password entry to dcc would overflow blowfish ("ircle bug") (fixed)

  - Some machines would infinite loop and create huge filedb's if an entry
    in the file system was removed (fixed)

  - Filedb will be updated (checked against the actual directory contents)
    if it's been more than 12 hours since the last update, even if the
    directory modification time hasn't changed (some changes in the
    directory, like file-size changes, won't change the directory
    modification time)
    Suggested by: Andrej

  - Bots will pass idle-time hints on connect burst

  - Tcl 'newchanban' wasn't coping with permanent bans correctly (fixed)
    Found by: stephenc

  - Better idle-time display in 'whom' and 'who'

  - Made read-only variables (can only be changed during rehash): owner,
    userfile, version (version can't be changed ever)

  - When keeping all logs, no renaming is done (the log changes names
    automatically at midnight)
    Suggested by: genady

  - When restructuring botnet to get to a +sh bot, if the direct uplink is
    not +sh, this bot will disconnect from the uplink instead of asking the
    remote +sh to unlink
    Suggested by: Gord-, genady

  - Sharebots will share hostmasks & addresses for bots (and ONLY that info)

  - tbuf status is shown in 'status'

  - weed will expire old bans and ignores if you want it to

  - 'setlaston' will take an optional timestamp argument
    Suggested by: Gord-

  - Added 'flush' command to flush resync buffers

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
      get # of downloads for a file
  - files '.mv' move directories
    Suggested by: Andrej
  - '.sort' to sort files
  - Remote sharing of directories (large project)
  - Channel-specific flags (large project, v1.1)
  - 'listen <port> <"bot-only"|"all"|"user-only"> [nick-mask]'
  - 'listen <port> script <procname>'
  - 'listen <port> off'

  BUG REPORTS:

  - dcc chat with firewalled bot doesn't seem to work (error 2)
    Reported by: Rajat Goel
  - Changing nicks every 60 seconds on the undernet (which eggdrop does when
    it can't get its nick) can be perceived as a flood; suggested fix is to
    use ISON to determine if the name is available
    Reported by: Troy Davis
  - Some people say their bot thinks it's i-lined when it's not, but i can't
    duplicate it, and those people won't send me logs or info

  SUGGESTIONS:

  - Be able to leave a parting comment when doing '.quit'
    Suggested by: a person
  - Fix up help substitutions (%[ %] is pretty lame)
  - Quota for file system


1.0j (October 8, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Bug in limbo bots (wouldn't compile) (fixed)

  - ctcp clientinfo now returns error messages like epic

  - 'whoz' shows the idle time in minutes now
    Suggested by: LSC

  - Blank line (just return) was being interpreted in dcc chat as the user
    saying something (a blank line) (fixed)
    Found by: LSC

  - ctcp clientinfo for 'action' was incorrect (fixed)
    Patch by: peace

  - Possible assoc overflow (fixed)
    Patch by: cmwagner

  - New Tcl commands: 'getdccaway', 'setdccaway'

  - Note sent to a local user from the bot was displayed incorrectly (fixed)

  - Tcl 'chhandle' would let you create null handles (fixed)
    Found by: Stephen P. Clouse

  - Ban code would attempt to kick even after avoiding a desync re-ban
    (fixed)
    Patch by: Hue Truong

  - Changed i-line detection algorithm slightly, although it probably makes
    no difference
    Suggested by: Hue Truong

  - Blowfish would run out of boxes because it wasn't checking timestamps
    correctly (fixed)
    Patch by: cmwagner

  - New 'note' binding to have the bot do special actions when a note is
    received for a particular (possibly non-existant) user

  - Don't set console default to '*' for dcc users on a limbo bot when there
    are channels defined
    Found by: ledpighp

  - '.channel' display format looks better now
    Suggested by: ledpighp

  - Channels can have +secret/-secret now to keep them from being advertised
    on the botnet
    Patch by: cmwagner

  - whom info wasn't updated to the botnet after a 'killdcc' (fixed)
    Found by: Xerxes

  - Put strong connections back cos some people claimed it made a difference

  - whois accepted null argument (fixed)
    Patch by: tartarus

  - Debug output writing streamlined
    Patch by: tartarus

  - Banned users were only getting kicked on join if +enforcebans was set
    (fixed)
    Found by: Bert Bohla

  - Failed userfile transfers would sometimes cause a resync buffer to start
    up (fixed)
    Found by: danny

  - Checking for +v after -o wasn't queued (fixed)
    Found by: xerox@foonet.net

  - Tcl 'sendnote' has more extensive return codes

  - Added 'connect' Tcl command to create outgoing idx connections

  - New binding 'act' to catch party-line actions

  - msg 'go' command gives a specific channel now
    Suggested by: cmwagner

  - Fixed sunos/solaris detection in configure
    Found by: Joe Morris

  - Think i finally fixed the problem with IPs getting sent out in reverse
    byte order over IRC

  - Matching bans show up when doing '.match'
    Suggested by: Nicholas J. Dear

  - When masking user@hosts, quoting ? or * in username could overflow
    buffer (fixed)
    Patch by: Gilles d'Andrea, cmwagner

  - Made lots of dangerous and slightly incompatable changes to the way bans
    are stored and created

  - New team of Tcl commands to add/remove bans (more flexible)

  - List returned by Tcl 'banlist' contains extra element: creator of the
    ban

  - Similar dangerous and incompatable changes to the ignore list (a comment
    and timestamp are now stored)

  - New Tcl 'ignorelist' similar to 'banlist'

  - Sharelink was overflowing buffer sometimes (fixed)
    Found by: cmwagner

  - +sa bots were getting remotely unlinked (fixed)
    Found by: genady

  - Spelling error in "incompatible" (fixed)
    Found by: dvlsadvct

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files
  - Remote sharing of directories (large project)
  - Channel-specific flags (large project, v1.1)

  BUG REPORTS:

  - +a bots are not getting linked if +h bots are down
    Reported by: genady
  - dcc chat with firewalled bot doesn't seem to work (error 2)
    Reported by: Rajat Goel
  - Changing nicks every 60 seconds on the undernet (which eggdrop does when
    it can't get its nick) can be perceived as a flood; suggested fix is to
    use ISON to determine if the name is available
    Reported by: Troy Davis
  - Some people say their bot thinks it's i-lined when it's not, but i can't
    duplicate it, and those people won't send me logs or info
  - Occasional explosions of .filedb for no reason

  SUGGESTIONS:

  - Be able to leave a parting comment when doing '.quit'
    Suggested by: a person
  - Fix up help substitutions (%[ %] is pretty lame)
  - Fix weed for bans & ignores


1.0i (September 10, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - New Tcl commands 'encrypt' and 'decrypt' to interface blowfish

  - Alarms weren't being trapped (fixed)

  - +f (friends) don't get flood triggered now

  - Server notices are logged with server (+s) stuff now, not msgs

  - '+ignore' could overflow (fixed)
    Patch by: cmwagner

  - Keeps 3 "boxes" buffers for blowfish to prevent Tcl encryption from
    running up the CPU time (prevents excessive re-computation of keys that
    were recently used)

  - Support for irc 2.9 mode +q (quiet; only servers can speak; useless)

  - Tries to use 'clock' (ANSI C) if 'getrusage' isn't there
    Suggested by: ayman

  - Slightly better algorithm to stack outgoing mode changes
    Suggested by: Mr. Wizard

  - Changing telnet port on the fly might lose a socket (fixed)

  - Fake 'whom' requests weren't getting caught (fixed)
    Found by: slix

  - Channel-specific bans tried to be written to a transmit userfile after
    the file was closed (caused all userfile transmits to go weird when
    channel-specific bans existed) (fixed)
    Found by: ledpighp

  - chmod 600 done right after fopen when writing user files to prevent
    teeny little window when it was unprotected
    Suggested by: ledpighp

  - If channel has no ops, and there are some humans there, 'need-op' will
    be run just in case it has a magical oper command or something
    Suggested by: Bruce S.

  - Directories are given more space for filename length in the 'ls' listing
    since they don't need the other info displayed
    Suggested by: stomper

  - Made 'configure' look for new-style Tcl library names (ie libtcl75.a)
    Suggested by: Kendrick Vegas

  - New command 'getaddr' to get a bot's address; 'getinfo' on bots will
    always return a blank string now (this should keep scripts from getting
    confused)

  - Added Tcl commands 'addignore', 'addpermignore', 'delignore', 'isignore'
    Patch by: Hue Truong

  - Added 'flud' binding to catch and react to floods as the bot detects
    them, replacing the bot's normal punishments
    Patch by: Hue Truong

  - Help files typos and errors fixed
    Found by: Bruce S.

  - FreeBSD uses non-standard names for the Tcl library -- added to
    configure script
    Found by: tris

  - configure script will detect Tcl 7.6 betas now
    Patch by: tartarus

  - Will try to detect and compensate for broken Windows "CR-only" input
    strings

  - 'weed' was sometimes losing part of the xtra field (fixed)
    Patch by: Bruce S.

  - Tcl 'getdccidle' added
    Patch by: cmwagner

  - Virtual hosting fixed (we hope)
    Patch by: tris

  - Idle times are actually updated for dcc chat/files/script now

  - 'chemail' didn't complain about nonexistent users (fixed)
    Found by: Chucky Burnett

  - Tcl 'rand' would accept and explode on argument of 0 (fixed)
    Found by: Chucky Burnett

  - Bot could get confused about its current nickname during rehash (fixed)

  - recheck-channel would skip bot's nickname, but not if it wasn't using
    its desired nick (fixed)
    Found by: Chucky Burnett

  - Console was getting set to gibberish channel on limbo bots (fixed)
    Patch by: cmwagner

  - Tries to cope with ircd 2.9's funky mode-on-join netjoin notices

  - '-m' option works for limbo bots now (i think)

  - Away messages from the party line are shared across bots now (for whoz)

  - User is notified if they receive a note while away

  - getmyip() returned to normal behavior (see note in net.c)

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files
  - Remote sharing of directories
  - Permanent yet channel-specific bans (right now it's either global &
    permanent, or channel-specific & temporary)

  BUG REPORTS:

  - +a bots are not getting linked if +h bots are down
    Reported by: genady
  - dcc chat with firewalled bot doesn't seem to work (error 2)
    Reported by: Rajat Goel
  - Changing nicks every 60 seconds on the undernet (which eggdrop does when
    it can't get its nick) can be perceived as a flood; suggested fix is to
    use ISON to determine if the name is available
    Reported by: Troy Davis
  - Some people say their bot thinks it's i-lined when it's not, but i can't
    duplicate it, and those people won't send me logs or info

  SUGGESTIONS:

  - Be able to leave a parting comment when doing '.quit'
    Suggested by: a person
  - Fix up help substitutions (%[ %] is pretty lame)
  - Be able to grab a dcc user's idle time with something like 'dccidle'
    (rumour is there's a patch that does this already)
  - Be able to grab a dcc user's away status


1.0h (August 7, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Spelling mistake
    Found by: blackjac

  - Dropped relay would cause bad join data to be sent across the botnet
    (fixed)

  - Away information is shared among bots now

  - Idle-time calculated locally for remote botnet users

  - Doesn't stick user's nickname in '.die' message if signoff message is
    given

  - ctcp procs can return 0 to let the bot continue processing that keyword
    Suggested by: darkshde

  - Took out Tcl event-loop support ('after', 'socket', etc) since nobody
    used it and it didn't even compile with some 7.5's

  - Checking for stoned servers would sometimes ping servers with their
    wrong name (fixed)
    Found by: tris

  - Various changes to make limbo bots less irc-bound
    Suggestions by: slix

  - Missing linefeed in transmitted userfiles
    Patch by: cmwagner

  - Password checking might explode on null password (fixed)
    Found by: cmwagner

  - 'ls dir' would just list the directory entry, not the actual contents
    (fixed)
    Found by: blackjac

  - Compile flag SHAREBOT_BOOTS was actually checking for +d, not +s bots
    (fixed)
    Found by: darkshde

  - Cleaned up some of the IP conversion code in net.c (at Fred1's prodding)

  - Majorly overhauled the Tcl command stubs and spread them out over 4
    files

  - Tcl 'matchban' command would crash when given a channel (fixed)
    Found by: Gumbie

  - Added 'reserved-port' setting for using a certain port for dcc file
    transfers
    Suggested by: Jordy

  - Flood settings can now specify the time-lapse (# of seconds) which still
    defaults to 60 (probably too high)

  - Channel-specific bans are stored in the userfile and can be shared i
    guess

  - Channel-specific bans weren't set when joining or re-checking bans
    (fixed)

  - Some IAC codes would send spurious '7' under gcc (fixed)

  - +bitch/+protectops still wasn't working (fixed) (i hope it really was
    this time)

  - If server hostname is different from the one in the server list, the
    server list is updated with the new info
    Suggested by: demon

  - File system 'chdir' wasn't checking error returns on filedb's sometimes
    (fixed)
    Found by: Fred1

  - Filedb code was using wrong match routines (case insensitive, bad)
    (fixed)
    Found by: Fred1

  - Slightly better rejection of unsupported telnet IACs (thanks to ken
    keys)

  - 'handle' command renamed to the more intuitive 'chnick' (and 30,000
    people will burn me alive for it i'm sure)

  - Notes are moved along with a handle change now

  - # of notes shown in 'whois' display
    Suggested by: ledpighp

  - Old or no-recipient notes expire during the logfile switchover
    Suggested by: ledpighp

  - Moved notes system into its own module for eventual cleanup (yeah right)

  - Won't block on DNS searches more than 10 seconds

  - Net module was returning bad lengths for non-binary sockets -- only the
    telnet IAC code used this, and it only manifested itself as a throw-away
    of any line less than 5 chars that had IAC codes in it (fixed)

  - More informative debug info written on crash

  - Attempts to grab the userfile that abort very early didn't cause an
    unlink (fixed)
    Found by: blackjac

  - ntalk.irc bugfix
    Fixed by: tris

  - Tcl 'dccsimul' command broadcast flag changes to sharebots (fixed)
    Found by: cold fusion

  - Tried to fix weird bug where +a bots listed before +h bots wouldn't get
    linked if the +h bots were down

  - Handles FPE signal

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files
  - Remote sharing of directories
  - Permanent yet channel-specific bans (right now it's either global &
    permanent, or channel-specific & temporary)
  - Tcl access to blowfish

  BUGS:

  - None (HA!)
  - +h/+a auto-linking is not working correctly
  - Some people say their bot thinks it's i-lined when it's not, but i can't
    duplicate it, and those people won't send me logs or info


1.0g (July 23, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Tcl 'killdcc' could kill off the terminal (HQ) user in -nt mode (fixed)
    Found by: cmwagner

  - Multihoming fixed
    Patch by: tris

  - Little better at checking for stoned servers

  - protect-ops doesn't reop if the deop was caused by another bot (stops
    some desync wars)
    Suggested by: Xerxes

  - Bans were checked on the wrong hostmask during nick changes (fixed)
    Found by: tris

  - Several commands would behave strangely with extra spaces added (fixed)
    Patch by: cmwagner

  - file-system-only users were getting binary sockets (fixed)
    Patch by: cmwagner

  - Tcl wants fds 0/1/2 left open, but they're redirected to /dev/null now
    so it can't harm anything

  - Most normal mode flushes are queued now to avoid the bot flooding itself
    off when it joins a bunch of channels at once and starts implementing
    bans from the list

  - 'adduser' could add users with nicks > 9 chars (fixed)
    Found by: taz-man

  - Added PRIVATE_OWNER define so that dictatorial sharebot networks can
    have one master bot which ignores any +n modes coming from slave bots
    (all slave bots must therefore have 'owner' set so that when downloading
    the user file, they will at least have some local +n's that don't exist
    on the master)

  - 'invite' didn't recognize net-splits or non-invite channels (fixed)
    Patch by: tris

  - Removed "strong connection" since it was a no-op

  - Userfile marks a version number now, and has upgraded to v2 (will read
    v1 user files but writes only v2 ones)

  - Passwords are encrypted now using blowfish (public domain equivalent of
    DES without silly patent laws or government interference)

  - Rudimentary socks firewall support (outbound connections only so far)

  - Repetitive ban checking used wrong timestamp (fixed)
    Patch by: Hue Truong

  - Wasn't really switching between m/h queues when dumping to server
    (fixed)

  - Cleans out m/h queues when switching servers so they don't get cluttered
    Suggested by: tris

  - With quiet rejection off, bot responds to 'help' politely even if it
    doesn't know the user
    Suggested by: jonte

  - Joins & parts of botnet users is shared now, to eventually replace
    '.whom' in a few versions

  - '.chinfo' pretended to change info of non-existent users (fixed)
    Found by: Aaron Zollman

  - Support for sun firewalls (as much as there can be) -- will barely work,
    if at all, since "telnet passthru" wasn't meant for machine use

  - Entering anything but "*bye*" on a relay attempt that hadn't connected
    yet would crash the bot (fixed)
    Found by: tris

  - Entering "*bye*" on a relay attempt that hadn't connected yet would fail
    to announce that the user had rejoined the party line (fixed)

  - PRIVATE_OWNER define wasn't actually working (fixed)
    Found by: Gord-

  - Updated 'weed' for new userfile format

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files

  BUGS:

  - None (HA!)
  - Some complaints that a large filedb file gets created (fixed? maybe?):
    + Fred1 says it happens in /gifs/abpem, suggesting that the removal/
      addition of directories might be a culprit
  - Channel bans aren't saved in the userfile, or downloaded to other bots:
    they probably should be.


1.0f (July 6, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Various patches to fix socket 1 getting treated special when the bot is
    in the background
    Patches by: cmwagner

  - msg 'whois' command had possible nick overrun (fixed)
    Patch by: cmwagner

  - Overruns in file system (fixed)
    Patch by: cmwagner

  - Bot link/relay wasn't using strong connection for incremented ports
    (fixed)
    Patch by: cmwagner

  - Aborted userfile transfers were killing the wrong socket (fixed)
    Patch by: cmwagner

  - Full file system would crash (fixed)
    Patch by: tris

  - Sending the userfile over NFS would just send garbage (fixed)
    Patch by: cmwagner

  - Much better definition of "bogus" channel keys and bans: char 127, or
    any char below 32 except ^B, ^V, ^_

  - Bots aren't penalized for bogus channel keys or bans

  - bitch/protectops combo wasn't working quite right on deop yet (fixed):
    new behavior is that if protectops and bitch are both set, the deop'd
    person will get re-op'd only if +o or +m
    Found by: brenny

  - Can define 'altnick' now to avoid blatantly obvious "Lamebot0" nicks
    Suggested by: cmwagner

  - '.status' will indicate if the bot is in limbo instead of saying it's
    trying to join various servers and channels
    Found by: dannyboy

  - Measures and displays server lag in '.status'

  - Added separate flood threshold 'flood-ctcp' for CTCP floods

  - Super-long CTCP ECHO/PING/ERRMSG requests are just ignored

  - strong-connect sockets were losing incoming data at the beginning of the
    connection (fixed)

  - Directory wasn't closed after filedb-update (fixed) (maybe this caused
    the explosive filedb's?)

  - No longer dumps out existing chat-channel assoc's to new bots when they
    link (caused stupid floods, etc)

  - Could possibly flood itself off with channel joins when starting up
    (fixed)

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Channel bans aren't passed between sharebots: should they be?
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files

  BUGS:

  - None (HA!)
  - Some complaints that a large filedb file gets created (fixed? maybe?):
    + Fred1 says it happens in /gifs/abpem, suggesting that the removal/
      addition of directories might be a culprit
  - Option SOCK_STRONGCONN currently appears to be a no-op


1.0e (Jul 2, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Might confuse lag for a desync, and not kick people who joined while a
    ban was being placed ("after" the ban was placed, from the bot's point
    of view) (fixed)
    Found by: Fred1

  - Stupid new '+', '-', '^', '=' preceding usernames are stripped unless
    strict-host is on

  - 'set' added to list of commands that are disabled if user Tcl access is
    restricted (#undef ENABLE_TCL) -- plugs a possible security hole
    Found by: cmwagner

  - Tries to avoid abuse of '+ignore' to create duplicate identical ignores
    Found by: blackjac

  - Super-long help request could crash the bot (fixed)
    Found by: darknight

  - dcc 'email' command didn't have long enough buffer for display (fixed)
    Found by: cmwagner

  - Race condition on userfile send and receive at the same time (fixed)
    Found by: Fred1

  - Got rid of some HPUX warnings
    Patches by: cmwagner

  - copyfile() would only copy part of a file if it ran out of disk space
    (now it aborts)
    Found by: Mr. Wizard

  - Added 'pushmode' and 'flushmode' Tcl commands

  - Buffer overrun on check_chanlist()
    Fixed by: cmwagner

  - filedb-path wasn't working (fixed)

  - If the bot cycles a channel, becomes the only member, and still isn't
    op'd, it will assume it's i-lined and jump

  - Failed dcc chat was pressing on with assumed successful connect (fixed)

  - Identity change (changing the bot's nick and then reloading the config
    file) would wait a while before changing nicks on the server (fixed)
    Found by: Laurens v. Alphen

  - Colorization (^B/^V/^_) in bans was considered bogus (fixed)
    Found by: topcat

  - Don't re-op someone if they are not +o and bitch is on, even if protect-
    ops is on
    Found by: seadawg

  - Relay uses "strong" connections to try not to be fooled by async i/o

  - Failed relay attempt would cause crash (fixed)

  - Bogus IAC packets in telnet connections could cause endless loop (fixed)
    Exploited by: "eggcrash"

  - Tries harder to disassociate controlling terminal when running in the
    background (ie, most of the time) and re-uses fd's 0-2 (server will
    generally be socket 0 now)

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Channel bans aren't passed between sharebots: should they be?
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files
  - Be able to clear all bans
    Suggested by: blackjac
  - Tcl command to add and flush mode changes

  BUGS:

  - None (HA!)
  - Tcl 'sign' bindings sometimes crash (?)
  - Some complaints that a large filedb file gets created (can't duplicate,
    might be just a rumor):
    + Fred1 says it happens in /gifs/abpem, suggesting that the removal/
      addition of directories might be a culprit
  - Aborting a userfile transfer is usually fatal now (why?)


1.0d (June 12, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Turning off flood protection wasn't working for dcc chat (fixed)

  - 'stat all' display was outdated for channel settings (fixed)

  - ctcp finger, version, userinfo will not return anything if the responses
    are set to blank
    Suggested by: answer

  - Better handles long file system directory names

  - '.filedb' thingies don't have to be stored in the actual directories now
    Suggested by: waxmaster

  - Xerxes got laid

  - eggstat wasn't keeping track of the 'xtra' field correctly
    Fixed by: cmwagner

  - Userfile was being buffered as it was received (fixed)

  - Added sets 'my-ip' and 'my-hostname' to override auto-detect in odd
    cases
    Suggested by: Rok Papez

  - Might have fixed OSF/1 problems with DNS

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Channel bans aren't passed between sharebots: should they be?
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files
  - Be able to clear all bans
    Suggested by: blackjac

  BUGS:

  - None (HA!)
  - Tcl 'sign' bindings sometimes crash (?)
  - osf/1 has dns problems -- no known solution (might be unsigned long
    problem?)
  - Some complaints that a large filedb file gets created (can't duplicate,
    might be just a rumor)


1.0c (June 1, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Remote 'who' info was putting garbage before the channel list (fixed)

  - link binding was giving a null parameter (fixed)
    Patch by: cmwagner

  - Relays were exploding (fixed)

  - mprintf/hprintf/putlog could get overloaded (fixed, i think)

  - Better (?) support for suns in trying to find libs
    Suggested by: keyoke

  - Thought all bot rejections were fake (fixed)
    Found by: cmwagner / Caused by: cmwagner ;)

  - dcc sends to the bot (including userfile transfers) were being buffered
    by accident (fixed)

  - Just does slow bot ping all the time now

  - console.tcl wasn't restoring console channel correctly (fixed)
    Found by: Ben Barton

  - Really dumps bots when they abort the userfile transfer now

  - Userfile sends were choking (fixed)
    Found by: Gord-

  - Was checking for connect timeout even when between servers (fixed)

  - Support for code 405 ("too many channels") and 432 ("bad nickname")
    Suggested by: cmwagner

  - No longer kicks people for having a ';' in their username
    Suggested by: sprite

  - Can set maximum number of notes to save for a user (default 50) to
    prevent someone being flooded by stored notes
    Suggested by: Robert Brice

  - Added Tcl: 'getchanmode'
    Suggested by: Roger Yerramsetti

  - Can mark a bot +sa now
    Suggested by: Nate Gardner

  - Revenge is a channel option now, not a global option

  - Some Tcl commands ('matchattr', 'userlist', 'chanlist') and dcc commands
    ('match') would assume anyone matches against a non-existent flag -- now
    nobody will match a non-existent flag
    Patch by: answer

  - Channel chanmode overrun
    Fixed by: zamf

  - Tells OS it wants to be able to re-use listening port later
    Patch by: tris

  - Uses ISON instead of PING to check for server stoned
    Suggested by: archon

  - Tcl 'addbot' command hadn't been working right (fixed)
    Found by: cmwagner

  - '.who bot1 bot2' was rude (fixed)
    Found by: blackjac

  - sharebot_boots wasn't really checking for sharebots (fixed)
    Found by: blackjac

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Channel bans aren't passed between sharebots: should they be?
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files
  - Be able to clear all bans
    Suggested by: blackjac

  BUGS:

  - None (HA!)
  - Tcl 'sign' bindings sometimes crash (?)
  - osf/1 has dns problems -- no known solution


1.0b (May 20, 1996):

  # Released by: Robey [Robey Pointer <robey@netcom.com>]

  - Owners couldn't add hostmasks to each other with '+host' (fixed)
    Found by: waxmaster

  - Nick floods are triggered by 'flood-join' now instead of 'flood-msg'

  - Channels missing from the config file on a rehash will be removed

  - Notes and master-comments weren't always echoing properly for file
    system users (fixed)
    Found by: pinchaser

  - mv/cp in file system would cause chaos (fixed)
    Found by: pinchaser

  - ques3.tcl was writing 0-length files (fixed)
    Found by: imoq

  - Got confused when it joined a channel with the wrong nick (fixed)

  - Setting flood levels to 0 deactivates flood protection

  - No more '.exec' because i killed process control -- it can be done in
    Tcl anyway

  - Sharebots queue user changes while a userfile transfer is in progress

  - Non-blocking ("asynchronous") network I/O now (re-wrote network stuff)

  - Can stop a relay before it connects

  - '.debug' shows abridged socket table

  - '-nt' mode was leaving you on a screwy nonexistant channel (fixed)

  - Lame -v option

  - New set 'telnet-bots-only' to allow you to restrict the telnet port to
    bots (no humans)
    Suggested by: blackjac

  - Telnet port can be changed on the fly

  - New set 'server-timout' to replace the compile-time option

  - Security hole with 'open-telnets' on (fixed)
    Found by: cmwagner

  - Added 'assoc' and 'killassoc' for Tcl

  - Better protection against the bot flood-checking itself

  - Bans added via Tcl are now tagged with the bot's nickname, so the ban
    comment will be displayed on kick

  - Sharebots won't bitch at each other for removing bans

  - Much better about letting many channels be used without overflowing
    buffers

  - Could send fake bot rejections (fixed)
    Patch by: cmwagner

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Channel bans aren't passed between sharebots: should they be?
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files
  - Be able to clear all bans
    Suggested by: blackjac

  BUGS:

  - None (HA!)
  - Tcl 'sign' bindings sometimes crash (?)


1.0a (May 4, 1996):

  # Released by: Robey [Robey Pointer <robey@acolyte.slip.netcom.com>]

  - Can use 'ENABLE_TCL' to turn off the '.tcl' command now
    Suggested by: Jay S. Monk

  - New 'ntalk.irc' (v4.1)
    Submitted by: Fred1

  - Bind string matching could get locked up
    Fixed by: Fred1

  - DALnet fixes
    Patch by: cmwagner

  - Copying a file into a directory where it already existed caused
    duplicate records (fixed)
    Found by: Fred1

  - Couldn't hide/unhide dirs in the file system (fixed)
    Found by: imoq

  - timer/utimer didn't handle bad syntax in commands well (fixed)
    Found by: dan

  - Desyncs were causing the bot to repetitively kickban people who joined
    the channel on a side of the net where the ban did not exist, which
    would sometimes make the bot flood itself off (fixed)
    Found by: Nate Gardner

  - Setting the 'xtra' field blank would crash the bot (fixed)
    Found by: dan

  - Small fix to quesedilla
    Patch by: Gord-

  - Dropped relay connections weren't REALLY reseting echo (fixed)
    Found by: imoq

  - 'rehash' saves the user file first before reloading it -- new command
    'reload' will reload the user file without saving it or loading anything
    else

  - Could use 'adduser' on bot owners *gulp* (fixed)

  - 'rehash' will refresh channel settings from the config file now (in case
    something has changed in the channel definition)

  - When a master gave extra console modes to someone, they would be lost
    the next time that person changed their console mode (fixed)
    Found by: pinchaser

  - Tcl 'filesend' wasn't really there (fixed)
    Found by: cmwagner

  - Small fix to console.tcl

  - Asks for a disconnect when a userfile transfer gets aborted (i have no
    idea why this should ever happen, but apparently it does in mexico)
    Suggested by: imoq

  - Console mode '*' is all allowed modes

  - 'null' users and 'none' bans for sharebot no longer happen
    Helped by: cmwagner

  - Can detect and use the new standard Tcl 7.5 shared library (hint hint)

  - Annoying roommate: Xerxes

  - '.dump' was op-level not master-level (fixed)
    Found by: skyline

  - Bans weren't being checked on nick change (fixed)
    Found by: spacey

  - Nick binding passed uhost parameter incorrectly (fixed)

  - Stackable bindings weren't being checked by their individual flag
    requirements (fixed)
    Found by: Chad Fawcett

  - CTCP responses use secondary queue now

  - Rapid-fire kicks are queued to avoid being flooded off by rapid-fire
    kicking a wave of clonebots
    Suggested by: spacey

  - New channel setting '+stopnethack' that can turn on/off nethack
    protection

  - When using undesired nick, bot might idle-kick itself (fixed)
    Found by: hal

  - Some socket/fd leaks in the file system could lead to unpredictable
    filedbs i think (fixed)

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Channel bans aren't passed between sharebots: should they be?
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files
  - Be able to clear all bans
    Suggested by: blackjac

  BUGS:

  - None (HA!)


1.0 (April 7, 1996):

  # Released by: Robey [Robey Pointer <robey@acolyte.slip.netcom.com>]

  - Security patch for 'pass' command
    Patch by: cyberscape

  - Can do 'comment <user> none' now
    Suggested by: softlord

  - Wasn't letting you describe directories any more (fixed)
    Found by: sabi

  - Mode change before /who result caused crash (fixed)
    Found by: imoq

  - chon copes better with dropped dcc's and channel changes now

  - Tcl 'putloglev' to write to a user-defined log level (1-5)

  - 'trace' command was still broken (fixed)

  - New bans will store and display when they were created and the last time
    they were active (popular demand)

  - Tcl 'link' and 'unlink' weren't working (doh!) (fixed)

  - Finished dprintf'izing

  - Assoc'd channels are kept in numerical order now

  - No more support for non-Tcl bots

  - Was losing memory every time server list was loaded (fixed)

  - No longer honors outdated op requests done thru non-Tcl

  - Re-arranged config file a lot to make it cope with multiple channels

  - New Tcl command 'channel' to add, remove, and modify channel entries

  - Console now has channel and mode, instead of just mode

  - New faster match.c from Fred1

  - Now only rejects 'who' requests for secret/private channels when the
    requestor isn't already on the channel

  - Doesn't keep "hidden" track of memory any more when debugging is off
    (downside: no way to tell memory leak unless debugging is on)

  - Bot link/etc notices were going to users who had '.chat off' (fixed)
    Found by: Xerxes

  - Added Tcl 'setlaston', 'echo', 'addglban', 'delglban'

  - '.email' has a more standard syntax now
    Suggested by: answer

  - Each channel keeps its own banlist now for temporary bans

  - Changed various Tcl ban commands to accomidate the concept of having a
    global banlist + separate banlist for each channel

  - Channel ban lists are sent by channel name to other sharebots

  - Revenge generally only adds bans to a certain channel now

  - Tcl 'channel info' dumps out all the info you can set

  - Join flood only gets you banned on the one channel now

  - Was reversing mode changes by fake-op people even if the mode changes
    were beneficial (fixed)
    Found by: tris

  - '/msg pass' incorrect password notice was getting sent to the wrong
    person (fixed)
    Found by: archon

  - '/msg ident' will take an optional nickname now
    Suggested by: poseidon

  - '.+bot' will try to add the hostmask if it can find it

  - Changed meaning of +a and +h flags for bots -- now +h is equivalent of
    old +ah, and +a is an alternate/secondary link if no +h can be linked

  - Better DALnet support (maybe not perfect, but...)

  - Password checking is case-sensitive now
    Suggested by: Jay S. Monk

  - Removed helpbot support (useless)

  - Revenge flag changes weren't propagating through sharebots properly
    (fixed)
    Found by: zenoran

  - Tries not to block longer than 10ms when writing to a socket now

  - Checks bans against userlist, just in case someone's dumb enough to ban
    by a hostmask the bot knows

  - 'unlink *' will disconnect you from the botnet
    Suggested by: blackjac

  - Aborting a relay, when a password was being asked for, could keep echo
    off indefinitely (fixed)
    Found by: cmwagner

  - New Tcl command 'getting-users'

  - Took out the old primitive 'talk'/'ntalk' script support (possibly to be
    replaced by something better later)

  - Tries to be more graceful when recovering via '.reset'

  - Rewrote entire file system and help files

  - Number of gets for a file is incremented AFTER a successful download
    now, instead of before

  - 'text/banner' is shown to people that telnet in

  - set 'copy-to-tmp' can turn on/off copying files to /tmp before sending
    them to people (has no effect on uploads, which are still stored in /tmp
    until finished)

  - Keeps file descriptor open while sending/receiving a file now (probably
    not much more efficient on many machines, but apparently it has an
    effect over NFS)

  - Wasn't passing flags 8/9/0 over sharebot links (fixed)

  - Local msgs (') leak to all channels by default now
    Patch by: answer

  - Old '.files' is converted to '.filedb' on first access to that directory

  - New Tcl 'utimer', 'killutimer', 'utimers' to deal with "micro-timers"
    that operate on the order of seconds instead of minutes

  - Timers are no longer double-evaluated

  - File sharing implemented

  - New Tcl: 'deluser'

  - Space for tandem bot records adjusted automatically now (no set limit)

  - Wasn't enforcing a +l mode if someone did +l with a different limit
    (fixed)
    Patch by: cmwagner

  - In help/text files, '%C' is now the list of channels the bot wants, and
    '%E' is the full-blown eggdrop version

  - Ignores store nicknames now
    Suggested by: blackjac

  - Changed behavior of Tcl 'dccsimul' to be more intuitive

  - Added 'filt' bindings which filter dcc input

  - Made Tcl 'dccsimul' give temporary owner access while executing

  - Alleged support of file transfer recovery now

  - Lots of Tcl commands to support the file system

  - Flags '6'-'0' weren't getting loaded correctly (fixed)
    Found by: Dave Guzeman

  - '.email' was spazzing out (fixed)
    Found by: slix

  - Sockets are non-blocking after a connect now

  - Something stupid about not being able to leave notes for bots
    Found by: Xerxes

  - The xtra field is transmitted between sharebots differently, and should
    now have no effective size limit

  - The ILL signal will log a context and continue -- to help find locks

  - Socket output is queued if it would block (non-binary sockets only), and
    '.debug' will show the socket queues, in and out

  - File system wasn't noticing an invalid dcc path (fixed)
    Found by: dorgan

  - Moved ' local-only chat to a Tcl script so it's optional

  - Userfile transfers happen via a DCC send connection now (might be
    faster)

  - Added 'save-users-at' and 'switch-logfiles-at' timing options

  - Killed forked processes were giving "unforseen error 234" (fixed)
    Found by: plof

  - 'putbot' wasn't up to speed (fixed)
    Found by: shadow

  - 'switch-logfiles-at' in lamestbot was set to octal value (oops)
    Found by: Xerxes

  - Bans were overwriting other memory when sent to Tcl to trigger bindings
    ("yer a dork!") (fixed)
    Found by: Fred1

  - Better way to prevent the bot from going "idle"

  - CTCP AWAKE wasn't correctly removed (fixed)
    Found by: cmwagner

  - Owners couldn't even boot themselves (fixed)
    Found by: Gord-

  - 'chattr' was letting you do +b/-b when it shouldn't (fixed)

  - Leaf rejection was sometimes flooding (fixed)
    Found by: junkie

  - Bot was sometimes not noticing when it got its nickname back (fixed)
    Found by: station

  - When someone on a channel changed nicks to the same as someone who was
    net-split, the bot would get confused (fixed)
    Found by: station

  - msg 'jump' now requires a password

  - User caching used when adding users, so that the startup
    loading-userfile phase will be faster

  - New console level 's' to record server connect/disconnect/etc

  - 'unlink *' forces the bot tables and assoc records to be cleared to a
    sane state
    Suggested by: Fred1

  - filt wasn't working for file system (fixed)
    Found by: dorgan

  - Missing linefeed was causing bot tree chaos (fixed by cmwagner)

  - Was possible to nick-ban the bot with +ban (fixed)
    Found by: Luke Detering

  - Better username testing on startup

  - Few problems with crashing when unlinking bots (fixed)
    Found by: Xerxes

  - Hack: Tcl 'putserv' and 'puthelp' truncate embedded linefeeds now, to
    keep braindead scripts from shooting themselves in the foot

  - Excessive repetitive invites are no longer logged
    Suggested by: derrick

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Channel bans aren't passed between sharebots: should they be?
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files
  - Be able to clear all bans
    Suggested by: blackjac

  BUGS:

  - Sometimes forks for chat aren't getting their memory freed:
    =MyBOT= File 'dccutil.c ' accounted for 108/728 (debug follows:)
    =MyBOT=    821:(010) 821:(010) 808:(06C) 821:(010) 821:(010) 808:(06C)
    =MyBOT=    808:(06C) 808:(06C) 821:(010) 808:(06C) 808:(06C)
    [not sure if this still happens]
  - Sometimes bans are being "none!*@*" ?
  - Raw mode crashes tclhash.c/563


1.0beta-turtle-patched (April 3, 1996):

  # Patch by: Robey [Robey Pointer <robey@acolyte.slip.netcom.com>]

  - Bugfix patch


1.0beta-turtle (April 1, 1996):

  # Released by: Robey [Robey Pointer <robey@acolyte.slip.netcom.com>]

  - Better way to prevent the bot from going "idle"

  - CTCP AWAKE wasn't correctly removed (fixed)
    Found by: cmwagner

  - Owners couldn't even boot themselves (fixed)
    Found by: Gord-

  - 'chattr' was letting you do +b/-b when it shouldn't (fixed)

  - Leaf rejection was sometimes flooding (fixed)
    Found by: junkie

  - Bot was sometimes not noticing when it got its nickname back (fixed)
    Found by: station

  - When someone on a channel changed nicks to the same as someone who was
    net-split, the bot would get confused (fixed)
    Found by: station

  - msg 'jump' now requires a password

  - User caching used when adding users, so that the startup
    loading-userfile phase will be faster

  - New console level 's' to record server connect/disconnect/etc

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Channel bans aren't passed between sharebots: should they be?
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files

  BUGS:

  - Sometimes forks for chat aren't getting their memory freed:
    =MyBOT= File 'dccutil.c ' accounted for 108/728 (debug follows:)
    =MyBOT=    821:(010) 821:(010) 808:(06C) 821:(010) 821:(010) 808:(06C)
    =MyBOT=    808:(06C) 808:(06C) 821:(010) 808:(06C) 808:(06C)
  - Problems with ques3.tcl ?
  - Sometimes bans are being "none!*@*" ?
  - None  (yeah right!)


1.0beta-stegosaurus (March 28, 1996):

  # Released by: Robey [Robey Pointer <robey@acolyte.slip.netcom.com>]

  - Userfile transfers happen via a DCC send connection now (might be
    faster)

  - Added 'save-users-at' and 'switch-logfiles-at' timing options

  - Killed forked processes were giving "unforseen error 234" (fixed)
    Found by: plof

  - 'putbot' wasn't up to speed (fixed)
    Found by: shadow

  - 'switch-logfiles-at' in lamestbot was set to octal value (oops)
    Found by: Xerxes

  - Bans were overwriting other memory when sent to Tcl to trigger bindings
    ("yer a dork!") (fixed)
    Found by: Fred1

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Channel bans aren't passed between sharebots: should they be?
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files


1.0beta-rabbit (Mar 25, 1996):

  # Released by: Robey [Robey Pointer <robey@acolyte.slip.netcom.com>]

  - Security patch for 'pass' command
    Patch by: cyberscape

  - Can do 'comment <user> none' now
    Suggested by: softlord

  - Wasn't letting you describe directories any more (fixed)
    Found by: sabi

  - Mode change before /who result caused crash (fixed)
    Found by: imoq

  - chon copes better with dropped dcc's and channel changes now

  - Tcl 'putloglev' to write to a user-defined log level (1-5)

  - 'trace' command was still broken (fixed)

  - New bans will store and display when they were created and the last time
    they were active (popular demand)

  - Tcl 'link' and 'unlink' weren't working (doh!) (fixed)

  - Finished dprintf'izing

  - Assoc'd channels are kept in numerical order now

  - No more support for non-Tcl bots

  - Was losing memory every time server list was loaded (fixed)

  - No longer honors outdated op requests done thru non-Tcl

  - Re-arranged config file a lot to make it cope with multiple channels

  - New Tcl command 'channel' to add, remove, and modify channel entries

  - Console now has channel and mode, instead of just mode

  - New faster match.c from Fred1

  - Now only rejects 'who' requests for secret/private channels when the
    requestor isn't already on the channel

  - Doesn't keep "hidden" track of memory any more when debugging is off
    (downside: no way to tell memory leak unless debugging is on)

  - Bot link/etc notices were going to users who had '.chat off' (fixed)
    Found by: Xerxes

  - Added Tcl 'setlaston', 'echo', 'addglban', 'delglban'

  - '.email' has a more standard syntax now
    Suggested by: answer

  - Each channel keeps its own banlist now for temporary bans

  - Changed various Tcl ban commands to accomidate the concept of having a
    global banlist + separate banlist for each channel

  - Channel ban lists are sent by channel name to other sharebots

  - Revenge generally only adds bans to a certain channel now

  - Tcl 'channel info' dumps out all the info you can set

  - Join flood only gets you banned on the one channel now

  - Was reversing mode changes by fake-op people even if the mode changes
    were beneficial (fixed)
    Found by: tris

  - '/msg pass' incorrect password notice was getting sent to the wrong
    person (fixed)
    Found by: archon

  - '/msg ident' will take an optional nickname now
    Suggested by: poseidon

  - '.+bot' will try to add the hostmask if it can find it

  - Changed meaning of +a and +h flags for bots -- now +h is equivalent of
    old +ah, and +a is an alternate/secondary link if no +h can be linked

  - Better DALnet support (maybe not perfect, but...)

  - Password checking is case-sensitive now
    Suggested by: Jay S. Monk

  - Removed helpbot support (useless)

  - Revenge flag changes weren't propagating through sharebots properly
    (fixed)
    Found by: zenoran

  - Tries not to block longer than 10ms when writing to a socket now

  - Checks bans against userlist, just in case someone's dumb enough to ban
    by a hostmask the bot knows

  - 'unlink *' will disconnect you from the botnet
    Suggested by: blackjac

  - Aborting a relay, when a password was being asked for, could keep echo
    off indefinitely (fixed)
    Found by: cmwagner

  - New Tcl command 'getting-users'

  - Took out the old primitive 'talk'/'ntalk' script support (possibly to be
    replaced by something better later)

  - Tries to be more graceful when recovering via '.reset'

  - Rewrote entire file system and help files

  - Number of gets for a file is incremented AFTER a successful download
    now, instead of before

  - 'text/banner' is shown to people that telnet in

  - set 'copy-to-tmp' can turn on/off copying files to /tmp before sending
    them to people (has no effect on uploads, which are still stored in /tmp
    until finished)

  - Keeps file descriptor open while sending/receiving a file now (probably
    not much more efficient on many machines, but apparently it has an
    effect over NFS)

  - Wasn't passing flags 8/9/0 over sharebot links (fixed)

  - Local msgs (') leak to all channels by default now
    Patch by: answer

  - Old '.files' is converted to '.filedb' on first access to that directory

  - New Tcl 'utimer', 'killutimer', 'utimers' to deal with "micro-timers"
    that operate on the order of seconds instead of minutes

  - Timers are no longer double-evaluated

  - File sharing implemented

  - New Tcl: 'deluser'

  - Space for tandem bot records adjusted automatically now (no set limit)

  - Wasn't enforcing a +l mode if someone did +l with a different limit
    (fixed)
    Patch by: cmwagner

  - In help/text files, '%C' is now the list of channels the bot wants, and
    '%E' is the full-blown eggdrop version

  - Ignores store nicknames now
    Suggested by: blackjac

  - Changed behavior of Tcl 'dccsimul' to be more intuitive

  - Added 'filt' bindings which filter dcc input

  - Made Tcl 'dccsimul' give temporary owner access while executing

  - Alleged support of file transfer recovery now

  - Lots of Tcl commands to support the file system

  - Flags '6'-'0' weren't getting loaded correctly (fixed)
    Found by: Dave Guzeman

  - '.email' was spazzing out (fixed)
    Found by: slix

  - Sockets are non-blocking after a connect now

  - Something stupid about not being able to leave notes for bots
    Found by: Xerxes

  - The xtra field is transmitted between sharebots differently, and should
    now have no effective size limit

  - The ILL signal will log a context and continue -- to help find locks

  - Socket output is queued if it would block (non-binary sockets only), and
    '.debug' will show the socket queues, in and out

  - File system wasn't noticing an invalid dcc path (fixed)
    Found by: dorgan

  - Moved ' local-only chat to a Tcl script so it's optional

  TO-DO:

  - Allow dynamic bans to be marked as "forced"?  (ie, most bans are dynamic
    but some could be marked as permanently active)
  - Channel bans aren't passed between sharebots: should they be?
  - Tcl commands for:
      move/copy a file
      make/remove a dir
      get/set a dir's required flags
  - '.sort' to sort files