From cca1483bc1eaba8718a1370abf44f8b0b53b181b Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 13 Sep 2004 01:06:06 +0000 Subject: [PATCH] Updated. --- ChangeLog | 4 ++++ RELNOTES | 7 +++++++ TODO | 12 +++++++----- scripts/supybot | 2 +- setup.py | 2 +- src/conf.py | 2 +- 6 files changed, 21 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index a4379dd82..0acd1aeb6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-09-12 Jeremy Fincher + + * Version 0.80.0pre1! + * Added the facility to supporting several different database implementations in a plugin, allowing the user to specify which databases are supported as well as in what order of preference. diff --git a/RELNOTES b/RELNOTES index 5099b93fc..9855b8f75 100644 --- a/RELNOTES +++ b/RELNOTES @@ -1,3 +1,10 @@ +Version 0.80.0pre1 + +Tons of bugs fixed, many features and plugins added. Everything +should be entirely compatible; many more configuration variables have +been added. + + Version 0.79.9999 Some more bugs fixed, added a few features and a couple configuration diff --git a/TODO b/TODO index 9fc19329c..dd64dfef8 100644 --- a/TODO +++ b/TODO @@ -1,9 +1,13 @@ Roughly in order of precedence (the closer to the front of the file, the more likely it'll be done before next release): -* Update the database infrastructure to allow other RDBMSes. +* We need to store the key for channels in the registry and have an + easy way for plugins to send joins to channels based on their + registry configuration. -* Improved (and perhaps integrated) Services and Enforcer plugins. +* We need to note when bans expire on a channel and send the unban, + that way plugins can use the ircdb ban stuff and not worry about + sending or scheduling unbans. * Filters need to be added to the logs during testing so many logs (useless during testing) won't occur. @@ -12,12 +16,10 @@ the more likely it'll be done before next release): compatible with Eggdrop, since we've been replacing many eggdrop bots lately. -* Config.list should prefix ChannelValues with #. - * We should be able to set the log level for plugins individually. * Rbot has a "remind" plugin that seems pretty cool, we should get - one as well. + one as well. It might do well as a command in the Later plugin. * MozBot has a "list" plugin that seems pretty cool, we should get one as well. diff --git a/scripts/supybot b/scripts/supybot index 18ee8302b..bfeaf7b25 100755 --- a/scripts/supybot +++ b/scripts/supybot @@ -130,7 +130,7 @@ if __name__ == '__main__': # --connect (commands to run afterConnect) # --config (configuration values) parser = optparse.OptionParser(usage='Usage: %prog [options] configFile', - version='supybot 0.79.9999+cvs') + version='supybot 0.80.0pre1') parser.add_option('-P', '--profile', action='store_true', dest='profile', help='enables profiling') parser.add_option('-O', action='count', dest='optimize', diff --git a/setup.py b/setup.py index 917431a15..7ba0deda2 100644 --- a/setup.py +++ b/setup.py @@ -82,7 +82,7 @@ if clean: setup( # Metadata name='supybot', - version='0.79.9999+cvs', + version='0.80.0pre1', author='Jeremy Fincher', url='http://supybot.sf.net/', author_email='jemfinch@users.sf.net', diff --git a/src/conf.py b/src/conf.py index 622c98388..0f3c00f1f 100644 --- a/src/conf.py +++ b/src/conf.py @@ -50,7 +50,7 @@ _pluginsDir = os.path.join(installDir, 'plugins') ### # version: This should be pretty obvious. ### -version ='0.79.9999+cvs' +version ='0.80.0pre1' ### # *** The following variables are affected by command-line options. They are