gnome-packagekit r301 - in trunk: . src



Author: rhughes
Date: Wed Sep 24 13:31:00 2008
New Revision: 301
URL: http://svn.gnome.org/viewvc/gnome-packagekit?rev=301&view=rev

Log:
from git

Modified:
   trunk/NEWS
   trunk/configure.ac
   trunk/src/gpk-client.c
   trunk/src/gpk-watch.c

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Wed Sep 24 13:31:00 2008
@@ -1,3 +1,35 @@
+Version 0.3.4
+~~~~~~~~~~~~~~
+Released: 2008-09-22
+
+* Translations
+ - Updated Spanish translation (Daniel Mustieles)
+ - Updated Arabic Translation (Djihed Afifi)
+ - Updated Welsh translation (Iestyn Pryce)
+ - Updated Hebrew translation (Mark Krapivner)
+ - Updated Finnish translation (Ville-Pekka Vainio)
+
+* New
+ - Provide a GConf key that turns on or off precaching of update details (Richard Hughes)
+ - Provide a session-wide way of turning off the intervidual helpers (Richard Hughes)
+ - Add support for prompting the user about needed hardware drivers (Scott Reeves)
+
+* Bugfix:
+ - gtk-cancel and gtk-close should not be marked as translatable (Bob Mauchin)
+ - Pay more attention to the interaction setting when showing dialogs (Richard Hughes)
+ - Use seporate GpkClient GObjects in GpkCheckUpdate (Richard Hughes)
+ - Use the new CANNOT_START_DAEMON error code (Richard Hughes)
+ - Use GpkClientDialog in more places, and get rid of some modal windows (Richard Hughes)
+ - Fix up the PolicyKit name in GpkClientChooser (Richard Hughes)
+ - Fix an invalid free in GpkClientChooser (Richard Hughes)
+ - Make the run chooser modal over the underlying window (Richard Hughes)
+ - Don't automatically get a distro upgrade at startup (Richard Hughes)
+ - Detect all the status enums when selecting an icon (Richard Hughes)
+ - Make gpk_client_set_interaction more powerful by allowing a bitfield to set
+   what dialogs should be shown (Richard Hughes)
+ - Fix notify action for hardware callback (Scott Reeves)
+ - Show device udi in notification (Scott Reeves)
+
 Version 0.3.3
 ~~~~~~~~~~~~~~
 Released: 2008-09-16

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Wed Sep 24 13:31:00 2008
@@ -1,6 +1,6 @@
 AC_PREREQ(2.52)
 
-AC_INIT(gnome-packagekit, 0.3.4)
+AC_INIT(gnome-packagekit, 0.3.5)
 AC_CONFIG_SRCDIR(src)
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
 AM_CONFIG_HEADER(config.h)

Modified: trunk/src/gpk-client.c
==============================================================================
--- trunk/src/gpk-client.c	(original)
+++ trunk/src/gpk-client.c	Wed Sep 24 13:31:00 2008
@@ -2381,6 +2381,7 @@
 
 	/* set title */
 	gpk_client_dialog_set_title (gclient->priv->dialog, _("System update"));
+	gpk_client_dialog_set_window_title (gclient->priv->dialog, _("System update"));
 
 	/* wrap update, but handle all the GPG and EULA stuff */
 	ret = pk_client_update_system (gclient->priv->client_action, &error_local);
@@ -2855,6 +2856,7 @@
 	/* fill in role */
 	text = pk_common_get_role_text (gclient->priv->client_action);
 	gpk_client_dialog_set_title (gclient->priv->dialog, text);
+	gpk_client_dialog_set_window_title (gclient->priv->dialog, text);
 	g_free (text);
 
 	/* coldplug */

Modified: trunk/src/gpk-watch.c
==============================================================================
--- trunk/src/gpk-watch.c	(original)
+++ trunk/src/gpk-watch.c	Wed Sep 24 13:31:00 2008
@@ -227,6 +227,8 @@
 					      PK_STATUS_ENUM_DOWNLOAD_CHANGELOG,
 					      PK_STATUS_ENUM_DOWNLOAD_GROUP,
 					      PK_STATUS_ENUM_DOWNLOAD_UPDATEINFO,
+					      PK_STATUS_ENUM_SCAN_APPLICATIONS,
+					      PK_STATUS_ENUM_GENERATE_PACKAGE_LIST,
 					      PK_STATUS_ENUM_QUERY,
 					      PK_STATUS_ENUM_INFO,
 					      PK_STATUS_ENUM_DEP_RESOLVE,



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