mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-30 14:59:34 +01:00
Merge remote-tracking branch 'progval/testing' into l10n-fi
This commit is contained in:
commit
e02104edf1
@ -107,7 +107,7 @@ class Ctcp(callbacks.PluginRegexp):
|
|||||||
"\x01SOURCE\x01"
|
"\x01SOURCE\x01"
|
||||||
self.log.info('Received CTCP SOURCE from %s', msg.prefix)
|
self.log.info('Received CTCP SOURCE from %s', msg.prefix)
|
||||||
self._reply(irc, msg,
|
self._reply(irc, msg,
|
||||||
'SOURCE http://www.sourceforge.net/projects/supybot/')
|
'SOURCE https://github.com/ProgVal/Limnoria')
|
||||||
|
|
||||||
def doNotice(self, irc, msg):
|
def doNotice(self, irc, msg):
|
||||||
if ircmsgs.isCtcp(msg):
|
if ircmsgs.isCtcp(msg):
|
||||||
|
@ -1 +1,7 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
This will increase or decrease karma for the item.
|
||||||
|
|
||||||
|
If "config plugins.karma.allowUnaddressedKarma" is set to true, saying "boats++" will give 1 karma to "boats", and "ships--" will subtract 1 karma from "ships".
|
||||||
|
|
||||||
|
However, if you use this in a sentence, like "That deserves a ++. Kevin++", 1 karma will be added to "That deserves a ++. Kevin", so you should only add or subtract karma in a line that doesn't have anything else in it.
|
||||||
|
|
||||||
|
If "config plugins.karma.allowUnaddressedKarma" is set to false, you must use "botname: bots++" to add or subtract karma.
|
||||||
|
@ -60,11 +60,11 @@ class SqliteKarmaDB(object):
|
|||||||
if filename in self.dbs:
|
if filename in self.dbs:
|
||||||
return self.dbs[filename]
|
return self.dbs[filename]
|
||||||
if os.path.exists(filename):
|
if os.path.exists(filename):
|
||||||
db = sqlite3.connect(filename)
|
db = sqlite3.connect(filename, check_same_thread=False)
|
||||||
db.text_factory = str
|
db.text_factory = str
|
||||||
self.dbs[filename] = db
|
self.dbs[filename] = db
|
||||||
return db
|
return db
|
||||||
db = sqlite3.connect(filename)
|
db = sqlite3.connect(filename, check_same_thread=False)
|
||||||
db.text_factory = str
|
db.text_factory = str
|
||||||
self.dbs[filename] = db
|
self.dbs[filename] = db
|
||||||
cursor = db.cursor()
|
cursor = db.cursor()
|
||||||
|
@ -1 +1,5 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
Allows the use of the Luser Attitude Readjustment Tool on someone or something.
|
||||||
|
Example:
|
||||||
|
If you add 'slaps $who'.
|
||||||
|
Someone says '@lart ChanServ'.
|
||||||
|
* bot slaps ChanServ
|
@ -1 +1,2 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
This will set a limit on the channel based on plugins.Limiter.MaximumExcess plus the current number of users in the channel.
|
||||||
|
This is useful to prevent flood attacks.
|
@ -1 +1 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
This plugin provides a calculator, converter, a listo of units and other useful math functions.
|
||||||
|
@ -1 +1 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
Allows connecting, reconnecting, display the bot's latency between the server and other useful network-related commands.
|
@ -1 +1 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
This allows the bot to regain access to it's configured nick.
|
||||||
|
@ -1 +1 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
Will tell you how lame a nick is by the command '@nickometer [nick]'.
|
@ -1 +1 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
Allows you to send notes to other users.
|
@ -1 +1 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
This plugin allows you to see the plugins, which plugin a command belongs to, you can find out who the author of the command is and who contributed to it.
|
@ -1 +1 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
This plugin allows you to quickly download and install a plugin from other repositories.
|
@ -1 +1,5 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
Allows someone to praise someone or something.
|
||||||
|
Example:
|
||||||
|
If you add 'hugs $who'.
|
||||||
|
Someone says '@praise ChanServ'.
|
||||||
|
* bot hugs ChanServ
|
@ -1 +1 @@
|
|||||||
Insert a description of your plugin here, with any notes, etc. about using it.
|
This plugin allows you to add quotes to the database for the channel.
|
@ -1,3 +1,3 @@
|
|||||||
"""stick the various versioning attributes in here, so we only have to change
|
"""stick the various versioning attributes in here, so we only have to change
|
||||||
them once."""
|
them once."""
|
||||||
version = '0.83.4.1+limnoria (2011-09-02T20:03:44+0000)'
|
version = '0.83.4.1+limnoria (2011-09-11T20:13:20+0200)'
|
||||||
|
Loading…
Reference in New Issue
Block a user