]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - ChangeLog
Fine tune and document 'permissions view' (auth core botmodule)
[user/henk/code/ruby/rbot.git] / ChangeLog
1 2006-09-01  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
2
3         * New Auth Framework: document and fine tune permissions view the auth
4         core botmodule.
5
6 2006-08-31  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
7
8         * Nickserv plugin: bot will now try to inform nickserv when password
9         is changed. Moreover it's not necessary to specify the nick anymore if
10         you want to change the password for the current bot nick. Also do some
11         internal cleanups while we're at it.
12
13 2006-08-29  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
14
15         * Script plugin: new (UNSAFE!) echo functions. Just like eval, but
16         m.replies the result of the evaluation.
17         * New Auth Framework: config keys now have their own permissions. So
18         you can allow people to view or edit only some of the config values.
19         auth.password defaults to false. Still needs some work.
20
21 2006-08-26  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
22
23         * Plugin message mapper: new implementation. Multi-word parameters now
24         need not be the last, and it is possible to retrieve the entire
25         substring with preserved whitespace by using to_s. Also, parts of the
26         map string can be bracketed to make them optional. Examples:
27                 remind :user [about] *stuff
28         will respond to
29                 remind me about washing my teeth
30         and also to
31                 remind me washing my teeth
32         It is possible to have parameters in brackets, in which case they will
33         be optional too, and default to nil or [] (resp. single- and
34         multi-word parameters) unless an alternative is provided in the
35         :defaults hash for the message map options.
36         * Script plugin: new (UNSAFE!) eval function. Not documented in help.
37         Not permitted by default.
38
39 2006-08-25 Mark Kretschmann <markey@web.de>
40
41         * Added quiz plugin, a multiplayer trivia quiz game.
42
43 2006-08-20  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
44
45         * Topic plugin: fix a bug that prevented it from loading
46         correctly.
47         * New IRC Framework: make sure that NOTICEs and PRIVMSGs do not
48         raise an exception when the target is in one of the special forms
49         #<mask> or $<mask>. Needs some work, though, since this case should be
50         handled specifically.
51
52 2006-08-17  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
53
54         * Fix help: It got broken while rearranging the plugin stuff, now it's
55         properly fixed.
56         * New Auth Framework: forgot to create the InvalidPassword exception.
57         It's a RuntimeError now.
58         * Fix help: this time for real (or so I hope).
59         * New IRC Framework: topic plugin now works correctly.
60         * New Auth Framework: nickserv plugin now defaults to false for its
61         auth, so that only owner can do stuff with it
62         * New Auth Framework: fix horrible typo, assignment instead of
63         equality test when checking for the username during login.
64         * Keywords plugin: tell and forget work again without 'keyword' before
65         them.
66
67 2006-08-12  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
68
69         * Subregistry: force prefix to be a String with to_s
70
71 2006-08-11  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
72
73         * AutoOp plugin: adapted to the new IRC framework.
74         * AutoOp plugin: trigger autoop on nick change too.
75         * New Auth Framework: allow? method now informs a user when they don't
76         have permission to do what they asked for.
77         * New nickreply and nickokay methods: they act like the old reply
78         method, but include the nick of the user the bot is replying to when
79         talking in public. The usual reply method can be configured to act
80         like this as default.
81
82 2006-08-10  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
83
84         * Fix a bug in new IRC Framework: the list of channels a quitting user was
85         on was not built correctly, causing an exception when the user was not
86         in the first channel in the list of channels.
87         * Fix a bug in new Auth Framework: BotUser's name is changed via
88         username=, not name=.
89         * New HalfLife 2 plugin from ocr: queries online servers for online
90         status and number of users.
91
92 2006-08-07  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
93
94         * Add kick method to kernel: plugins can now use
95                 @bot.kick channel, user, reason
96         to kick a user from a channel
97         * RSS plugin: fix rewatch_rss method
98         * RSS plugin: the different ways to represent channels before and
99         after the New IRC Framework was causing strange problems such as
100         watched feed not being listed as such, undeletable watches, double
101         watches etc. Fix this by checking both for the Channel objects and
102         their to_s form when checking for watches or deleting them.
103
104 2006-08-06  Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
105
106         * Updating the ChangeLog again: describe the new stuff in trunk which
107         will be made available in the next release. Use Gnu style for new
108         changelog entries (yyyy-mm-dd name <email address>\n<tab> ...):
109         there's a macro for this since at least Vim 6.x and higher, called by
110         <Leader>o (default leader: slash (\))
111         * New IRC Framework: Server, Channels, User, Netmasks etc are all
112         proper Ruby objects. The better organization will allow multi-server
113         connections to be implemented more easily
114         * Modularize core: split the internal functionality from what can be
115         implemented as botmodules (which work just the same as plugins). Move
116         Configuration, Basics and Auth out of the 'kernel' into core
117         botmodules.
118         * New Auth Framework: BotUsers are now Ruby objects with attached
119         PermissionSets which define what the BotUser can do, by channel if
120         necessary. The new framework allows very fine-grained control while
121         still being very easy to manage for elementary usage. BotUser data can
122         be exported and imported, but no backwards compatibility has been
123         implemented yet. Most plugins still have to be updated to the new
124         command-path-based mechanism.
125
126 Sun Aug 06 17:33:55 BST 2006  Tom Gilbert <tom@linuxbrit.co.uk>
127
128   * 0.9.10 released
129         * Changes: Lots of new and updated plugins, including one to poll RSS feeds.
130         A first step towards a better auth system (total revamp due in 0.9.11).
131         Improvements to network and server code which should provide greater
132         stability. A new message queueing mechanism with bitrate throttling. A new
133         logging framework for debugging and tracing the activities of the bot. A
134         new split-db registry system for better performance and transactional
135         usage of bdb for resilience. More integration with Nickserv where
136         available including optional automatic ghost-killing.
137
138 Wed Sep 07 20:16:46 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
139
140   * Fixed quit, broke it last commit
141         * Fixed trap() for win32
142
143 Sun Aug 21 13:29:55 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
144
145   * fix for bug in quakenet plugin (trac #14)
146         * multiple fixes for unescaped bot nick in regexp's (trac #13)
147
148 Fri Aug 12 20:51:38 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
149
150   * fix up autoop plugin a bit
151
152 Thu Aug 11 00:13:11 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
153
154   * Added two plugins from Robin Kearney <robin@riviera.org.uk>
155         * Threat (US threat level :P)
156         * bash (bash.org quotes)
157
158 Thu Aug 11 00:04:31 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
159
160   * Patches from "Alexey I. Froloff" <raorn@altlinux.ru>
161         * Do not use "/home/#{Etc.getlogin}/" for default home directory, use
162         "#{Etc.getpwnam(Etc.getlogin).dir}/" instead.
163         * Do not try to load same plugin from different locations.  Added ability
164         to disable system-wide plugins - create PLUGIN.rb.disabled in user's
165         plugins directory.
166         * For example, to disable freshmeat plugin installed in /usr/share/rbot/plugins/freshmeat.rb one can create empty file ~/.rbot/plugins/freshmeat.rb.disabled
167
168 Mon Aug 08 23:08:01 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
169
170   * new markov plugin for random inane chat
171
172 Sun Aug 07 18:20:24 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
173
174   * stop insult plugin being used to insult the bot
175
176 Sun Aug 07 17:53:06 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
177
178   * workaround for people without YAML::load_file
179         * quit message for restart
180
181 Sun Aug 07 15:11:07 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
182
183   * fix address_prefix, broken in 0.9.9, reported by ruskie.
184
185 Sat Aug 06 00:54:34 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
186
187   * Released 0.9.9
188
189 Fri Aug 05 23:55:20 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
190
191   * few more tweaks preparing to release 0.9.9
192
193 Thu Aug 04 23:03:30 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
194
195   * Improved ircd recognition of rfc2812.rb
196         * de-string'd, de-cap'd rfc2812.rb, looks less shouty now
197         * moved the Q auth stuff (for quakenet) into a new qauth plugin (untested!)
198         * finish fixing the httputil
199
200 Thu Aug 04 00:11:52 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
201
202   * Tweaked the debug() stuff a bit. Need to do this more cleanly really
203         * Added a fair bit of documentation for some of the new features
204
205 Wed Aug 03 15:25:07 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
206
207   * Added french language file (TODO most of the plugins just talk english)
208         * The way the Enum configs were set up, it wasn't possible to add language
209         files to rbot at runtime (the directory was only scanned at startup). Now
210         you can set a values Proc, which is called to return a list of allowed
211         values whenever it's queried.
212         * Added Config module for determining where we were installed.
213         Unfortunately rubygems is a total whore in this regard, and I hope the
214         current hackery I have to do to support it becomes redundant in the
215         future.
216
217 Wed Aug 03 00:31:41 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
218
219   * Added Rakefile, tweaked gemspec
220
221 Tue Aug 02 16:27:36 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
222
223   * Fixed the new http.proxy* settings, they work!
224         * Fixed a bug with auth-checking for the config module
225         * misc tweaks
226
227 Sun Jul 31 02:20:08 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
228
229   * Updated docgen to generate rdoc again with the new repo structure
230         * added new restart command to the core bot, quits irc and reexecs the
231         bot, to pick up new code/libraries etc.
232
233 Sat Jul 30 22:33:36 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
234
235   * Config items are now objects, various types are available.
236         * The config wizard will now use registered config items if :wizard is set
237     to true for those items. It will ask questions in the order they were
238                 registered.
239         * The config module now works for doing runtime configuration.
240         * misc refactoring
241
242 Sat Jul 30 01:19:32 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
243
244   * config module for configuring the running bot via IRC
245         * BotConfig.register method for various modules and any plugin to register
246         bot configuration which the new config module will expose for them.
247         * various other tweaks as I continue to refactor..
248
249 Fri Jul 29 13:07:56 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
250
251   * Moved some stuff out of util.rb into the plugins that actually need
252         them. Those methods didn't belong in util as they were plugin-specific.
253         * moved a few more plugins to use map() where appropriate
254         * made the url plugin only store unique urls
255
256 Thu Jul 28 23:45:26 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
257
258   * Reworked the Timer module. The Timer now has a smart thread manager to
259         start/stop the tick() thread. This means the timer isn't called every 0.1
260         seconds to see what needs doing, which is much more efficient
261   * reworked the ircsocket queue mechanism to use a Timer
262         * reworked the nickserv plugin to use maps
263         * made server.reconnect_wait configurable
264         * added Class tracing mechanism to bin/rbot, use --trace Classname for
265         debugging
266
267 Tue Jul 26 14:41:34 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
268
269   * Prevent multiple plugin registrations of the same name
270         * reworking the config system to use yaml for persistence
271         * reworking the config system key names
272         * on first startup, the bot will prompt for the essential startup config
273         * new config module for configuring the bot at runtime
274         * new config module includes new configurables, for example changing the
275         bot's language at runtime.
276         * various other fixes
277         * New way of mapping plugins to strings, using maps. These may be
278         familiar to rails users. This is to reduce the amount of regexps plugins
279         currently need to do to parse arguments. The old method (privmsg) is still
280         supported, of course. Example plugin now:
281           def MyPlugin < Plugin
282                   def foo(m, params)
283                           m.reply "bar"
284                         end
285
286                         def complexfoo(m, params)
287                           m.reply "qux! (#{params[:bar]} #{params[:baz]})"
288                         end
289                 end
290                 plugin = MyPlugin.new
291                 # simple map
292                 plugin.map 'foo'
293
294     # this will match "rbot: foo somestring otherstring" and pass the
295                 # parameters as a hash using the names in the map.
296                 plugin.map 'foo :bar :baz', :action => 'complexfoo'
297                 # this means :foo is an optional parameter
298                 plugin.map 'foo :foo', :defaults => {:foo => 'bar'}
299     # you can also gobble up into an array
300                 plugin.map 'foo *bar' # params[:bar] will be an array of string elements
301     # and you can validate, here the first param must be a number
302                 plugin.map 'foo :bar', :requirements => {:foo => /^\d+$/}
303
304
305 Sat Jul 23 01:39:08 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
306
307   * Changed BotConfig to use yaml storage, method syntax instead of hash for
308         get/set, to allow more flexibility and encapsulation
309         * Added convenience method Message.okay (m.okay is the same as the
310         old-style @bot.okay m.replyto)
311
312 Wed Jul 20 23:30:01 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
313
314   * Move some core plugins to use the new httputil
315         * fix wserver's redirection handling for relative (i.e. broken) redirects
316         * fix tube plugin's html parsing
317
318 Wed Jul 20 01:18:06 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
319
320         * Add new httputil object to the bot object, to be used by plugins etc
321         that wish to make http requests. It sets up all the proxies etc for them
322         according to bot config.
323
324 Sat Jul 16 02:23:13 BST 2005  Tom Gilbert <tom@linuxbrit.co.uk>
325
326   * Apply most of Rene's patch and fix various plugins.
327         * New plugin: autoop (auto ops via hostmask)
328         * New feature: karmastats
329
330 Wed Oct 13 16:16:31 BST 2004  Tom Gilbert <tom@linuxbrit.co.uk>
331
332   * Fix bug with quotes plugin where it gets confused and sees both a quote
333   and a keyword, both plugins are triggered by, for example "addquote foo is
334   bar"
335   * fixed this by implementing the "has_responded" flag on a message. When a
336   plugin replied to a message (or it manually sets m.replied to true), the
337   keywords plugin will honour that flag and not examine the message for
338   keywords. This flag can also be checked by listen plugins that don't want to
339   interfere with other plugin commands.
340
341 Mon Oct 11 00:37:52 BST 2004  Tom Gilbert <tom@linuxbrit.co.uk>
342
343   * Fixes to the NickServ plugin
344
345 Sat Oct 09 23:23:24 BST 2004  Tom Gilbert <tom@linuxbrit.co.uk>
346
347   * Keyword searching
348
349 Fri Oct 08 00:40:07 BST 2004  Tom Gilbert <tom@linuxbrit.co.uk>
350
351   * fixed insult plugin
352   * fixed excuse plugin
353
354 Thu Oct 07 23:28:05 BST 2004  Tom Gilbert <tom@linuxbrit.co.uk>
355
356   * searching for urls in the url plugin
357   * roshambo (rock/paper/scissors) plugin from Hans Fugal <hans@fugal.net>
358
359 Sat Apr 17 20:56:50 BST 2004  Tom Gilbert <tom@linuxbrit.co.uk>
360
361   * Oh, found new tv plugin in my inbox from ages ago, but it's still not
362   working so I guess it changed again since then
363   * New eightball plugin from Daniel Free
364
365 Sat Apr 17 20:44:43 BST 2004  Tom Gilbert <tom@linuxbrit.co.uk>
366
367   * Fixed the babelfish parser so translate works again.
368   * Misc other fixes
369   * Note some plugins are broken (excuse,insult) because the server they use
370     went away. I don't know of a replacement right now.
371   * tv plugin seems broken, perhaps the html changed.
372
373 Thu Jan 15 21:37:38 GMT 2004  Tom Gilbert <tom@linuxbrit.co.uk>
374
375   * Fixes for ruby 1.8
376
377 0.9.8
378 * new plugin from Alan Third <alan@idiocy.org>, allows you to search and list
379   UK TV programmes.
380
381 0.9.7
382 * various plugin updates
383 * fix (again) for C to F temp conversion in weather plugin
384 * channel topic patch from Peter Suschlik, gives plugin better access to topic
385   changes and related information
386
387 0.9.6
388 * changes to layout of slashdot plugin output
389 * freshmeat plugin, show latest updates or search
390 * fix to C to F temp conversion in weather plugin
391 * status command returns some bot status
392 * fortune plugin
393 * using BDB::Btree everywhere now, instead of BDB::Hash, because the Btree api
394   allows me to set my own key comparison function. This is needed to keep
395   supporting case insensitivity (vital for IRC), which was sadly broken in
396   0.9.5 :( All existing dbs will be upgraded automatically.
397 * roulette plugin - play russian roulette :) also keeps game stats.
398 * new config option, NO_KEYWORD_ADDRESS. If set to "true", the bot will always
399   respond to keywords it knows even when not addressed and the message doesn't
400   start with '. Message must end with "?" however.
401 * hopefully fixed welcome message parsing from certain server types
402
403 0.9.5
404 * plugin object registry
405   This provides persistant storage for plugins via a hash interface. The
406   default mode is an object store, so you can store ruby objects and reference
407   them with hash keys. This is because the default store/restore methods of
408   the plugins' RegistryAccessor are calls to Marshal.dump and Marshal.restore,
409   for example:
410     blah = Hash.new
411     blah[:foo] = "fum"
412     @registry[:blah] = blah
413   then, even after the bot is shut down and disconnected, on the next run you
414   can access the blah object as it was, with:
415     blah = @registry[:blah]
416   The registry can of course be used to store simple strings, fixnums, etc as
417   well, and should be useful to store or cache plugin data or dynamic plugin
418   configuration. 
419
420   If you don't need to store objects, and strictly want a persistant hash of
421   strings, you can override the store/restore methods to suit your needs, for
422   example (in your plugin):
423     def initialize
424       class << @registry
425         def store(val)
426           val
427         end
428         def restore(val)
429           val
430         end
431       end
432     end
433   Your plugins section of the registry is private, it has its own namespace
434   (derived from the plugin's class name, so change it and lose your data).
435   Calls to registry.each etc, will only iterate over your namespace.
436
437   The nickserv and karma plugins use the new registry and should serve as a
438   useful example. Basic usage of the registry is simple, just treat it as a
439   hash, with values that never die (unless you delete() them).
440 * Change to the nickserv plugin. The old method of putting the nickserv
441   password in rbot.conf was useless for multiple nicks or easy updates. The
442   plugin now uses the plugin registry to store passwords for any nicks it
443   owns. The plugin can be told to register the current nick (supply a password
444   or it'll generate one), identify for the current nick (if the password is
445   known), and can be told the passwords for other nicks. If NickServ asks the
446   bot to identify, it will automatically do so if it knows the appropriate
447   password.
448 * karma plugin now uses the plugin registry, it should automatically import
449   your existing, stored karma data into the registry.
450 * The babelfish plugin now caches results in the bot registry to speed up
451   common lookups.
452 * New message types and plugin methods to grab them,
453   quit(QuitMessage):   Called when a user (or the bot) quits IRC
454   nick(NickMessage):   Called when a user (or the bot) changes Nick
455   topic(TopicMessage): Called when a user (or the bot) changes a channel topic
456 * A plugin's listen() method will now receive any kind of Message, e.g.
457   PrivMessage, NoticeMessage, NickMessage, JoinMessage, etc
458 * New plugins:
459   seen: the usual "seen" stuff: 
460         rbot: seen giblet?
461         giblet was last seen xxx ago doing xxx
462   cal:  calls the unix cal program to display a calendar
463   math: evaluates mathematical expressions:
464         rbot: math 2+2
465         rbot: math 4 to the power of 8
466         rbot: math ((232+432) - 4) / 2
467         (ported from infobot. Thanks to Kevin Lenzo, who wrote the
468         original infobot math module)
469   slashdot: displays latest headlines or searches for articles
470   url:  stores urls mentioned in channels for regurgitation later
471   weather: grabs and parses METAR weather data, will remember the last weather
472            code you asked for so you don't have to :)
473 * New utility function, Util.http_get(url) for getting remote data via http,
474   just dumps response.body into a string and returns it, or nil if anything at
475   all goes wrong. Useful for simple plugins.
476 * random quit messages if none specified, messages set in language description
477   file
478 * keywords are now stored in bdb databases - your old keywords.rbot will be
479   imported. Static keywords (fact packs) are also stored in bdb databases, and
480   rbot will automatically convert any text .fact file dropped in the confdir's
481   keywords subdirectory, at startup, into a bdb file. If both a db and a text
482   file exist of the same name (except the extension), the text file will be
483   imported and merged into the database.
484   static keywords will be looked up in each factpack db in turn, in
485   alphabetical filename order - so you can prioritise using the filename if
486   you wish.
487 * fixed a bug with autsplitting long sent lines, the last line was often being
488   split unnecessarily.
489
490 0.9.4
491 * Massive cleanup of rfc2812.rb, contributed by Lars Christensen
492   <dsl8950@vip.cybercity.dk>, gets rid of a lot of regexps
493 * Fixed bug reading static keyword files - "foo <=is=> bar" may not have
494   worked for a couple of releases, only "foo<=is=>bar" was working - this was
495   not intended and should be fixed now
496 * Experimental send queue, to prevent the bot from flooding out, the delay
497   between sending messages to the server defaults to 2s, but is configurable
498   in conf.rbot, set SENDQ_DELAY (0 to disable queueing). You can also set/get
499   the value from the bot, "rbot: options get sendq_delay", and 
500   "rbot: options set sendq_delay 1.5", if you have sufficient auth for "config"
501   This is a bursting sendq, most ircd's allow bursts of up to 5
502   lines, with non-burst limits of 512 bytes/2 seconds. To set the burst limit,
503   configure SENDQ_BURST in conf.rbot, or do the same kind of stuff with
504   "rbot: options set sendq_burst 2", etc.
505   The defaults are 2s/4 burst, which seem to work okay for me.
506 * support for multiple, customisable, addressing prefixes. Set ADDRESS_PREFIX
507   in conf.rbot to a space separate list of addressing prefixes, e.g
508   ADDRESS_PREFIX = | ! =>
509   Would mean that all of the following in channel messages would cause the bot
510   to respond:
511               rbot: version
512               |version
513               !version
514               =>version
515 * bb plugin removed, bb is nearly over and it doesn't work 100% anyway
516 * Two plugins from brailsmt (from #ruby-lang on openprojects), a stats plugin
517   which monitors usage of 1-word sentences, and lart, which allows you to ask
518   rbot to lart people - with an optional reason - larts are user-definable and
519   can be added on the fly.
520 * made google.rb work for people with 1.6 ruby's net/http
521
522 0.9.3
523
524 * fix quit messages
525 * new plugin for handling nickserv-protected nicks, use NICKSERV_PASSWORD in
526   the config file.
527 * fixes to a few other buglets
528 * new plugin to grab bigbrother headlines, still buggy and only useful for UK
529   folks who love bb :-)
530 * fixes to various plugins
531 * Patch from akira yamada <akira@ruby-lang.org>
532   DNS plugin: Use resolv-replace if found, do lookup in new thread
533   Fix bug joining channels with keys
534
535 0.9.2
536
537 * better "connect failure" error message
538 * better option parsing, and --debug option
539 * access to bot's online help via commandline, eg:
540   ./rbot.rb --help
541   ./rbot.rb --help core
542   ./rbot.rb --help "core save"
543 * Fix broken help from last point release
544 * Plugin API modification and cleanup. You no longer need to set @listen to
545   true in order to get all NOTICE and PRIVMSGs, you just need to define the
546   method. The method is now called listen(), renamed from listener(). This
547   should be the last time the plugin api is changed incompatibly.
548 * New plugin method kick(). Use it to see kicks (duh :))
549 * New plugin methods join(), part(). Obvious uses.
550 * Example plugin autorejoin.rb, uses kick event to rejoin channel and insult
551   kicker
552 * fix bug in remind plugins "remind me no more" recognition.
553
554 0.9.1
555
556 * Fix welcome message recognition for certain IRCd's.
557
558 0.9
559
560 * Allow keyword definitions which end in '?', like this:
561   bot: foo is bar\?
562 * rdoc documentation!
563 * fixed broken address regexp, "rbot: .foo" was being treated as an addressed
564   form of "foo" (lost the .)
565 * fix stupid bug in last release (looking for wrong default conf dir)
566
567 0.8
568
569 * Tarball layout change. modules all in rbot/ now, and the rbot/ default
570   configuration moved to rbotconf/. This lets the thing run from an unpacked
571   tarball while also being ready to run with the modules installed somewhere
572   else.
573 * change hashbang to /usr/bin/env ruby, in order to use PATH looking for ruby,
574   it's BSD friendly!
575 * allow "botnick : foo" style addressing, and even "botnick... foo"
576 * slap plugin (contributed by oct)
577 * renamed bot.send to bot.sendmsg, I didn't really want to override send() ;D
578   (thanks Kero)
579
580 0.7.1
581 * Made sane for packagers. Looks in the right places for plugins and language
582   files now, so extra effort shouldn't be needed there.
583
584 0.7
585
586 * Fixed "nick taken on join" bug
587 * Dice plugin patch from David Dorward
588 * fix searchquote regexp
589 * conf.rbot: PASSWORD -> SERVER_PASSWORD, to prevent confusion with PASSWD,
590   which is for master auth.
591
592 0.6
593
594 * Fixed addquote (was incrementing quote ID twice)
595 * now strips colour/bold escapes from incoming messages (rbot was ignoring
596   messages addressed using a bolded colon, for example).
597 * minor bugfixes
598 * more language breadth
599 * Addressing works better now
600 * Can autojoin channels with keys, conf.rbot line is:
601   autojoin_channels #chan1, #chan2, #chan3 key, #chan4 key, #chan5
602 * dice plugin fixes
603
604 0.5
605
606 * Initial release