From 885e563e68673e4c2daee2861766fc8913120158 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 8 Sep 2008 03:10:00 +0200 Subject: skyped: when sending, encode using utf8 if we can't get the system default this fixes a runtime error on osx --- skype/skyped.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3 From 68c162b44f12aefb11a4c1074ad7366ead1b9846 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 8 Sep 2008 09:31:48 +0200 Subject: updates for 0.6.3 --- skype/Makefile | 6 +++--- skype/NEWS | 4 ++++ 2 files changed, 7 insertions(+), 3 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') diff --git a/skype/NEWS b/skype/NEWS index 15d425ac..b885bd66 100644 --- a/skype/NEWS +++ b/skype/NEWS @@ -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 -- cgit v1.2.3 From c49820d52fc3e1f2b744a7b513fdf4cafa53bf29 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Wed, 24 Sep 2008 11:03:55 +0200 Subject: add yasrd to todo --- skype/README | 3 +++ 1 file changed, 3 insertions(+) diff --git a/skype/README b/skype/README index d694e011..7eb48595 100644 --- a/skype/README +++ b/skype/README @@ -352,6 +352,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 -- cgit v1.2.3