gnome-packagekit r120 - in trunk: . data po src



Author: rhughes
Date: Tue Mar 18 20:54:02 2008
New Revision: 120
URL: http://svn.gnome.org/viewvc/gnome-packagekit?rev=120&view=rev

Log:
from git

Removed:
   trunk/data/wscript_build
   trunk/po/wscript_build
   trunk/src/wscript_build
   trunk/wscript
Modified:
   trunk/data/pk-backend-status.glade
   trunk/data/pk-update-viewer.glade
   trunk/src/pk-application.c
   trunk/src/pk-notify.c
   trunk/src/pk-update-viewer.c

Modified: trunk/data/pk-backend-status.glade
==============================================================================
--- trunk/data/pk-backend-status.glade	(original)
+++ trunk/data/pk-backend-status.glade	Tue Mar 18 20:54:02 2008
@@ -35,7 +35,7 @@
                         <property name="n_columns">2</property>
                         <property name="column_spacing">5</property>
                         <property name="row_spacing">5</property>
-                        <property name="homogeneous">True</property>
+                        <property name="homogeneous">False</property>
                         <child>
                           <widget class="GtkLabel" id="label19">
                             <property name="visible">True</property>

Modified: trunk/data/pk-update-viewer.glade
==============================================================================
--- trunk/data/pk-update-viewer.glade	(original)
+++ trunk/data/pk-update-viewer.glade	Tue Mar 18 20:54:02 2008
@@ -275,7 +275,7 @@
                         </child>
                       </widget>
                       <packing>
-                        <property name="resize">False</property>
+                        <property name="resize">True</property>
                         <property name="shrink">True</property>
                       </packing>
                     </child>
@@ -295,7 +295,7 @@
                         </child>
                       </widget>
                       <packing>
-                        <property name="resize">True</property>
+                        <property name="resize">False</property>
                         <property name="shrink">True</property>
                       </packing>
                     </child>

Modified: trunk/src/pk-application.c
==============================================================================
--- trunk/src/pk-application.c	(original)
+++ trunk/src/pk-application.c	Tue Mar 18 20:54:02 2008
@@ -1622,6 +1622,10 @@
 						       G_TYPE_STRING,
 						       G_TYPE_STRING);
 
+	/* sorted */
+	gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (application->priv->packages_store),
+					      PACKAGES_COLUMN_TEXT, GTK_SORT_ASCENDING);
+
 	/* create package tree view */
 	widget = glade_xml_get_widget (application->priv->glade_xml, "treeview_packages");
 	gtk_tree_view_set_model (GTK_TREE_VIEW (widget),

Modified: trunk/src/pk-notify.c
==============================================================================
--- trunk/src/pk-notify.c	(original)
+++ trunk/src/pk-notify.c	Tue Mar 18 20:54:02 2008
@@ -752,7 +752,7 @@
 	g_signal_connect (client, "error-code",
 			  G_CALLBACK (pk_notify_error_code_cb), notify);
 	pk_client_set_use_buffer (client, TRUE, NULL);
-	pk_client_get_updates (client, "none", NULL);
+	pk_client_get_updates (client, "basename", NULL);
 	return TRUE;
 }
 

Modified: trunk/src/pk-update-viewer.c
==============================================================================
--- trunk/src/pk-update-viewer.c	(original)
+++ trunk/src/pk-update-viewer.c	Tue Mar 18 20:54:02 2008
@@ -1098,6 +1098,10 @@
 	list_store_history = gtk_list_store_new (PREVIEW_COLUMN_LAST, G_TYPE_STRING, G_TYPE_STRING);
 	list_store_description = gtk_list_store_new (DESC_COLUMN_LAST, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING);
 
+	/* sorted */
+	gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (list_store_details),
+					      PACKAGES_COLUMN_TEXT, GTK_SORT_ASCENDING);
+
 	/* create preview tree view */
 	widget = glade_xml_get_widget (glade_xml, "treeview_preview");
 	gtk_tree_view_set_model (GTK_TREE_VIEW (widget),



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