mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-22 18:39:31 +01:00
Updated for the new release.
This commit is contained in:
parent
7c3092ac94
commit
39855b85c8
50
ChangeLog
50
ChangeLog
@ -1,3 +1,53 @@
|
||||
2004-08-31 Jeremy Fincher <jemfinch@supybot.org>
|
||||
|
||||
* Version 0.79.999!
|
||||
|
||||
* Added the ability to send long fortunes line-by-line rather
|
||||
than all in one (or several) messages; it will do this if
|
||||
supybot.reply.oneToOne is set to False.
|
||||
|
||||
* Added many configuration variables to the Unix plugin, allowing
|
||||
configurable commands and options to those commands.
|
||||
|
||||
* Changed the output of Config.list to show groups with a
|
||||
preceding @, rather than use the --groups option.
|
||||
|
||||
* Changed the Google.stats (formerly Google.info) command to be
|
||||
persistent, using the registry to record old values for the
|
||||
number of searches made and the number of seconds Google has
|
||||
spent searching for the bot.
|
||||
|
||||
* Added module __revision__ logging to our exception logs, for
|
||||
more information in bug reports.
|
||||
|
||||
* Fixed a bug with asyncoreDrivers' handling of reconnects; it
|
||||
would not reconnect when commanded to if it had reconnected
|
||||
before.
|
||||
|
||||
* Fixed several bugs where the bot was testing nicks for
|
||||
equivalence without first normalizing them, leading to some false
|
||||
negatives.
|
||||
|
||||
* Fixed a bug with the handling of
|
||||
supybot.reply.withNoticeWhenPrivate so all private messages
|
||||
really are replied to with a notice.
|
||||
|
||||
* Fixed Http.geekquote to match the current bash.org layout.
|
||||
Also, made sure all ids are valid ids before requesting a quote
|
||||
(apparently bash.org is returning a certain quote for all invalid
|
||||
ids).
|
||||
|
||||
* Fixed a bad regular expression in the Ebay plugin which could
|
||||
cause the bot to suck up 100% CPU for a signficant (perhaps
|
||||
practically infinite) amount of time.
|
||||
|
||||
* Fixed a bug where the bot would sometimes reconnect to a
|
||||
network after being told to disconnect.
|
||||
|
||||
* Fixed an uncaught exception in Owner.connect when the user
|
||||
forgets the network name
|
||||
|
||||
|
||||
2004-08-30 Jeremy Fincher <jemfinch@supybot.org>
|
||||
|
||||
* Version 0.79.99! We're getting asymptotically closer to
|
||||
|
6
RELNOTES
6
RELNOTES
@ -1,3 +1,9 @@
|
||||
Version 0.79.999
|
||||
|
||||
Some bugs fixed, but the ones that were fixed were pretty big. This
|
||||
is, of course, completely compatible with the last release.
|
||||
|
||||
|
||||
Version 0.79.99
|
||||
|
||||
Many bugs fixed, thanks to the users who reported them. We're
|
||||
|
@ -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.99')
|
||||
version='supybot 0.79.999')
|
||||
parser.add_option('-P', '--profile', action='store_true', dest='profile',
|
||||
help='enables profiling')
|
||||
parser.add_option('-O', action='count', dest='optimize',
|
||||
|
2
setup.py
2
setup.py
@ -82,7 +82,7 @@ if clean:
|
||||
setup(
|
||||
# Metadata
|
||||
name='supybot',
|
||||
version='0.79.99',
|
||||
version='0.79.999',
|
||||
author='Jeremy Fincher',
|
||||
url='http://supybot.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 ='0.79.99'
|
||||
version ='0.79.999'
|
||||
|
||||
###
|
||||
# *** The following variables are affected by command-line options. They are
|
||||
|
Loading…
Reference in New Issue
Block a user