mirror of
https://github.com/progval/Limnoria.git
synced 2025-04-27 05:21:09 -05:00
0.79.9999
This commit is contained in:
parent
26bb2335f3
commit
2df9642eb2
51
ChangeLog
51
ChangeLog
@ -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>
|
2004-08-31 Jeremy Fincher <jemfinch@supybot.org>
|
||||||
|
|
||||||
* Version 0.79.999!
|
* Version 0.79.999!
|
||||||
@ -1027,4 +1077,3 @@
|
|||||||
last_seen TIMESTAMP,
|
last_seen TIMESTAMP,
|
||||||
last_msg TEXT
|
last_msg TEXT
|
||||||
);
|
);
|
||||||
|
|
||||||
|
7
RELNOTES
7
RELNOTES
@ -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
|
Version 0.79.999
|
||||||
|
|
||||||
Some bugs fixed, but the ones that were fixed were pretty big. This
|
Some bugs fixed, but the ones that were fixed were pretty big. This
|
||||||
|
@ -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.999+cvs')
|
version='supybot 0.79.9999')
|
||||||
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.79.999+cvs',
|
version='0.79.9999',
|
||||||
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.79.999+cvs'
|
version ='0.79.9999'
|
||||||
|
|
||||||
###
|
###
|
||||||
# *** The following variables are affected by command-line options. They are
|
# *** The following variables are affected by command-line options. They are
|
||||||
|
Loading…
x
Reference in New Issue
Block a user