Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Fomin <fominde@gmail.com>2011-09-02 20:34:15 +0400
committerDenis Fomin <fominde@gmail.com>2011-09-02 20:34:15 +0400
commit71a989bb9691ea9fb4c994922569f7929cbaa7f7 (patch)
tree6c1e4930bb9b8186ae3ae03ddfa1604e939daca7
parentb605838732640621f491bc3d1ed1a1050988c364 (diff)
clients_icons. psto@psto.net support added
-rw-r--r--clients_icons/clients_icons.py3
-rw-r--r--clients_icons/icons/psto.pngbin0 -> 798 bytes
-rw-r--r--clients_icons/manifest.ini2
3 files changed, 4 insertions, 1 deletions
diff --git a/clients_icons/clients_icons.py b/clients_icons/clients_icons.py
index 4e3361b..528f23c 100644
--- a/clients_icons/clients_icons.py
+++ b/clients_icons/clients_icons.py
@@ -126,6 +126,7 @@ clients = {
'http://aspro.users.ru/historian-bot/': 'bot.png',
'http://pigeon.vpro.ru/caps': 'pigeon.png',
'http://jtalk.ustyugov.net/caps': 'jtalk.png',
+ 'psto@psto.net': 'psto.png',
}
@@ -319,6 +320,8 @@ class ClientsIconsPlugin(GajimPlugin):
caps = 'http://juick.com/caps'
elif '@vk.com' in iq_obj.jid:
caps = 'vk.com'
+ elif 'psto@psto.net' in iq_obj.jid:
+ caps = 'psto@psto.net'
self.set_icon(roster.model, iter_, self.renderer_num, caps)
def gc_presence_received(self, iq_obj):
diff --git a/clients_icons/icons/psto.png b/clients_icons/icons/psto.png
new file mode 100644
index 0000000..f3356f0
--- /dev/null
+++ b/clients_icons/icons/psto.png
Binary files differ
diff --git a/clients_icons/manifest.ini b/clients_icons/manifest.ini
index 53d8a8e..9de60c3 100644
--- a/clients_icons/manifest.ini
+++ b/clients_icons/manifest.ini
@@ -1,7 +1,7 @@
[info]
name: Clients icons
short_name: clients_icons
-version: 1.2
+version: 1.3
description: Shows the client icons in the roster
and in groupchats.
Depends: Gajim > r12506