From: Ed Page Date: Tue, 9 Feb 2010 00:30:43 +0000 (-0600) Subject: Fixing when conversations are coming in, bumping to 0.7.8 to release it X-Git-Url: http://git.maemo.org/git/?p=theonering;a=commitdiff_plain;h=d25b43a3f499941b3c309f6701fd8bd55d1e87e4 Fixing when conversations are coming in, bumping to 0.7.8 to release it --- diff --git a/src/autogv.py b/src/autogv.py index 4c93132..a833c61 100644 --- a/src/autogv.py +++ b/src/autogv.py @@ -54,7 +54,7 @@ class NewGVConversations(object): h = self._connRef().get_handle_by_name(telepathy.HANDLE_TYPE_CONTACT, phoneNumber) # Just let the TextChannel decide whether it should be reported to the user or not props = self._connRef().generate_props(telepathy.CHANNEL_TYPE_TEXT, h, False) - if self._channel_manager.channel_exists(props): + if self._connRef()._channel_manager.channel_exists(props): continue # Maemo 4.1's RTComm opens a window for a chat regardless if a @@ -68,7 +68,7 @@ class NewGVConversations(object): if not unreadConvs: continue - chan = self._channel_manager.channel_for_props(props, signal=True) + chan = self._connRef()._channel_manager.channel_for_props(props, signal=True) class RefreshVoicemail(object): diff --git a/src/constants.py b/src/constants.py index 02fa74a..797465a 100644 --- a/src/constants.py +++ b/src/constants.py @@ -2,7 +2,7 @@ import os __pretty_app_name__ = "Telepathy-TheOneRing" __app_name__ = "telepathy-theonering" -__version__ = "0.7.7" +__version__ = "0.7.8" __build__ = 0 __app_magic__ = 0xdeadbeef _data_path_ = os.path.join(os.path.expanduser("~"), ".telepathy-theonering") diff --git a/support/builddeb.py b/support/builddeb.py index f986750..004aeb3 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -34,6 +34,9 @@ __email__ = "eopage@byu.net" __version__ = constants.__version__ __build__ = constants.__build__ __changelog__ = """ +0.7.8 +* Bugfix: Issues with checking for new conversations + 0.7.7 * On change between available/away, start state_machine at max rather than min, reducing overhead * Added a check for voicemails on missed/rejected calls (checks 3 times, 1 minute apart each) diff --git a/www/telepathy-theonering.deb b/www/telepathy-theonering.deb index 466709a..e790720 100644 Binary files a/www/telepathy-theonering.deb and b/www/telepathy-theonering.deb differ