This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
611 lines (543 loc) · 25.9 KB
/
ChangeLog
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
Version 1.0 alpha: (25 Feb 2007)
* plugins/weather.pl
- Added a column 'url' to the stations database. A custom station
can be added to the database. url must be the URL to a METAR
format report. Custom station IDs currently must be in the format
Kxxxxxxxn where x is a letter and n a number.
Version 1.0 alpha: (21 Jan 2007)
* plugins/dice.pl:
- Change by KewlioMZX: When rolling dice, give the total.
Version 1.0 alpha: (10 Nov 2005)
* lib/SimBot/Util.pm:
- Moved several functions into SimBot::Util, which can be used by
plugins. Other scripts could also use this functions externally.
- This allows utility functions to be called without a namespace and
also prevents plugins from being able to access things we don't
want exported from the namespace.
Version 1.0 alpha: (09 Aug 2005)
* templates/irclog.default.tmpl:
- Template used for making the HTML version of the IRC log. Don't like
the traditional "<JohnDoe> Hi!"? Change it here.
* plugins/httpd.pl:
- Error pages. Plugins must return a HTTP status code on the page
callback. If they don't, we'll assume 500 (Internal Server Error).
For codes 300-500, we'll look for a error.NNN template. If we can't
find one, we'll use error.500. Failing that, we use a hard coded page.
Version 1.0 alpha: (08 Aug 2005)
* plugins/httpd.pl:
- I forgot to update the changelog when I created this plugin...
instead of faking dates for everything, here it all is:
- Internal web server for SimBot. Right now, sqlite-logger and recap
use it. It also provides an admin page where you can restart SimBot
and even make it say things.
- Added templates.
* templates/base.default.tmpl:
- This is the basic template that defines every page. More templates will
come soon...
Version 1.0 alpha: (25 Jul 2005)
* simbot.pl:
- Added message value returned to callbacks attached to the nojoin
(banned/invite-only) event.
- The starting score for finding interesting words is more adaptive
so oft used interesting words should be able to keep a positive
score better. The query_word_score callbacks now receive the
start score.
- The debug function now accepts constants in addition to numbers
for the different levels. DEBUG_NO_PREFIX allows callers to avoid
having the PREFIX text attached to the beginning of their line.
* plugins/services.chanserv.pl:
- Rewrote the chanserv support to automatically attempt to register
with nickserv, and to automatically try to link nicknames with
the nickname represented by the services "user." Additional error
handling has been added as well.
* plugins/services.dalnet.pl:
- Dropped in favor of handling all chanserv operations in one plugin.
Version 1.0 alpha: (23 Jul 2005)
* plugins/8ball.pl:
- SimBot has acquired a Magic Eight Ball. Ask it a question!
Version 1.0 alpha: (18 Jul 2005)
* plugins/weather.pl:
- Added our own METAR parser. With luck, this will be more sane.
- If we can figure out a valid time for the report, we tell the user
how old the report is instead of the UTC time.
Version 1.0 alpha: (08 May 2005)
* plugins/time.pl:
- New plugin!
- Shows the current time in a number of time zones.
- %time <zones> shows the local time and the requested zones,
otherwise shows local and those defined in config.ini.
Failing that, local and UTC.
Version 1.0 alpha: (07 May 2005)
* plugins/weather.pl:
- Some unit conversion support. Add 'm' or 'metric' to show metric
units, 'us' or 'imp' or 'imperial' for imperial units.
- Support for UK post codes
* tools/create_postalcode_db.pl:
- Replaces tools/create_zip_db.pl
- Includes UK post codes
Version 1.0 alpha: (06 May 2005)
* plugins/weather.pl:
- Support for %weather <zip> to look up the closest station for
current observations.
Version 1.0 alpha: (05 May 2005)
* tools/create_zip_db.pl:
- Creates the USzip file, a SQLite DB of US zip codes circa 1999 from
US census data. This file lets us match zip codes to lat/long.
* plugins/weather.pl:
- Slightly better forecast support, you can now use
%weather forecast <zip> to get the forecast for your zip code.
Version 1.0 alpha: (04 May 2005)
* plugins/weather.pl:
- Forecast support; %weather <lat> <long> will give a forecast or break
horribly depending on how sober NOAA is and if the lat/long is in the
US.
* simbot.pl:
- Replace plugin_desc parameter with plugin_help and plugin_params
to allow a very nicely formed usage description. Plugins that have
no help will not be listed, even if they have params, but if the
user requests help on them, the params will be revealed if they
exist.
* plugins/sqlite-logger.pl
- The asterix (*) can now be specified for the nickname, this will look
for anybody matching. This replaces %log last.
Version 1.0 alpha: (03 May 2005)
* plugins/seen.pl:
- Removed, replaced with sqlite-logger.pl's seen support
* plugins/sqlite-logger.pl
- Now supports %seen. %log seen will hang around for the time being.
- %seen <nick> <events> count <number> will give multiple matches, up
to <number>.
- %seen <nick> <events> content <words> will look in the log for the
phrase <words>.
- Gives a word bonus to nicknames, like seen.pl used to.
* simbot.pl:
- Now properly stops sending data to the server when trying to quit.
Version 1.0 alpha: (01 May 2005)
* plugins/currency.pl:
- Rewritten! Now uses SOAP::Lite to fetch exchange information instead
of stealing it from xe.com.
Version 1.0 alpha: (30 Apr 2005)
* plugins/aspell.pl:
- New plugin! Checks and offers suggestions for the user's spelling.
Requires Text::Aspell.
Version 1.0 alpha: (31 Dec 2004)
* Happy New Year!
* plugins/sqlite-logger.pl:
- Added a %log last <event> command, which will tell you when
something last happened. Useful for figuring out what the topic
used to be when someone changes it. Or will be once
'before that' works.
Version 1.0 alpha: (17 Dec 2004)
* plugins/dict.pl:
- Added a feature that lists the dictionaries containing a specific
word. Syntax is %define dictionaries with [word].
Version 1.0 alpha: (05 Dec 2004)
* plugins/weather.pl:
- Uses NOAA's new XML current observations instead of the rather
brittle METAR for stations in the US. Other stations will still
use METAR.
* plugins/sqlite-logger.pl:
- Creates the tables if they don't exist automatically.
Version 1.0 alpha: (04 Dec 2004)
* plugins/sqlite-logger.pl:
- New plugin! Logs all chat to a SQLite database. Supports
%log recap and %log seen commands. Recap is intelligent, only
recaps what you actually missed. Seen supports the special
phrase 'before that' to look for the previous match. You can
also provide one or more of say, action, join, part, quit, kick,
mode, topic after the nickname to look up to limit to those
events. recap and seen should eventually replace the %recap and
%seen plugins.
Version 1.0 alpha: (28 Nov 2004)
* plugins/tinyurl.pl:
- New plugin! Looks for TinyURLs in chat, and announces where
they point. No more stealth afilliate links!
Version 1.0 alpha: (02 Nov 2004)
* plugins/rss.pl:
- We now trap XML parse errors so that we don't crash if the parsing
of a feed fails completely.
Version 1.0 alpha: (20 Oct 2004)
* simbot.pl:
- Added the ability to connect on non-standard ports.
* plugins/rss.pl:
- Added complaining and bailing if the RSS feed cannot be written
to disk.
Version 1.0 alpha: (05 Sep 2004)
* simbot.pl:
- Added command line options --debug and --config to override the
default configuration file and debug level for the session.
- Added ANSI colors to output messages.
Version 1.0 alpha: (31 Jul 2004)
* plugins/dice.pl:
- Added a %rps command, which makes the bot play the Rock, Paper,
Scissors games.
Version 1.0 alpha: (26 Jul 2004)
* simbot.pl:
- Added send_pieces_with_notice to allow large blocks of text to be
broken up and sent by notice instead of normal messages.
* plugins/recap.pl:
- If a user leaves and rejoins the channel, recap will attempt to
give them all the lines since departing by default until the
backlog is exceeded, at which point the default returns to 10.
* plugins/rss.pl:
- Added natural language data for getting RSS feeds. (Vincent Gevers)
- Added expire option, which determines how often the plugin wants to
fetch RSS updates. Unset, it defaults to 1 hour. (Vincent Gevers)
* plugins/nlp.pl:
- Added an event, event_plugin_nlp_call to allow plugins to specify
which function to call, instead of hardcoding it to try nlp_match
in the plugin's namespace.
Version 1.0 alpha: (25 Jul 2004)
* plugins/services.dalnet.pl:
- New services plugin designed to function with DALnet's chanserv.
(Vincent Gevers)
* plugins/services.chanserv.pl:
- New services plugin designed to work with a more generic
chanserv-based IRC network. (Vincent Gevers)
Version 1.0 alpha: (21 Jul 2004)
* simbot.pl:
- Added numberize function which converts written out numbers like
"two thousand" into digits, like 2000.
- The %help command works again, instead of calling the %stats
function.
* plugins/nlp.pl:
- We now use the new numberize function, so that natural language
parsing can understand numbers more completely.
Version 1.0 alpha: (14 Jul 2004)
* simbot.pl:
- query_userhost_mask can now be used by plugins to watch for
important user@host configurations and modify them instead of
normal processing.
Version 1.0 alpha: (13 Jul 2004)
* plugins/dict.pl:
- %define_private command is gone, replaced with a parameter to the
normal command.
- Relatively short definitions can now be forced to display in the
channel with "%define word publicly", but long definitions will
still insist upon appearing privately.
Version 1.0 alpha: (11 Jul 2004)
* plugins/rss.pl:
- The RSS plugin no longer downloads feeds that aren't being
announced every hour/on load, instead it downloads them as
needed.
Version 1.0 alpha: (10 Jul 2004)
* simbot.pl:
- SimBot now caches hostmasks for users when they enter the channel
and uncaches them when they leave.
- The hostmask utility function should now work for nicknames, as
well as actual hostmasks.
* plugins/rss.pl:
- Settings are now in config.ini instead of hard coded in the
script. Finally.
* plugins/info.pl:
- We now honor snooze, the info plugin shouldn't learn or respond
when SimBot is snoozing unless addressed.
* plugins/services.undernet.pl:
- Bans are now passed to Channel Service.
Version 1.0 alpha: (09 Jul 2004)
* simbot.pl:
- Added a means to override standard IRC commands like kick, op,
and voice with alternate functions. This means that calling
SimBot::send_kick can be made to ask your network's ChanServ to
do it through a plugin.
* plugins/services.undernet.pl:
- Added support for the kick command, but some error checking will
need to be added along with overrides for other IRC functions.
Version 1.0 alpha: (04 Jul 2004)
* simbot.pl:
- Added snooze mode which can be toggled by users in the channel.
If a conversation is bizarre or private and users want to prevent
the bot from learning what is said and responding conversationally
this mode will prevent both temporarily. It resets to off when
the bot starts up, and the command %snooze [off|on] toggles it.
$SimBot::snooze is available as a boolean to any plugins that want
to check whether snooze is on before generating an action.
Version 1.0 alpha: (26 Apr 2004)
* simbot.pl:
- Added a new event handler that allows plugins to identify when
the bot is addressed and do something else. Returning false
lets the plugin stop the normal output addressing creates.
- Plugins can now define hashes, which effectively allows them to
pass back arbitrary objects and associate them with a hash entry
for their specific plugin id. Some other plugin (or the core)
could then use such hash tables to get information from a plugin.
- We try to ignore bits of leading text that appear to come from
logs now. This should reduce the amount of junk that gets added
to the database.
* plugins/nlp.pl:
- New plugin allows "addressing text" sent to the channel to be
caught by the plugin and parsed for natural language commands.
Plugins (so far weather, dice, and seen... which turn out to all
be plugins I did not write) can now add to hashes that define
what type of language represents a request they can understand.
Version 1.0 alpha: (23 Apr 2004)
* plugins/info.pl:
- If you address the bot while teaching, it will correctly take
the entire line after the 'is' as the factoid, instead of cutting
at punctuation.
Version 1.0 alpha: (02 Mar 2004)
* plugins/dict.pl:
- Changed the dictionary plugin to try to find a definition for
the requested word in any available dictionary unless otherwise
specified. The command language now uses the key "in" to separate
the term from the dictionary. If you want to look up a term
that contains the word "in", you can quote the term with double
quotes.
Version 1.0 alpha: (01 Mar 2004)
* plugins/recap.pl:
- Added all the remaining events to recap: channel modes, quit,
join, part, and nick changes.
* simbot.pl:
- Added an event for nick changes, since we needed it for recap.
- Added a "lost word" check on startup. This takes a little extra
time, but it ensures that all words that aren't really usable
are completely gone from the database.
Version 1.0 alpha: (28 Feb 2004)
* plugins/rss.pl:
- Announce preselected RSS feeds in the IRC channel. This is
nifty if your channel is slow. We announce a number of feeds by
default, including slashdot, and developer personal feeds, which
are probably boring.
Version 1.0 alpha: (27 Feb 2004)
* *.pl:
- All files now use perl's strict mode, which should mean our code
is absolutely perfect. :P
* simbot.pl:
- We now support the %delete command which will remove any item from
the database provided it has been seen fewer than the max number
as specified in the config file.
* config.default.ini:
- We now use a plain text file (not a script file) for configuration
this is safer because no one can break the bot by putting bad
code in the config file.
* plugins/error.pl:
- the %list command is now in the error plugin instead of directly
inside the main script.
Version 1.0 alpha: (26 Feb 2004)
* simbot.pl:
- Added a new configuration option that allows you to change the
prefix that the bot will use to recognize commands. The default
will remain as %.
* plugins/dice.pl:
- It is now possible to flip more than 1 coin at a time.
Version 1.0 alpha: (25 Feb 2004)
* simbot.pl:
- Plugins now register their callbacks with references to functions
instead of a string representing the functions name. This keeps
us from having to care about what package the plugin is in, so
long as it's got a function we can talk to, and we no longer
need to define separate packages for separate commands in a
single plugin.
Version 1.0 alpha: (23 Feb 2004)
* plugins/info.pl:
- Infobot style sentence learning. Tries to learn x (is/are) y
from chat it sees or explicit setting with %info.
Factoid retrieval is only through %info currently.
Version 1.0 alpha: (20 Feb 2004)
* plugins/dict.pl:
- New plugin allows users to request definitions using the DICT
protocol from several different databases. At the moment, we
are defaulting to use Jargon, but this could change.
version 1.0 alpha: (19 Feb 2004)
* simbot.pl:
- Introduced send_message, send_action, and send_notice to replace
calling the POE::Kernel directly whenever we send a message.
This means we now get a chance to log things that the bot is
going to say.
- Added events event_*_out that are fired for plugins wanting to
know when the bot has sent a message out.
* plugins/*.pl:
- All plugins now use send_message, send_action, and send_notice
for all their sending needs.
* plugins/recap.pl:
- This plugin can now see what the bot says and logs it correctly.
- Fixed a bunch of message ordering logic to make sure we log in
the same order as time passes.
* plugins/weather.pl:
- We don't fail the weather plugin if we're unable to load the
station name cache. Station names will then be cached for
the current session only and lost upon quitting.
version 1.0 alpha: (13 Feb 2004)
* Today is Friday the 13th. I am told the ChangeLog must have an
entry for today. However, sadly, I didn't do anything, so this
is all you get.
Version 1.0 alpha: (12 Feb 2004)
* simbot.pl:
- We now exit the POE event loop in a way that lets us quit IRC
without doing the famous "EOF from client."
- New configuration option to make bot prompt for a quit message
on an interrupt signal, and to set a default quit message if
prompting is off.
* plugins/recap.pl:
- New plugin which recounts up to X lines of chat on demand. It's
great for catching up on a conversation after joining. The
plugin is currently incomplete, but it is usable.
* plugins/currency.pl:
- New plugin which does currency conversions when passed an amount
and two currency abbreviations.
Version 1.0 alpha: (11 Feb 2004)
* simbot.pl:
- Context is now detected and a sentence is generated from the
middle outward to (possibly) end up on-topic. An interesting
word is chosen from the original message based on a scoring
system that can be extended through query_word_score callback.
- New method for storing the database in memory (desperately
needed to eliminate very slow scoring of interesting words).
This new method also speeds up sentence generation a great
deal, though it will use a bit more memory.
* plugins/seen.pl:
- We now see topic changes and channel notices.
Version 1.0 alpha: (22 Dec 2003)
* simbot.pl:
- A lot of code has been cleaned up and many core functions were
renamed for consistency. A lot more debug information has been
added to verbosity level 4.
- Added: all planned events are now implemented and comments
document the parameters they should each deliver to callbacks.
- Added: a model now exists for services plugins. Undernet is
the default and only plugin currently. Only one services
plugin may load and its package name will be:
SimBot::plugin::services::pluginid
The plugin to load will be specified in the config.pl file.
If none is specified, the bot will not use any services features.
Anyone that wishes to implement a services plugin for ChanServ
would be welcome to do so.
- Added: plugins may now add items to lists, with a new case that
allows them to push nicknames onto an "ISON" list to poll for
whether a nickname is currently on IRC.
* config.default.pl:
- Added: new configuration options for logging into services.
None of these values are required, and plugins can choose to
look for different ones. ChanServ, for example, would not
tend to look for a user because it's going to work with
NickServ. The previous username setting is now used only
for the user portion of the bot's hostmask and the password
setting is gone.
* plugins/services.undernet.pl:
- Added: new plugin splits out services login for undernet into
a plugin.
- Added: detection for X being offline and returning so that the
bot can automatically log in, recover voice and request an
invitation.
Version 1.0 alpha: (21 Dec 2003)
* plugins/weather.pl:
- Added: metar command allows user request a raw METAR report
if they are so inclined.
Version 1.0 alpha: (17 Dec 2003)
* simbot.pl:
- Added: send_pieces() method that will automatically break up
given text into pieces that fit into the standard IRC message
length and send them on to their destination.
- Fixed: the plugin loader will not display any compile time
errors that prevent a plugin from loading successfully.
* plugins/google.pl:
- Fixed: Google define: results so that they will appear in cases
where the result is too long for one IRC message and added a
requirement for HTML::Entities so we can convert the define
string into plain text.
Version 1.0 alpha: (15 Dec 2003)
* plugins/weather.pl:
- Added support for fetching station names, if available.
- We also now work around the fact that Geo::METAR is unable to
see a temperature report when there's no dewpoint.
- We deal with the possible case that there's no temperature in the
report in a way that makes some amount of grammatical sense.
- We also deal with variable winds (if there's no english name and
there is a windspeed, it's got to be variable).
- We deal slight chance that the METAR report is coming up as NIL,
because Geo:METAR assumes that to be a windspeed.
Version 1.0 alpha: (14 Dec 2003)
* plugins/google.pl: google plugin now supports define: queries
Version 1.0 alpha: (12 Dec 2003)
* added: plugins are now out on their own with a partial implementation
of a plugin architecture. The idea is that your plugin declares
itself a package and then you plugin_register() and connect your
callback functions to different events.
* added: a %error plugin now spits out random error messages on demand
* added: the core is now defined as a package called SimBot.
Version 1.0 alpha: (06 Dec 2003)
* added: %flip
* fixed: seen now sees kicks
Version 1.0 alpha: (05 Dec 2003)
* added: seen support! Well, somewhat. %seen SomeLoser
* added: dice!
* added: debug output for notices from channel service
Version 1.0 alpha: (04 Dec 2003)
* added: support for %weather via Geo::METAR
* added: google search via %find now turns itself off without LWP
* added: you can now add "plugins" inside simbot.pl, a feature which
will be split out later
* added: extended number of verbose levels to 4 for crazy output
* fixed: cleaned out most of the warnings generated with perl -w
* fixed: failure to save the rules file is no longer a success
* fixed: if the rules can't load, do not later try to save them
* fixed: smileys with = at the end of a line should not be recorded
* removed: some sleep calls that aren't used for anything
* removed: %version command to eliminate duplicate ChangeLog
Version 0.99.16: (03 Dec 2003)
* added: config.pl splits the configuration from the main script
* added: ChangeLog splits the ChangeLog from the main script
* added: some error checking should die on a bad configuration
* removed: evil hacky privmsg functions that could be abused
* this will be the first version to appear in SF.net CVS
Version 0.99.15: (17 Nov 2003)
* fixed: %find's queries sometimes broke the calculator result
* added: %find can now use the Google calculator!
* added: bot should see = as eyes where appropriate
* added: bot will accept its name in the middle of a line
* added: added todo list function (%todo)
* added: expanded the set of ignored keywords
* added: ignore lines that have no alphanumeric characters
* added: strip out all formatting codes before processing text
* added: allow ASCII international characters to be recorded
Version 0.99.14:
* fixed: bot should no longer try to record blank actions
* fixed: bot will not report dead word count without dead words
* added: expanded the set of ignored keywords
* added: bot will track punctuation by first word, not last word
Version 0.99.13:
* fixed: a problem with infinite loops in sentence generation
* fixed: redesigned the sentence generator to be much faster
* fixed: bot will no longer record lines that reduce as empty
* fixed: improved smiley detection to reduce errors
Version 0.99.12:
* fixed: added disconnect check & 15 second wait between attempts
* fixed: eliminated bot babble in messages by using notice reply
* added: bot will now attempt to autorecover the default nickname
Version 0.99.11:
* fixed: cleaned up some connection related issues where possible
* added: a new quip for %list
Version 0.99.10:
* added: new filter items to the word filter using regex
* added: responds to current nick, even if it's not nick or alttag
* added: respond to addressing tag plain or with !, ? and smileys
* added: records equals signs with text
Version 0.99.9:
* added: automatic rejoin on kick from channel
* added: %find searches Google with "I'm Feeling Lucky"
* removed: autokick on @find was not necessary and kinda boring
* cleaned up the script, fixed warnings and added comments
* notify the user that % is the proper command prefix on use of ! or \@
* on use of %list, print out a silly message; suggestions welcome
* fixed: automatic nick collision workaround should work now
* fixed: crazy color coding should not break bot commands
Version 0.99.8:
* converted from the horribly ill-maintained Net::IRC module
to POE::Component::IRC, which is more robust and confusing
* fixed: no longer crashes when my network changes slightly
* fixme: known issue: bot will not quit gracefully.. investigating
Version 0.99.7:
* fixed: "0" not considered a word on the rhs, counting as NULL
* fixed: trailing smiley caused a counting error
* fixed: logic error in punctuation detection
* fixed: rare debug message had a bad variable reference
* added: %help, %version commands
Version 0.99.6 and earlier:
* add a stats function -DONE
* fixme: __BEGIN should never appear. -FIXED
* fixme: if no sentence to occur after a /me, repeats previous
sentences -FIXED
* accept .'s inside words -FIXED
Version 0.99.1:
* first version of SimBot written in Perl. This will make processing
text much, much cooler.