summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/TODO6
-rw-r--r--etc/portato.cfg2
-rw-r--r--portato/gui/gtk/windows.py8
3 files changed, 10 insertions, 6 deletions
diff --git a/doc/TODO b/doc/TODO
index c687059..a890cee 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -6,6 +6,7 @@ Backend:
- add Paludis support
- add pkgcore support
+- add equo support
- bugs in update world (Necoro, 04/20/07: are there any more bugs?)
- fix for flag handling, when reverting flags (Necoro, 04/20/07: what did i mean by this?)
@@ -17,6 +18,8 @@ Backend:
- only remove already merged packages from queue
- make sure, a package being removed from the queue is not needed as a dependency by another package
+- "nach hause telefonieren" :)
+
GUI:
====
@@ -27,10 +30,13 @@ Main Point: user preferences:
- colors and font sizes
- rotating systray icon
+- interactive emerges
GTK:
----
- make oneshot better
+- show installed files
+- show dependencies
Qt (stopped):
---
diff --git a/etc/portato.cfg b/etc/portato.cfg
index a36c55f..d479d97 100644
--- a/etc/portato.cfg
+++ b/etc/portato.cfg
@@ -45,7 +45,7 @@ keywordfile = portato
; control whether the option is inserted into package.* with a specific version or not - boolean values
keywordperversion = True
maskperversion = True
-useperversion = True
+useperversion = False
#
# Frontend section for options common to more than one GUI.
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py
index 3f29bba..d227e45 100644
--- a/portato/gui/gtk/windows.py
+++ b/portato/gui/gtk/windows.py
@@ -151,16 +151,13 @@ class UpdateWindow (AbstractDialog):
items.append(model.get_value(iter, 1))
iter = model.iter_next(iter)
- world = [x.get_cp() for x in system.find_all_world_packages()]
for item in items:
- cp = "/".join(system.split_cpv(item)[:2])
- not_in_world = cp not in world
try:
try:
- self.queue.append(item, unmerge = False, oneshot = not_in_world)
+ self.queue.append(item, unmerge = False, oneshot = True)
except PackageNotFoundException, e:
if unmask_dialog(e[0]) == gtk.RESPONSE_YES :
- self.queue.append(item, unmerge = False, unmask = True, oneshot = not_in_world)
+ self.queue.append(item, unmerge = False, unmask = True, oneshot = True)
except BlockedException, e:
blocked_dialog(e[0], e[1])
@@ -904,6 +901,7 @@ class MainWindow (Window):
self.cfg.modify_external_configs()
gtk.link_button_set_uri_hook(lambda btn, x: listener.send_cmd([self.cfg.get("browserCmd", section = "GUI"), btn.get_uri()]))
+ gtk.about_dialog_set_url_hook(lambda *args: True) # dummy - if not set link is not set as link; if link is clicked the normal uri_hook is called too - thus do not call browser here
# set plugins and plugin-menu
splash(_("Loading Plugins"))