From 6c7c37f0c3658dc479693a0a6fa643f49851bd46 Mon Sep 17 00:00:00 2001 From: Jacob Peddicord Date: Sun, 18 Oct 2015 14:08:59 -0700 Subject: [PATCH] Update headers and add sleekxmpp note. --- README | 3 +++ highlightxmpp.py | 7 ++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README b/README index 19b075a..9cea51d 100644 --- a/README +++ b/README @@ -2,9 +2,12 @@ When loaded, this plugin will send you a message over XMPP (Jabber) when a highlighted message or a private message is received. Great for running under a detatched terminal where you're not always looking at your IRC window. +Requires SleekXMPP (`pip install sleekxmpp`) + Changelog: * 0.5: - switch to sleekxmpp as xmpp library (http://github.com/fritzy/SleekXMPP) + * 0.4: - Actually fixed random XML appearing in messages. diff --git a/highlightxmpp.py b/highlightxmpp.py index 891dc07..bde607f 100644 --- a/highlightxmpp.py +++ b/highlightxmpp.py @@ -1,7 +1,8 @@ -# HighlightXMPP 0.4 for IRC. Requires WeeChat >= 0.3.0 and Python >= 2.6. +# HighlightXMPP 0.5 for IRC. Requires WeeChat >= 0.3.0, +# Python >= 2.6, and sleekxmpp. # Repo: https://github.com/jpeddicord/weechat-highlightxmpp # -# Copyright (c) 2009-2012 Jacob Peddicord +# Copyright (c) 2009-2015 Jacob Peddicord # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -41,7 +42,7 @@ if sys.version_info < (3, 0): info = ( 'highlightxmpp', - 'Jacob Peddicord ', + 'Jacob Peddicord ', '0.5', 'GPL3', "Relay highlighted & private IRC messages over XMPP (Jabber)",