summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-03-22 22:20:06 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2006-03-22 22:20:06 +0100
commita270b2bc2c7a0bb5ce3318e617fc3d3e00fe35dd (patch)
tree1f0f5c5a97cb6d55495345317b60bb432d26d2b0
parent61e0c92db758048a62ff9b7873522cfc7ce26fab (diff)
downloadpython-apt-a270b2bc2c7a0bb5ce3318e617fc3d3e00fe35dd.tar.gz
* don't show a reload dialog when runing embedded
-rw-r--r--SoftwareProperties/SoftwareProperties.py3
-rw-r--r--debian/changelog9
-rwxr-xr-xsetup.py1
3 files changed, 12 insertions, 1 deletions
diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py
index 099576d0..ae2d5ecc 100644
--- a/SoftwareProperties/SoftwareProperties.py
+++ b/SoftwareProperties/SoftwareProperties.py
@@ -73,6 +73,7 @@ class SoftwareProperties(SimpleGladeApp):
self.window_main.set_transient_for(parent)
# If externally called, reparent to external application.
+ self.options = options
if options and options.toplevel != None:
toplevel = gtk.gdk.window_foreign_new(int(options.toplevel))
self.window_main.window.set_transient_for(toplevel)
@@ -344,7 +345,7 @@ class SoftwareProperties(SimpleGladeApp):
# show a dialog that a reload of the channel information is required
# only if there is no parent defined
if self.modified == True and \
- self.window_main.get_transient_for() == None:
+ self.options.toplevel == None:
d = dialog_cache_outdated.DialogCacheOutdated(self.window_main,
self.datadir)
res = d.run()
diff --git a/debian/changelog b/debian/changelog
index ba1cbf07..97151480 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+update-manager (0.42.2ubuntu8) dapper; urgency=low
+
+ * Better English (tm) (fixes #35985)
+ * Use the the number of available and not selected updates to determinate
+ if the system is up-to-date (fixes #35300)
+ * fix ui problem with software preferences (fixes #35987)
+
+ -- Michael Vogt <michael.vogt@ubuntu.com> Wed, 22 Mar 2006 21:57:28 +0100
+
update-manager (0.42.2ubuntu7) dapper; urgency=low
* various spelling fixes and ui-glitches
diff --git a/setup.py b/setup.py
index a5916dfa..0ed64179 100755
--- a/setup.py
+++ b/setup.py
@@ -63,6 +63,7 @@ setup(name='update-manager',
),
('share/pixmaps',
["data/update-manager.png"]
+ ),
] + I18NFILES + HELPFILES,
)