Hello community, here is the log from the commit of package gnome-system-monitor checked in at Tue May 2 11:31:52 CEST 2006. -------- --- GNOME/gnome-system-monitor/gnome-system-monitor.changes 2006-03-29 18:16:31.000000000 +0200 +++ STABLE/gnome-system-monitor/gnome-system-monitor.changes 2006-05-01 14:56:21.000000000 +0200 @@ -1,0 +2,5 @@ +Mon May 1 14:54:38 CEST 2006 - jpr@suse.de + +- Remember the devices page if its the last used (#171137 + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-system-monitor.spec ++++++ --- /var/tmp/diff_new_pack.B9JC09/_old 2006-05-02 11:31:35.000000000 +0200 +++ /var/tmp/diff_new_pack.B9JC09/_new 2006-05-02 11:31:35.000000000 +0200 @@ -16,7 +16,7 @@ Group: System/GUI/GNOME Autoreqprov: on Version: 2.12.2 -Release: 19 +Release: 27 Source0: ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-monitor/2.0/%{name}-%{version}.tar.bz2 Source1: n-side.png URL: http://www.gnome.org @@ -103,6 +103,8 @@ %{sysconfdir}/gconf/schemas/gnome-system-monitor.schemas %changelog -n gnome-system-monitor +* Mon May 01 2006 - jpr@suse.de +- Remember the devices page if its the last used (#171137 * Wed Mar 29 2006 - jpr@suse.de - Fix page numbers to reflect prepended page (fixes #161815, #157490) * Tue Mar 28 2006 - joeshaw@suse.de ++++++ gnome-system-monitor-sysinfo.patch ++++++ --- /var/tmp/diff_new_pack.B9JC09/_old 2006-05-02 11:31:35.000000000 +0200 +++ /var/tmp/diff_new_pack.B9JC09/_new 2006-05-02 11:31:35.000000000 +0200 @@ -461,3 +461,34 @@ vbox1 = create_proc_view (procdata); gtk_widget_show (vbox1); tab_label1 = gtk_label_new (_("Processes")); +--- src/procdialogs.c ++++ src/procdialogs.c +@@ -799,7 +799,7 @@ + g_signal_connect (G_OBJECT (dialog), "response", + G_CALLBACK (prefs_dialog_button_pressed), procdata); + +- if (procdata->config.current_tab == 0) ++ if (procdata->config.current_tab <= 1) + gtk_notebook_set_current_page (GTK_NOTEBOOK (notebook), 0); + else + gtk_notebook_set_current_page (GTK_NOTEBOOK (notebook), 1); +--- src/procman.c ++++ src/procman.c +@@ -73,7 +73,7 @@ + GConfValue *value = gconf_entry_get_value (entry); + + procdata->config.whose_process = gconf_value_get_int (value); +- procdata->config.whose_process = CLAMP (procdata->config.whose_process, 0, 2); ++ procdata->config.whose_process = CLAMP (procdata->config.whose_process, 0, 3); + proctable_clear_tree (procdata); + proctable_update_all (procdata); + +@@ -385,7 +385,7 @@ + pd->config.graph_update_interval = MAX (pd->config.graph_update_interval, 250); + pd->config.disks_update_interval = MAX (pd->config.disks_update_interval, 1000); + pd->config.whose_process = CLAMP (pd->config.whose_process, 0, 2); +- pd->config.current_tab = CLAMP (pd->config.current_tab, 0, 2); ++ pd->config.current_tab = CLAMP (pd->config.current_tab, 0, 3); + + /* Determinie number of cpus since libgtop doesn't really tell you*/ + pd->config.num_cpus = 0; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de