diff --git a/LinkRelay/README.txt b/LinkRelay/README.txt index d60b47a..606f31a 100644 --- a/LinkRelay/README.txt +++ b/LinkRelay/README.txt @@ -1 +1,7 @@ -Insert a description of your plugin here, with any notes, etc. about using it. +LinkRelay is an alternative to the official Relay plugin. As Relay can +relay only between channels with the same name, LinkRelay is highly +configurable, and can be used to relay from any channel to any channel. + +More over, LinkRelay offers unique features, such as coloring the +non-PRIVMSG messages (i.e. joins, parts, quits, kicks, nick changes, ...), +non-reciprocal relays, or messages filtering (by regexp). diff --git a/LinkRelay/__init__.py b/LinkRelay/__init__.py index 373da41..338b056 100644 --- a/LinkRelay/__init__.py +++ b/LinkRelay/__init__.py @@ -43,7 +43,12 @@ __author__ = supybot.Author('quantumlemur', 'quantumlemur', # This is a dictionary mapping supybot.Author instances to lists of # contributions. -__contributors__ = {} +if not hasattr(supybot.authors, 'progval'): + supybot.authors.progval = supybot.Author('Valentin Lorentz', 'ProgVal', + 'progval@gmail.com') +__contributors__ = {supybot.authors.progval: ['enhance configurabilty', + 'many bug fixes', + 'code enhancement']} import config import plugin