This commit is contained in:
Jeremy Fincher 2004-09-13 01:06:06 +00:00
parent 59d084abef
commit cca1483bc1
6 changed files with 21 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2004-09-12 Jeremy Fincher <jemfinch@supybot.org>
* Version 0.80.0pre1!
* Added the facility to supporting several different database * Added the facility to supporting several different database
implementations in a plugin, allowing the user to specify which implementations in a plugin, allowing the user to specify which
databases are supported as well as in what order of preference. databases are supported as well as in what order of preference.

View File

@ -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 Version 0.79.9999
Some more bugs fixed, added a few features and a couple configuration Some more bugs fixed, added a few features and a couple configuration

12
TODO
View File

@ -1,9 +1,13 @@
Roughly in order of precedence (the closer to the front of the file, Roughly in order of precedence (the closer to the front of the file,
the more likely it'll be done before next release): 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 * Filters need to be added to the logs during testing so many logs
(useless during testing) won't occur. (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 compatible with Eggdrop, since we've been replacing many eggdrop
bots lately. bots lately.
* Config.list should prefix ChannelValues with #.
* We should be able to set the log level for plugins individually. * We should be able to set the log level for plugins individually.
* Rbot has a "remind" plugin that seems pretty cool, we should get * 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 * MozBot has a "list" plugin that seems pretty cool, we should get
one as well. one as well.

View File

@ -130,7 +130,7 @@ if __name__ == '__main__':
# --connect (commands to run afterConnect) # --connect (commands to run afterConnect)
# --config (configuration values) # --config (configuration values)
parser = optparse.OptionParser(usage='Usage: %prog [options] configFile', 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', parser.add_option('-P', '--profile', action='store_true', dest='profile',
help='enables profiling') help='enables profiling')
parser.add_option('-O', action='count', dest='optimize', parser.add_option('-O', action='count', dest='optimize',

View File

@ -82,7 +82,7 @@ if clean:
setup( setup(
# Metadata # Metadata
name='supybot', name='supybot',
version='0.79.9999+cvs', version='0.80.0pre1',
author='Jeremy Fincher', author='Jeremy Fincher',
url='http://supybot.sf.net/', url='http://supybot.sf.net/',
author_email='jemfinch@users.sf.net', author_email='jemfinch@users.sf.net',

View File

@ -50,7 +50,7 @@ _pluginsDir = os.path.join(installDir, 'plugins')
### ###
# version: This should be pretty obvious. # 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 # *** The following variables are affected by command-line options. They are