diff --git a/plugins/Ctcp/plugin.py b/plugins/Ctcp/plugin.py index 94dc3e2ed..57cca6c1f 100644 --- a/plugins/Ctcp/plugin.py +++ b/plugins/Ctcp/plugin.py @@ -107,7 +107,7 @@ class Ctcp(callbacks.PluginRegexp): "\x01SOURCE\x01" self.log.info('Received CTCP SOURCE from %s', msg.prefix) self._reply(irc, msg, - 'SOURCE http://www.sourceforge.net/projects/supybot/') + 'SOURCE https://github.com/ProgVal/Limnoria') def doNotice(self, irc, msg): if ircmsgs.isCtcp(msg): diff --git a/plugins/Karma/README.txt b/plugins/Karma/README.txt index d60b47a97..922af9197 100644 --- a/plugins/Karma/README.txt +++ b/plugins/Karma/README.txt @@ -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. diff --git a/plugins/Karma/plugin.py b/plugins/Karma/plugin.py index 375770619..91cdad38c 100644 --- a/plugins/Karma/plugin.py +++ b/plugins/Karma/plugin.py @@ -60,11 +60,11 @@ class SqliteKarmaDB(object): if filename in self.dbs: return self.dbs[filename] if os.path.exists(filename): - db = sqlite3.connect(filename) + db = sqlite3.connect(filename, check_same_thread=False) db.text_factory = str self.dbs[filename] = db return db - db = sqlite3.connect(filename) + db = sqlite3.connect(filename, check_same_thread=False) db.text_factory = str self.dbs[filename] = db cursor = db.cursor() diff --git a/plugins/Lart/README.txt b/plugins/Lart/README.txt index d60b47a97..f59b09c36 100644 --- a/plugins/Lart/README.txt +++ b/plugins/Lart/README.txt @@ -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 \ No newline at end of file diff --git a/plugins/Limiter/README.txt b/plugins/Limiter/README.txt index d60b47a97..2cefb4c75 100644 --- a/plugins/Limiter/README.txt +++ b/plugins/Limiter/README.txt @@ -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. \ No newline at end of file diff --git a/plugins/Math/README.txt b/plugins/Math/README.txt index d60b47a97..648405224 100644 --- a/plugins/Math/README.txt +++ b/plugins/Math/README.txt @@ -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. diff --git a/plugins/Network/README.txt b/plugins/Network/README.txt index d60b47a97..539a607a0 100644 --- a/plugins/Network/README.txt +++ b/plugins/Network/README.txt @@ -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. \ No newline at end of file diff --git a/plugins/NickCapture/README.txt b/plugins/NickCapture/README.txt index d60b47a97..5388aad1a 100644 --- a/plugins/NickCapture/README.txt +++ b/plugins/NickCapture/README.txt @@ -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. diff --git a/plugins/Nickometer/README.txt b/plugins/Nickometer/README.txt index d60b47a97..7f0636016 100644 --- a/plugins/Nickometer/README.txt +++ b/plugins/Nickometer/README.txt @@ -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]'. \ No newline at end of file diff --git a/plugins/Note/README.txt b/plugins/Note/README.txt index d60b47a97..85131f832 100644 --- a/plugins/Note/README.txt +++ b/plugins/Note/README.txt @@ -1 +1 @@ -Insert a description of your plugin here, with any notes, etc. about using it. +Allows you to send notes to other users. \ No newline at end of file diff --git a/plugins/Plugin/README.txt b/plugins/Plugin/README.txt index d60b47a97..4b715f86e 100644 --- a/plugins/Plugin/README.txt +++ b/plugins/Plugin/README.txt @@ -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. \ No newline at end of file diff --git a/plugins/PluginDownloader/README.txt b/plugins/PluginDownloader/README.txt index d60b47a97..d667ae887 100644 --- a/plugins/PluginDownloader/README.txt +++ b/plugins/PluginDownloader/README.txt @@ -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. \ No newline at end of file diff --git a/plugins/Praise/README.txt b/plugins/Praise/README.txt index d60b47a97..e9871d84f 100644 --- a/plugins/Praise/README.txt +++ b/plugins/Praise/README.txt @@ -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 \ No newline at end of file diff --git a/plugins/Quote/README.txt b/plugins/Quote/README.txt index d60b47a97..8f7d29d68 100644 --- a/plugins/Quote/README.txt +++ b/plugins/Quote/README.txt @@ -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. \ No newline at end of file diff --git a/src/version.py b/src/version.py index f90183d52..edae166ae 100644 --- a/src/version.py +++ b/src/version.py @@ -1,3 +1,3 @@ """stick the various versioning attributes in here, so we only have to change 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)'