add gapan to THANKS and fix Makefile one last time
This commit is contained in:
parent
482aaf1aaf
commit
2c1a05a153
4 changed files with 5 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
$prefix=/usr/local
|
||||
prefix=/usr/local
|
||||
LIBDIR=$(prefix)/lib
|
||||
BINDIR=$(prefix)/bin
|
||||
DATADIR=$(prefix)/share
|
||||
|
|
3
README
3
README
|
@ -69,11 +69,12 @@ the Creative Commons BY license (http://creativecommons.org/licenses/by/2.0/)
|
|||
Thanks
|
||||
=======================
|
||||
= People =
|
||||
Link Mauve - Code
|
||||
Link Mauve - Code (a little)
|
||||
Erwan Briand - Handler and MultiUserChat classes
|
||||
Gaëtan Ribémont (http://www.bonbref.com) - Logo design
|
||||
Ovart - Testing
|
||||
mathieui - Testing
|
||||
Gapan - Makefile
|
||||
= Project =
|
||||
Gajim - send_vcard method and common.py
|
||||
|
||||
|
|
|
@ -264,7 +264,7 @@ class Gui(object):
|
|||
# build the list of the recent words
|
||||
char_we_dont_want = [',', '(', ')', '.']
|
||||
words = list()
|
||||
for msg in self.current_room().messages[:-6:-1]:
|
||||
for msg in self.current_room().messages[:-9:-1]:
|
||||
for word in msg.txt.split():
|
||||
for char in char_we_dont_want: # remove the chars we don't want
|
||||
word = word.replace(char, '')
|
||||
|
|
|
@ -304,7 +304,7 @@ class MultiUserChat(object):
|
|||
qp = iq_obj.getTag('query')
|
||||
if config.get('send_poezio_info', 'true') == 'true':
|
||||
qp.setTagData('name', 'Poezio')
|
||||
qp.setTagData('version', '0.6.2 beta')
|
||||
qp.setTagData('version', '0.6.2')
|
||||
else:
|
||||
qp.setTagData('name', 'Unknown')
|
||||
qp.setTagData('version', 'Unknown')
|
||||
|
|
Loading…
Reference in a new issue