summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/Changelog4
-rw-r--r--portato/backend/portage/system.py2
-rw-r--r--portato/gui/gtk/windows.py4
3 files changed, 6 insertions, 4 deletions
diff --git a/doc/Changelog b/doc/Changelog
index a4cd84f..3561a70 100644
--- a/doc/Changelog
+++ b/doc/Changelog
@@ -1,5 +1,7 @@
-0.8.2:
+next:
- added an uncaught exception dialog
+- i18n
+- minor enhancements
0.8.1:
- bugfixes
diff --git a/portato/backend/portage/system.py b/portato/backend/portage/system.py
index bf1b821..c40473e 100644
--- a/portato/backend/portage/system.py
+++ b/portato/backend/portage/system.py
@@ -101,7 +101,7 @@ class PortageSystem (SystemInterface):
if name != None:
if isinstance(name, str):
- return lambda x: re.match(".*"+name+".*",x)
+ return lambda x: re.match(".*"+name+".*",x, re.I)
else: # assume regular expression
return lambda x: name.match(x)
else:
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py
index 2cba5b2..c1789bd 100644
--- a/portato/gui/gtk/windows.py
+++ b/portato/gui/gtk/windows.py
@@ -1165,10 +1165,10 @@ class MainWindow (Window):
else:
title = (_("Console (%(title)s)") % {"title" : title})
- return False
-
self.notebook.set_tab_label_text(self.termHB, title)
+ return False
+
gobject.idle_add(__update, title)
def cb_cat_list_selection (self, view):
9-09-05 21:20:08 +0200'>2009-09-05One database instance is enough :)René 'Necoro' Neumann1-7/+18 2009-09-05Print database type at the bottom of exceptions. NOTE: This does not handle m...René 'Necoro' Neumann2-1/+6 2009-09-05Fix an error, where a category vanishes after refreshing, using the EixSQLDat...René 'Necoro' Neumann2-1/+19 2009-09-03And here is the debugging again :) ... using ctypesRené 'Necoro' Neumann1-1/+8 2009-09-03Screw debugging ... prefer the ctypes approach to get rid of yet another c-mo...René 'Necoro' Neumann3-27/+11 2009-09-03Use this wrapper instead of ctypes to set the textdomain and stuff for the gt...René 'Necoro' Neumann1-9/+5 2009-09-03Add small wrapper to C-gettextRené 'Necoro' Neumann2-1/+22 2009-08-31Update messages.potRené 'Necoro' Neumann1-42/+94 2009-08-31Removed the gtk- strings from translationsRené 'Necoro' Neumann7-3639/+3479 2009-08-31Removed the 'translatable' attribute from 'gtk-*' stringsRené 'Necoro' Neumann5-11/+11 2009-08-31Removed TODO. Renamed ChangeLog to TODORené 'Necoro' Neumann2-40/+0 2009-08-27Only import stuff if necessaryRené 'Necoro' Neumann1-8/+8 2009-08-25Release the threadQueue-Lock in syncv0.13René 'Necoro' Neumann1-0/+1 2009-08-25Updated portugese translationAlberto Federman Neto1-650/+687 2009-08-15Update spanish translationDaniel Halens1-245/+258 2009-08-15Use boolean flags instead of obscure C flags for ipc.MessageQueueRené 'Necoro' Neumann3-13/+15 2009-08-15TypoRené 'Necoro' Neumann1-1/+1 2009-08-15Enhanced the extensions.shRené 'Necoro' Neumann1-3/+8 2009-08-15Move eix-format to correct locationRené 'Necoro' Neumann1-0/+0