0.79.9999

This commit is contained in:
James Vega 2004-09-06 16:19:45 +00:00
parent 26bb2335f3
commit 2df9642eb2
5 changed files with 116 additions and 60 deletions

View File

@ -1,3 +1,53 @@
2004-09-06 James Vega <jamessan@users.sf.net>
* Version 0.79.9999!
* Added stripFormatting option to ChannelLogger plugin, which
determines whether non-printable formatting characters are logged.
* Added Sourceforge.patches command to complement the current bugs
and rfes commands.
* Added abs() to Math.calc.
* Improved the interface for Config.list. Now groups and values
are listed, with groups being denoted by a leading @.
* Improved Config.config such that the user can specify the entire
config variable name (conf.supybot....).
* Fixed a bug where ChannelLogger wouldn't log ignored nicks.
* Fixed an incorrect path in INSTALL.
* Fixed some missing imports in Unix's configure method.
* Fixed a bug where an owner could publically retrieve a private
configuration variable.
* Fixed an exception when trying to remove non-existent Heralds.
* Fixed an exception in RSS.getHeadlines.
* Fixed a couple bugs in Poll, when retrieving the Poll id.
* Fixed a problem with trying to use socket.inet_pton under
Windows; Python doesn't build their Win32 port with IPV6 support,
so we have to brute-force IPV6 detection.
* Fixed a few bugs with how Infobot handled the SQLite db.
* Fixed others/convertcore.py so that liter-based units are
properly capitalized (L not l) and use 1000 as the conversion rate
for MB, KB, etc. since MiB, KiB, etc. are also known units.
* Fixed a bug where Infobot would confirm an unaddressed factoid
definition.
* Fixed a problem where Google.stats didn't keep track of all
searches.
2004-08-31 Jeremy Fincher <jemfinch@supybot.org>
* Version 0.79.999!
@ -1027,4 +1077,3 @@
last_seen TIMESTAMP,
last_msg TEXT
);

View File

@ -1,3 +1,10 @@
Version 0.79.9999
Some more bugs fixed, added a few features and a couple configuration
variabless. This should hopefully be the last release before 0.80.0,
which will finally bring us to pure Beta status.
Version 0.79.999
Some bugs fixed, but the ones that were fixed were pretty big. This

View File

@ -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.999+cvs')
version='supybot 0.79.9999')
parser.add_option('-P', '--profile', action='store_true', dest='profile',
help='enables profiling')
parser.add_option('-O', action='count', dest='optimize',

View File

@ -82,7 +82,7 @@ if clean:
setup(
# Metadata
name='supybot',
version='0.79.999+cvs',
version='0.79.9999',
author='Jeremy Fincher',
url='http://supybot.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 ='0.79.999+cvs'
version ='0.79.9999'
###
# *** The following variables are affected by command-line options. They are