diff options
| -rw-r--r-- | skype/Makefile | 6 | ||||
| -rw-r--r-- | skype/NEWS | 4 | ||||
| -rw-r--r-- | skype/README | 3 | ||||
| -rw-r--r-- | skype/skyped.py | 5 | 
4 files changed, 14 insertions, 4 deletions
| diff --git a/skype/Makefile b/skype/Makefile index 61f8519c..d7b4b417 100644 --- a/skype/Makefile +++ b/skype/Makefile @@ -1,8 +1,8 @@  -include config.mak -VERSION = 0.6.2 -# oldest supported one -BITLBEE_VERSION = 1.2.2 +VERSION = 0.6.3 +# latest stable +BITLBEE_VERSION = 1.2.3  AMVERSION = $(shell automake --version|sed 's/.* //;s/\([0-9]\+\.[0-9]\+\)\.[0-9]\+/\1/;q') @@ -1,5 +1,9 @@  VERSION         DESCRIPTION  ----------------------------------------------------------------------------- +0.6.3         - various osx-specific improvements (see the new screenshot!) +              - added python-gnutls install instructions +              - bitlbee.pc is now searched under +                /usr/local/lib/pkgconfig by default to help LFS monkeys ;)  0.6.2         - bugfix: make install required the plugin even in case                  its build was disabled  0.6.1         - added keepalive traffic to avoid disconnects in bitlbee diff --git a/skype/README b/skype/README index 1a46b2ef..65b2808a 100644 --- a/skype/README +++ b/skype/README @@ -353,6 +353,9 @@ $ skyped -n -d    request], this is because it is still not possible (under Linux) to    `join_chat` to a public chat.. +- Add yasrd (Yet Another Skype-Related Daemon) to allow using a public +  server for users who are behind NAT. +  == I would like to have support for ...  If something does not work and it's not in the TODO section, then please diff --git a/skype/skyped.py b/skype/skyped.py index c2773a97..f61583f3 100644 --- a/skype/skyped.py +++ b/skype/skyped.py @@ -177,7 +177,10 @@ class SkypeApi:  	def send(self, msg_text):  		if not len(msg_text) or msg_text == "PONG":  			return -		e = msg_text.decode(locale.getdefaultlocale()[1]) +		try: +			e = msg_text.decode(locale.getdefaultlocale()[1]) +		except ValueError: +			e = msg_text.decode('UTF-8')  		dprint('>> ' + e)  		try:  			c = self.skype.Command(e, Block=True) | 
