add tlen and do better detection for gadugadu [thanks to da.killa]
BIN
data/iconsets/transports/tlen/16x16/Thumbs.db
Normal file
BIN
data/iconsets/transports/tlen/16x16/away.png
Normal file
After Width: | Height: | Size: 649 B |
BIN
data/iconsets/transports/tlen/16x16/chat.png
Normal file
After Width: | Height: | Size: 722 B |
BIN
data/iconsets/transports/tlen/16x16/dnd.png
Normal file
After Width: | Height: | Size: 605 B |
BIN
data/iconsets/transports/tlen/16x16/error.png
Normal file
After Width: | Height: | Size: 792 B |
BIN
data/iconsets/transports/tlen/16x16/invisible.png
Normal file
After Width: | Height: | Size: 537 B |
BIN
data/iconsets/transports/tlen/16x16/message.png
Normal file
After Width: | Height: | Size: 637 B |
BIN
data/iconsets/transports/tlen/16x16/not_in_the_roster.png
Normal file
After Width: | Height: | Size: 675 B |
BIN
data/iconsets/transports/tlen/16x16/offline.png
Normal file
After Width: | Height: | Size: 333 B |
BIN
data/iconsets/transports/tlen/16x16/online.png
Normal file
After Width: | Height: | Size: 351 B |
BIN
data/iconsets/transports/tlen/16x16/requested.png
Normal file
After Width: | Height: | Size: 713 B |
BIN
data/iconsets/transports/tlen/16x16/xa.png
Normal file
After Width: | Height: | Size: 668 B |
|
@ -192,6 +192,8 @@ class RosterWindow:
|
|||
state_images = self.transports_state_images['aim']
|
||||
elif host.startswith('gadugadu'):
|
||||
state_images = self.transports_state_images['gadugadu']
|
||||
elif host.startswith('gg'):
|
||||
state_images = self.transports_state_images['gadugadu']
|
||||
elif host.startswith('irc'):
|
||||
state_images = self.transports_state_images['irc']
|
||||
elif host.startswith('icq'): # abc@icqsucks.org will match as ICQ, but what to do..
|
||||
|
@ -200,6 +202,8 @@ class RosterWindow:
|
|||
state_images = self.transports_state_images['msn']
|
||||
elif host.startswith('sms'):
|
||||
state_images = self.transports_state_images['sms']
|
||||
elif host.startswith('tlen'):
|
||||
state_images = self.transports_state_images['tlen']
|
||||
elif host.startswith('yahoo'):
|
||||
state_images = self.transports_state_images['yahoo']
|
||||
else:
|
||||
|
|