gnome-packagekit r116 - in trunk: . src



Author: rhughes
Date: Mon Mar 10 11:56:53 2008
New Revision: 116
URL: http://svn.gnome.org/viewvc/gnome-packagekit?rev=116&view=rev

Log:
from git

Modified:
   trunk/NEWS
   trunk/configure.ac
   trunk/src/pk-application.c

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Mon Mar 10 11:56:53 2008
@@ -1,3 +1,19 @@
+Version 0.1.9
+~~~~~~~~~~~~~
+Released: 2008-03-04
+
+* New features:
+ - Add a new icons for a bugfix to make it more obvious (Richard Hughes)
+ - Remove the GtkTextView and replace with a GtkTreeView in p-u-v (Richard Hughes)
+ - Add checkboxes to the update viewer, but can't be changed yet (Richard Hughes)
+ - Display the history viewer as the transaction is progressing (Richard Hughes)
+
+* Bugfixes:
+ - NotShowIn=KDE rather than OnlyShowIn=GNOME so the tools show in XFCE (Richard Hughes)
+ - Cancel useless transactions when the client tool is exited (Richard Hughes)
+ - Use format_secondary_markup properly to avoid a segfault (Richard Hughes)
+ - Cancel old requests in the group pane when moving down the list (Richard Hughes)
+
 Version 0.1.8
 ~~~~~~~~~~~~~
 Released: 2008-02-21

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Mon Mar 10 11:56:53 2008
@@ -1,6 +1,6 @@
 AC_PREREQ(2.52)
 
-AC_INIT(gnome-packagekit, 0.1.9)
+AC_INIT(gnome-packagekit, 0.1.10)
 AC_CONFIG_SRCDIR(src)
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
 AM_CONFIG_HEADER(config.h)

Modified: trunk/src/pk-application.c
==============================================================================
--- trunk/src/pk-application.c	(original)
+++ trunk/src/pk-application.c	Mon Mar 10 11:56:53 2008
@@ -1322,6 +1322,7 @@
 	GtkWidget *vbox;
 	GtkWidget *widget;
 	PkGroupEnum group;
+	gboolean ret;
 	gchar *locale; /* does not need to be freed */
 	guint length;
 	guint page;
@@ -1403,7 +1404,10 @@
 
 	/* single instance, so this is valid */
 	application->priv->extra = pk_extra_new ();
-	pk_extra_set_database (application->priv->extra, "/var/lib/PackageKit/extra-data.db");
+	ret = pk_extra_set_database (application->priv->extra, "/var/lib/PackageKit/extra-data.db");
+	if (!ret) {
+		pk_warning ("could not connect to extra database");
+	}
 
 	/* set the locale */
 	locale = setlocale (LC_ALL, NULL);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]