mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-02 07:34:08 +01:00
0.80.0pre2
This commit is contained in:
parent
57d257078a
commit
fb569b4ff4
26
ChangeLog
26
ChangeLog
@ -1,3 +1,29 @@
|
|||||||
|
2004-09-17 James Vega <jamessan@users.sf.net>
|
||||||
|
|
||||||
|
* Version 0.80.0pre2!
|
||||||
|
|
||||||
|
* Added supybot.plugins.Google.colorfulSnarfer, which determines
|
||||||
|
whether the word 'google' in the bot's output will be made colorful
|
||||||
|
(like Google's logo).
|
||||||
|
|
||||||
|
* Added the Time plugin, to hold all of our Time related commands.
|
||||||
|
|
||||||
|
* Added max() and min() to Math.calc.
|
||||||
|
|
||||||
|
* Added Unix.pid, which allows the Owner to retrieve the pid of the
|
||||||
|
bot's process.
|
||||||
|
|
||||||
|
* Added supybot.plugins.Sourceforge.enableSpecificTrackerCommands,
|
||||||
|
which enables the rfe, bug, and patch commands.
|
||||||
|
|
||||||
|
* Added Topic.topic, which returns the current topic of the channel.
|
||||||
|
|
||||||
|
* Updated conf.Databases to use a more sane database ordering and
|
||||||
|
include anydbm.
|
||||||
|
|
||||||
|
* Updated various plugins to use our new-style database abstraction.
|
||||||
|
Plugin databases using this new-style will be named Plugin.dbtype.db.
|
||||||
|
|
||||||
2004-09-12 Jeremy Fincher <jemfinch@supybot.org>
|
2004-09-12 Jeremy Fincher <jemfinch@supybot.org>
|
||||||
|
|
||||||
* Version 0.80.0pre1!
|
* Version 0.80.0pre1!
|
||||||
|
8
RELNOTES
8
RELNOTES
@ -1,3 +1,11 @@
|
|||||||
|
Version 0.80.0pre2
|
||||||
|
|
||||||
|
Many more bugs have been fixed. A few more plugins have been updated
|
||||||
|
to use our new-style database abstraction. If it seems like your
|
||||||
|
databases are suddenly empty, look for a new database file named
|
||||||
|
Plugin.dbtype.db. We've also added a few more configuration variables.
|
||||||
|
|
||||||
|
|
||||||
Version 0.80.0pre1
|
Version 0.80.0pre1
|
||||||
|
|
||||||
Tons of bugs fixed, many features and plugins added. Everything
|
Tons of bugs fixed, many features and plugins added. Everything
|
||||||
|
@ -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.80.0pre1')
|
version='supybot 0.80.0pre2')
|
||||||
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',
|
||||||
|
2
setup.py
2
setup.py
@ -82,7 +82,7 @@ if clean:
|
|||||||
setup(
|
setup(
|
||||||
# Metadata
|
# Metadata
|
||||||
name='supybot',
|
name='supybot',
|
||||||
version='0.80.0pre1',
|
version='0.80.0pre2',
|
||||||
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',
|
||||||
|
@ -50,7 +50,7 @@ _pluginsDir = os.path.join(installDir, 'plugins')
|
|||||||
###
|
###
|
||||||
# version: This should be pretty obvious.
|
# version: This should be pretty obvious.
|
||||||
###
|
###
|
||||||
version ='0.80.0pre1'
|
version ='0.80.0pre2'
|
||||||
|
|
||||||
###
|
###
|
||||||
# *** The following variables are affected by command-line options. They are
|
# *** The following variables are affected by command-line options. They are
|
||||||
|
Loading…
Reference in New Issue
Block a user