rpms/NetworkManager/devel nm-applet-0.7.0-disable-stuff.patch, NONE, 1.1 .cvsignore, 1.48, 1.49 NetworkManager.spec, 1.170, 1.171 sources, 1.67, 1.68 nm-applet-0.7.0-no-connection-editor.patch, 1.1, NONE

Daniel Williams (dcbw) fedora-extras-commits at redhat.com
Tue Sep 25 19:42:05 UTC 2007


Author: dcbw

Update of /cvs/extras/rpms/NetworkManager/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv20572

Modified Files:
	.cvsignore NetworkManager.spec sources 
Added Files:
	nm-applet-0.7.0-disable-stuff.patch 
Removed Files:
	nm-applet-0.7.0-no-connection-editor.patch 
Log Message:
* Tue Sep 25 2007 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.3.svn2886
- New snapshot
	- Make wired device carrier state work in the applet
	- Fix handling of errors with unencrypted APs
	- Fix "frozen" applet icon by reporting NM state better
	- Fix output of AP frequency in nm-tool



nm-applet-0.7.0-disable-stuff.patch:

--- NEW FILE nm-applet-0.7.0-disable-stuff.patch ---
diff -up NetworkManager-0.7.0/nm-applet-0.7.0/src/applet.c.no-connection-editor NetworkManager-0.7.0/nm-applet-0.7.0/src/applet.c
--- NetworkManager-0.7.0/nm-applet-0.7.0/src/applet.c.no-connection-editor	2007-09-25 13:01:18.000000000 -0400
+++ NetworkManager-0.7.0/nm-applet-0.7.0/src/applet.c	2007-09-25 14:43:31.000000000 -0400
@@ -1146,6 +1146,7 @@ static void nma_menu_add_custom_essid_it
 	label = gtk_label_new_with_mnemonic (_("_Connect to Other Wireless Network..."));
 	gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
 	gtk_container_add (GTK_CONTAINER (menu_item), label);
+	gtk_widget_set_sensitive (menu_item, FALSE);
 	gtk_widget_show_all (menu_item);
 	gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
 	g_signal_connect (menu_item, "activate", G_CALLBACK (custom_essid_item_selected), applet);
@@ -1167,6 +1168,7 @@ nma_menu_add_create_network_item (GtkWid
 	label = gtk_label_new_with_mnemonic (_("Create _New Wireless Network..."));
 	gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
 	gtk_container_add (GTK_CONTAINER (menu_item), label);
+	gtk_widget_set_sensitive (menu_item, FALSE);
 	gtk_widget_show_all (menu_item);
 	gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
 	g_signal_connect (menu_item, "activate", G_CALLBACK (new_network_item_selected), applet);
@@ -1781,6 +1783,7 @@ static GtkWidget *nma_context_menu_creat
 	gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (applet->info_menu_item), image);
 	gtk_menu_shell_append (menu, applet->info_menu_item);
 
+#if 0
 	/* 'Edit Connections...' item */
 	applet->connections_menu_item = gtk_menu_item_new_with_mnemonic (_("Edit Connections..."));
 	g_signal_connect (applet->connections_menu_item,
@@ -1788,6 +1791,7 @@ static GtkWidget *nma_context_menu_creat
 				   G_CALLBACK (nma_edit_connections_cb),
 				   applet);
 	gtk_menu_shell_append (menu, applet->connections_menu_item);
+#endif
 
 	/* Separator */
 	nma_menu_add_separator_item (menu);


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/NetworkManager/devel/.cvsignore,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- .cvsignore	25 Sep 2007 09:52:27 -0000	1.48
+++ .cvsignore	25 Sep 2007 19:41:28 -0000	1.49
@@ -11,3 +11,6 @@
 nm-applet-0.7.0.svn191.tar.gz
 NetworkManager-0.7.0.svn2880.tar.gz
 nm-applet-0.7.0.svn199.tar.gz
+NetworkManager-0.7.0.svn2884.tar.gz
+nm-applet-0.7.0.svn200.tar.gz
+NetworkManager-0.7.0.svn2886.tar.gz


Index: NetworkManager.spec
===================================================================
RCS file: /cvs/extras/rpms/NetworkManager/devel/NetworkManager.spec,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- NetworkManager.spec	25 Sep 2007 09:52:27 -0000	1.170
+++ NetworkManager.spec	25 Sep 2007 19:41:28 -0000	1.171
@@ -7,7 +7,7 @@
 %define gtk2_version	2.10.0
 %define wireless_tools_version 1:28-0pre9
 
-%define snapshot svn2880
+%define snapshot svn2886
 
 Name: NetworkManager
 Summary: Network connection manager and user applications
@@ -18,9 +18,9 @@
 License: GPLv2+
 URL: http://www.gnome.org/projects/NetworkManager/
 Source: %{name}-%{version}.%{snapshot}.tar.gz
-Source1: nm-applet-%{version}.svn199.tar.gz
+Source1: nm-applet-%{version}.svn200.tar.gz
 Patch1: NetworkManager-0.6.5-fixup-internal-applet-build.patch
-Patch2: nm-applet-0.7.0-no-connection-editor.patch
+Patch2: nm-applet-0.7.0-disable-stuff.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 PreReq:   chkconfig
@@ -123,7 +123,7 @@
 # unpack the applet
 tar -xzf %{SOURCE1}
 %patch1 -p1 -b .buildfix
-%patch2 -p1 -b .no-connection-editor
+%patch2 -p1 -b .disable-stuff
 
 %build
 # Even though we don't require named, we still build with it
@@ -259,6 +259,13 @@
 
 
 %changelog
+* Tue Sep 25 2007 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.3.svn2886
+- New snapshot
+	- Make wired device carrier state work in the applet
+	- Fix handling of errors with unencrypted APs
+	- Fix "frozen" applet icon by reporting NM state better
+	- Fix output of AP frequency in nm-tool
+
 * Tue Sep 25 2007 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.3.svn2880
 - New snapshot
 	- Fix applet icon sizing on start (mclasen)


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/NetworkManager/devel/sources,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- sources	25 Sep 2007 09:52:27 -0000	1.67
+++ sources	25 Sep 2007 19:41:28 -0000	1.68
@@ -1,2 +1,2 @@
-25115a3500c97b6ee308852d350760ef  NetworkManager-0.7.0.svn2880.tar.gz
-ec90ed799aa6c9c1c5378f8ab31c6f5c  nm-applet-0.7.0.svn199.tar.gz
+8edfd5854389ea6a6b4eb1f507b46c38  nm-applet-0.7.0.svn200.tar.gz
+fe78cab7288beef5e69dcf897a76d16b  NetworkManager-0.7.0.svn2886.tar.gz


--- nm-applet-0.7.0-no-connection-editor.patch DELETED ---




More information about the scm-commits mailing list