~ubuntu-branches/ubuntu/quantal/zeitgeist/quantal

« back to all changes in this revision

Viewing changes to _zeitgeist/engine/remote.py

  • Committer: Bazaar Package Importer
  • Author(s): Siegfried-Angel Gevatter Pujals
  • Date: 2011-05-07 20:45:57 UTC
  • mfrom: (1.1.9 upstream) (6.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110507204557-31lr591fyj9ha83j
Tags: 0.8.0-1
* New upstream release. Some of the changes are:
 - Fixed secondary sorting by timestamp for most ResultTypes (LP: #772041).
 - Enabled filtering by availability in FindEvents.
 - Added event origin and current_uri properties (LP: #425258, ...) with
   corresponding ResultTypes and MoveEvent handling (LP: #602211).
 - Fixed inconsistencies caused by the internal cache not being updated when
   events were deleted (LP: #598666).
 - Added a Storage Monitor extension which tracks network connectivity and
   removable devices (LP: #489194).
 - Fixed datahub launching to avoid zombie processes (LP: #739780).
 - Replaced the Blacklist extension giving it a more capable API
   (LP: #612344).
 - Simplified log output (LP: #744818, ...).
 - Fixed bug in the connection (to Zeitgeist) recovery code (LP: #771970).
* debian/control:
 - Bump Standards-Version to 3.9.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
        :const:`org.gnome.zeitgeist.Engine`.
58
58
        """
59
59
        _dbus_properties = {
60
 
                "version": DBUSProperty(lambda self: (0, 7, 1), out_signature="iii"),
 
60
                "version": DBUSProperty(lambda self: (0, 8, 0), out_signature="iii"),
61
61
                "extensions": DBUSProperty(
62
62
                        lambda self: list(self._engine.extensions.iter_names()),
63
63
                        out_signature="as"),
367
367
                if self._mainloop:
368
368
                        self._mainloop.quit()
369
369
                # remove the interface from all busses (in our case from the session bus)
370
 
                self.remove_from_connection()
 
370
                self._safe_quit()
371
371
        
372
372
        # Properties interface
373
373