~ubuntu-branches/ubuntu/precise/jockey/precise-updates

« back to all changes in this revision

Viewing changes to gtk/jockey-gtk

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2012-03-03 22:30:37 UTC
  • mfrom: (2.1.36)
  • Revision ID: package-import@ubuntu.com-20120303223037-aooipham8ln0l16b
Tags: 0.9.7-0ubuntu1
* New upstream bug fix release:
  - jockey/detection.py: Accept repository URLs with "file:/", too
  - jockey/oslib.py: Completely parse PackageKit output. Thanks Hedayat
    Vatankhah! (LP: #900853)
  - gtk/jockey-gtk: Create tray icon when indicator support is not
    available. Thanks Hedayat Vatankhah! (LP: #900824)
  - Launchpad automatic translations update.
* jockey/oslib.py, has_repositories(): Also accept "file:/path..." URLs from
  apt-cache policy to recongize local repositories. First half of LP #913927.
  Thanks to James Ferguson for the patch.
* jockey/oslib.py, install_package(): Consider file:// URLs a trusted
  origin even for binary packages. (LP: #913927)
* tests/oslib.py: Update test_package_install_thirdparty_unsigned_binary()
  test to use a http:// URL, as file:// URLs are now considered trusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
196
196
        GObject.timeout_add (500, self.show_notification, 
197
197
            (title, text, trayicon))
198
198
 
199
 
        if indicator:
 
199
        if indicator or trayicon:
200
200
            self.ui_main_loop()
201
201
 
202
202
    def show_notification(self, data):