source: projects/specs/branches/6/N/NetworkManager/NetworkManager-vl.spec @ 6139

Revision 6139, 50.6 KB checked in by iwamoto, 12 years ago (diff)

NetworkManager: fix CVE-2011-2176

Line 
1%define udev_scriptdir /lib/udev
2       
3%define dbus_version 1.4.1
4%define dbus_glib_version 0.92
5
6%define gtk2_version    2.22.1
7%define wireless_tools_version 29
8%define libnl_version 1.1
9%define ppp_version 2.4.4
10
11%define applet_version 0.8.4
12
13#define snapshot .git20090414
14#define applet_snapshot %{nil}
15
16Name: NetworkManager
17Summary: Network connection manager and user applications
18Summary(ja): ネットワーク接続マネージャとユーザアプリケーション
19Version: 0.8.4.0
20Release: 4%{?snapshot}%{?_dist_release}
21Group: System Environment/Base
22License: GPLv2+
23URL: http://www.gnome.org/projects/NetworkManager/
24
25Source: %{name}-%{version}%{?snapshot}.tar.bz2
26Source1: network-manager-applet-%{applet_version}%{?applet_snapshot}.tar.bz2
27Source2: nm-system-settings.conf
28Patch1:  nm-applet-internal-buildfixes-nm084.patch
29Patch2:  explain-dns1-dns2.patch
30Patch20: NetworkManager-0.8.4.0-git20110501.patch
31Patch30: network-manager-applet-0.8.4-git20110503.patch
32
33# security fix
34Patch100: NetworkManager-0.8.4.0_CVE-2011-2176.patch
35
36BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
37
38Requires(post): chkconfig
39Requires(preun): chkconfig
40
41Requires: iproute openssl
42Requires: dhclient
43Requires: wpa_supplicant
44Requires: libnl
45Requires: %{name}-glib = %{version}-%{release}
46Requires: ppp
47Requires: avahi
48Requires: dnsmasq
49Requires: initscripts >= 8.80.0
50Requires: udev
51Requires: ModemManager
52Requires: mobile-broadband-provider-info
53Obsoletes: dhcdbd
54Conflicts: %{name}-openvpn < 0.7.0.99
55
56BuildRequires: dbus-devel >= %{dbus_version}
57BuildRequires: dbus-glib-devel >= %{dbus_glib_version}
58BuildRequires: wireless-tools-devel >= %{wireless_tools_version}
59BuildRequires: glib2-devel gtk2-devel
60BuildRequires: libglade2-devel
61BuildRequires: openssl-devel
62BuildRequires: GConf2-devel
63BuildRequires: gnome-panel
64BuildRequires: libgnomeui-devel
65BuildRequires: gnome-keyring-devel
66BuildRequires: gettext
67BuildRequires: pkgconfig
68BuildRequires: wpa_supplicant
69BuildRequires: libnl-devel >= %{libnl_version}
70BuildRequires: libnotify-devel >= 0.3
71BuildRequires: perl(XML::Parser)
72BuildRequires: automake autoconf intltool libtool
73BuildRequires: ppp-devel >= %{ppp_version}
74BuildRequires: libuuid-devel
75BuildRequires: nss-devel >= 3.11.7
76BuildRequires: dhclient
77BuildRequires: polkit-devel
78BuildRequires: gnome-bluetooth-devel
79BuildRequires: libgudev1-devel
80BuildRequires: iptables-devel
81
82Vendor: Project Vine
83Distribution: Vine Linux
84
85%description
86NetworkManager attempts to keep an active network connection available at all
87times.  It is intended only for the desktop use-case, and is not intended for
88usage on servers.   The point of NetworkManager is to make networking
89configuration and setup as painless and automatic as possible.  If using DHCP,
90NetworkManager is _intended_ to replace default routes, obtain IP addresses
91from a DHCP server, and change nameservers whenever it sees fit.
92
93
94%package devel
95Summary: Libraries and headers for adding NetworkManager support to applications
96Summary(ja): Libraries and headers for adding NetworkManager support to applications
97Group: Development/Libraries
98Requires: %{name} = %{version}-%{release}
99Requires: dbus-devel
100Requires: dbus-glib
101Requires: pkgconfig
102
103%description devel
104This package contains various headers accessing some NetworkManager functionality
105from applications.
106
107
108%package gnome
109Summary: GNOME applications for use with NetworkManager
110Summary(ja): GNOME applications for use with NetworkManager
111Group: Applications/Internet
112Requires: %{name} = %{version}-%{release}
113Requires: %{name}-glib = %{version}-%{release}
114Requires: gnome-panel
115Requires: dbus
116Requires: dbus-glib
117Requires: libnotify
118Requires(post):  gtk2 >= %{gtk2_version}
119Requires: gnome-keyring
120Requires: nss
121Requires: gnome-icon-theme
122
123%description gnome
124This package contains GNOME utilities and applications for use with
125NetworkManager, including a panel applet for wireless networks.
126
127
128%package glib
129Summary: Libraries for adding NetworkManager support to applications that use glib.
130Summary(ja): Libraries for adding NetworkManager support to applications that use glib.
131Group: Development/Libraries
132Requires: dbus
133Requires: dbus-glib
134
135%description glib
136This package contains the libraries that make it easier to use some NetworkManager
137functionality from applications that use glib.
138
139
140%package glib-devel
141Summary: Header files for adding NetworkManager support to applications that use glib.
142Summary(ja): Header files for adding NetworkManager support to applications that use glib.
143Group: Development/Libraries
144Requires: %{name}-devel = %{version}-%{release}
145Requires: %{name}-glib = %{version}-%{release}
146Requires: glib2-devel
147Requires: pkgconfig
148Requires: dbus-glib-devel
149
150%description glib-devel
151This package contains the header and pkg-config files for development applications using
152NetworkManager functionality from applications that use glib.
153
154
155%prep
156%setup -q
157
158# unpack the applet
159tar -xzf %{SOURCE1}
160%patch1 -p1 -b .nm-applet-internal
161%patch2 -p1 -b .explain-dns1-dns2
162%patch20 -p1 -b .NM-git20110501
163pushd network-manager-applet-%{applet_version}
164%patch30 -p1 -b .nma-git20110501
165popd
166
167# security
168%patch100 -p1 -b .CVE-2011-2176
169
170%build
171autoreconf -i
172%configure \
173        --disable-static \
174        --with-distro=redhat \
175        --with-dhclient=yes \
176        --with-dhcpcd=no \
177        --with-crypto=nss \
178        --with-docs=yes \
179        --enable-more-warnings=yes \
180        --with-pppd-plugin-dir=%{_libdir}/pppd/%{ppp_version}
181make
182
183# build the applet
184pushd network-manager-applet-%{applet_version}
185  autoreconf -i
186  intltoolize --force
187  %configure --disable-static
188  make
189popd
190 
191%install
192%{__rm} -rf $RPM_BUILD_ROOT
193
194# install NM
195make install DESTDIR=$RPM_BUILD_ROOT
196
197%{__cp} %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/
198
199# install the applet
200pushd network-manager-applet-%{applet_version}
201  make install DESTDIR=$RPM_BUILD_ROOT
202popd
203
204# create a VPN directory
205%{__mkdir_p} $RPM_BUILD_ROOT%{_sysconfdir}/NetworkManager/VPN
206
207# create a keyfile plugin system settings directory
208%{__mkdir_p} $RPM_BUILD_ROOT%{_sysconfdir}/NetworkManager/system-connections
209
210%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/gnome-vpn-properties
211
212%{__mkdir_p} $RPM_BUILD_ROOT%{_localstatedir}/lib/NetworkManager
213
214%find_lang %{name}
215%find_lang nm-applet
216cat nm-applet.lang >> %{name}.lang
217
218%{__rm} -f $RPM_BUILD_ROOT%{_libdir}/*.la
219%{__rm} -f $RPM_BUILD_ROOT%{_libdir}/pppd/*/*.la
220%{__rm} -f $RPM_BUILD_ROOT%{_libdir}/NetworkManager/*.la
221%{__rm} -f $RPM_BUILD_ROOT%{_libdir}/gnome-bluetooth/plugins/*.la
222
223install -m 0755 test/.libs/nm-online %{buildroot}/%{_bindir}
224
225# remove gnome-bluetooth plugins
226%{__rm} -f $RPM_BUILD_ROOT%{_libdir}/gnome-bluetooth/plugins/libnma.so
227
228%clean
229%{__rm} -rf $RPM_BUILD_ROOT
230
231
232%post
233if [ "$1" == "1" ]; then
234        /sbin/chkconfig --add NetworkManager
235        /sbin/chkconfig NetworkManager resetpriorities
236fi
237
238%preun
239if [ $1 -eq 0 ]; then
240    /sbin/service NetworkManager stop >/dev/null 2>&1
241    killall -TERM nm-system-settings >/dev/null 2>&1
242    /sbin/chkconfig --del NetworkManager
243fi
244
245%post   glib -p /sbin/ldconfig
246%postun glib -p /sbin/ldconfig
247
248%pre gnome
249if [ "$1" -gt 1 ]; then
250  export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
251  if [ -f "%{_sysconfdir}/gconf/schemas/nm-applet.schemas" ]; then
252    gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/nm-applet.schemas >/dev/null
253  fi
254fi
255
256%preun gnome
257if [ "$1" -eq 0 ]; then
258  export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
259  if [ -f "%{_sysconfdir}/gconf/schemas/nm-applet.schemas" ]; then
260    gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/nm-applet.schemas >/dev/null
261  fi
262fi
263
264%post gnome
265touch --no-create %{_datadir}/icons/hicolor
266if [ -x /usr/bin/gtk-update-icon-cache ]; then
267  gtk-update-icon-cache -q %{_datadir}/icons/hicolor
268fi
269export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
270if [ -f "%{_sysconfdir}/gconf/schemas/nm-applet.schemas" ]; then
271  gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/nm-applet.schemas >/dev/null
272fi
273
274%postun gnome
275touch --no-create %{_datadir}/icons/hicolor
276if [ -x /usr/bin/gtk-update-icon-cache ]; then
277  gtk-update-icon-cache -q %{_datadir}/icons/hicolor
278fi
279
280%files -f %{name}.lang
281%defattr(-,root,root,0755)
282%doc COPYING NEWS AUTHORS README CONTRIBUTING TODO
283%{_sysconfdir}/dbus-1/system.d/NetworkManager.conf
284%{_sysconfdir}/dbus-1/system.d/nm-dhcp-client.conf
285%{_sysconfdir}/dbus-1/system.d/nm-avahi-autoipd.conf
286%{_sysconfdir}/dbus-1/system.d/nm-dispatcher.conf
287%{_sysconfdir}/dbus-1/system.d/nm-ifcfg-rh.conf
288%config %{_sysconfdir}/rc.d/init.d/NetworkManager
289%{_sbindir}/%{name}
290%dir %{_sysconfdir}/%{name}/
291%dir %{_sysconfdir}/%{name}/dispatcher.d
292%dir %{_sysconfdir}/%{name}/VPN
293%config(noreplace) %{_sysconfdir}/%{name}/nm-system-settings.conf
294%{_bindir}/nm-tool
295%{_bindir}/nm-online
296%{_bindir}/nmcli
297%{_libexecdir}/nm-dhcp-client.action
298%{_libexecdir}/nm-avahi-autoipd.action
299%{_libexecdir}/nm-dispatcher.action
300%dir %{_libdir}/NetworkManager
301%{_libdir}/NetworkManager/*.so*
302%{_mandir}/man1/*
303%{_mandir}/man5/*
304%{_mandir}/man8/*
305%dir %{_localstatedir}/run/NetworkManager
306%dir %{_localstatedir}/lib/NetworkManager
307%{_prefix}/libexec/nm-crash-logger
308%dir %{_datadir}/NetworkManager
309%{_datadir}/NetworkManager/gdb-cmd
310%dir %{_sysconfdir}/NetworkManager/system-connections
311%{_datadir}/dbus-1/system-services/org.freedesktop.nm_dispatcher.service
312%{_libdir}/pppd/%{ppp_version}/nm-pppd-plugin.so
313%{_datadir}/polkit-1/actions/*.policy
314%{udev_scriptdir}/rules.d/*.rules
315
316%files devel
317%defattr(-,root,root,0755)
318%dir %{_includedir}/%{name}
319%{_includedir}/%{name}/%{name}.h
320%{_includedir}/%{name}/NetworkManagerVPN.h
321%{_includedir}/NetworkManager/nm-version.h
322%{_libdir}/pkgconfig/%{name}.pc
323
324%files gnome
325%defattr(-,root,root,0755)
326%{_sysconfdir}/dbus-1/system.d/nm-applet.conf
327%{_sysconfdir}/gconf/schemas/nm-applet.schemas
328%{_bindir}/nm-applet
329%{_bindir}/nm-connection-editor
330%{_datadir}/applications/*.desktop
331%{_datadir}/nm-applet/
332%{_datadir}/icons/hicolor/16x16/apps/*.png
333%{_datadir}/icons/hicolor/22x22/apps/*.png
334%{_datadir}/icons/hicolor/32x32/apps/*.png
335%{_datadir}/icons/hicolor/48x48/apps/*.png
336%{_datadir}/icons/hicolor/scalable/apps/*.svg
337%{_sysconfdir}/xdg/autostart/nm-applet.desktop
338%dir %{_datadir}/gnome-vpn-properties
339##%{_libdir}/gnome-bluetooth/plugins/libnma.so
340
341%files glib
342%defattr(-,root,root,0755)
343%{_libdir}/libnm-glib.so.*
344%{_libdir}/libnm-glib-vpn.so.*
345%{_libdir}/libnm-util.so.*
346
347%files glib-devel
348%dir %{_includedir}/libnm-glib/
349%{_includedir}/libnm-glib/*.h
350%{_includedir}/NetworkManager/nm-*.h
351%exclude %{_includedir}/NetworkManager/nm-version.h
352%{_libdir}/pkgconfig/libnm-glib.pc
353%{_libdir}/pkgconfig/libnm-glib-vpn.pc
354%{_libdir}/pkgconfig/libnm-util.pc
355%{_libdir}/libnm-glib.so
356%{_libdir}/libnm-glib-vpn.so
357%{_libdir}/libnm-util.so
358%dir %{_datadir}/gtk-doc/html/libnm-glib
359%{_datadir}/gtk-doc/html/libnm-glib/*
360%dir %{_datadir}/gtk-doc/html/libnm-util
361%{_datadir}/gtk-doc/html/libnm-util/*
362
363%changelog
364* Sat May  5 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.8.4.0-4
365- add Vendor/Distri Tags
366
367* Sat May  5 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.8.4.0-3
368- add patch100 for fix CVE-2011-2176
369
370* Fri Jun 03 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.4.0-2
371- move nm-version.h to -devel from -glib-devel
372
373* Tue May 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.8.4.0-1
374- update to 0.8.4.0
375- update Patch1 (nm-applet-internal-buildfixes-nm084.patch)
376- update Patch20 (NetworkManger-0.8.4.0-git20110501.patch)
377- update Patch30 (network-manager-applet-0.8.4-git20110503.patch)
378- delete Patch21,22
379
380* Mon May  2 2011 IWAI, Masaharu <iwai@alib.jp> 0.8.2-2
381- drop nm-applet ja.po (Source3)
382
383* Sat Jan 01 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.8.2-1
384- update to 0.8.2
385- add Patch20 (NetworkManager-0.8.2-git20101110.patch)
386- add Patch21 (NetworkManager-0.8.2-git20101118-git20101219.patch)
387- add Patch22 (network-manager-applet-git20101116.patch)
388- update Patch1,2 from FC package
389- add BuildRequires: libgudev1-devel, iptables-devel
390
391* Thu Sep 30 2010 Shu KONNO <owa@bg.wakwak.com> 0.8-2
392- rebuilt with rpm-4.8.1 for pkg-config
393
394* Thu May 06 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8-1
395- update to 0.8 release
396- add BR: polkit-devel, gnome-bluetooth-devel
397- remove BR: hal-devel
398- add R: ModemManager, mobile-broadband-provider-info
399
400* Sat Feb 13 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.1-5.git20090414
401- update patch10,11 to support another emobile card (D02NE)
402
403* Fri Aug 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.1-4.git20090414
404- add Patch11 to support emobile (D02HW,D22HW)
405
406* Tue May 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.1-3.git20090414
407- add Patch10 to probe PHS(willcom,airh,b-mobile..) modems
408
409* Fri May 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.1-2.git20090414
410- update to new git snapshot
411
412* Fri Apr 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.1-1
413- new upstream release
414- update ja.po
415
416* Fri Mar 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.0.99-1
417- new upstream release
418
419* Thu Jan 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.0-1.git20090102
420- update to new git snapshot
421
422* Sat Sep 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.0-0.7.svn4022
423- update to new svn snapshot (r4022)
424
425* Mon Aug 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.0-0.6.svn3909
426- add Requires: initscripts >= 8.80.0
427
428* Fri Aug 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.0-0.5.svn3909
429- update to new svn snapshot (r3909)
430
431* Thu Aug 07 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.0-0.4.svn3900
432- update to new svn snapshot (r3900)
433
434* Thu Aug 07 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.0-0.3.svn3846
435- add Patch10 to fix bug in ifcfg-fedora
436
437* Mon Aug 04 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.0-0.2.svn3846
438- rebuild with PolicyKit 0.9
439
440* Sun Aug 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.0-0.1.svn3846
441- update japanese translation
442
443* Wed Jul 30 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.0-0.0.svn3846
444- initial build for Vine Linux
445
446* Thu Jul 24 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.11.svn3846
447- Convert stored IPv4 static IP addresses to new prefix-based scheme automatically
448- Fix pppd connections to some 3G providers (rh #455348)
449- Make PPPoE "Show Password" option work
450- Hide IPv4 config options that don't make sense in certain configurations
451
452* Fri Jul 18 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.11.svn3830
453- Expose server-returned DHCP options via D-Bus
454- Use avahi-autoipd rather than old built-in IPv4LL implementation
455- Send hostname to DHCP server if provided (DHCP_HOSTNAME ifcfg option)
456- Support sending DHCP Client Identifier to DHCP server
457- Allow forcing 802.1x PEAP Label to '0'
458- Make connection sharing more robust
459- Show status for shared and Ad-Hoc connections if no other connection is active
460
461* Fri Jul 11 2008 Matthias Clasen <mclasen@redhat.com> - 1:0.7.0-0.10.svn3801
462- Drop explicit hal dep in -gnome
463
464* Wed Jul 02 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.10.svn3801
465- Move VPN configuration into connection editor
466- Fix mobile broadband username/password issues
467- Fix issues with broken rfkill setups (rh #448889)
468- Honor APN setting for GSM mobile broadband configurations
469- Fix adding CDMA connections in the connection editor
470
471* Wed Jun 11 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.10.svn3747
472- Update to latest SVN
473- Enable connection sharing
474- Respect VPN-provided routes
475
476* Wed Jun  4 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.4.svn3675
477- Move NM later in the shutdown process (rh #449070)
478- Move libnm-util into a subpackage to allow NM to be removed more easily (rh #351101)
479
480* Mon May 19 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.3.svn3675
481- Read global gateway from /etc/sysconfig/network if missing (rh #446527)
482- nm-system-settings now terminates when dbus goes away (rh #444976)
483
484* Tue May 14 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.3.svn3669
485- Fix initial carrier state detection on devices that are already up (rh #134886)
486
487* Tue May 13 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.3.svn3667
488- Restore behavior of marking wifi devices as "down" when disabling wireless
489- Fix a crash on resume when a VPN was active when going to sleep
490
491* Tue May 13 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.3.svn3665
492- Fix issues with the Fedora plugin not noticing changes made by
493    system-config-network (rh #444502)
494- Allow autoconnection of GSM and CDMA connections
495- Multiple IP address support for user connections
496- Fixes for Mobile Broadband cards that return line speed on connect
497- Implement PIN entry for GSM mobile broadband connections
498- Fix crash when editing unencrypted WiFi connections in the connection editor
499
500* Wed Apr 30 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.3.svn3623
501- Clean up the dispatcher now that it's service is gone (rh #444798)
502
503* Wed Apr 30 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.2.svn3623
504- Fix asking applets for the GSM PIN/PUK
505
506* Wed Apr 30 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.2.svn3622
507- Guess WEP key type in applet when asking for new keys
508- Correct OK button sensitivity in applet when asking for new WEP keys
509
510* Wed Apr 30 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.2.svn3620
511- Fix issues with Mobile Broadband connections caused by device init race patch
512
513* Tue Apr 29 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.2.svn3619
514- Fix device initialization race that caused ethernet devices to get stuck on
515    startup
516- Fix PPPoE connections not showing up in the applet
517- Fix disabled OK button in connection editor some wireless and IP4 settings
518- Don't exit if HAL isn't up yet; wait for it
519- Fix a suspend/resume crash
520
521* Sun Apr 27 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.2.svn3614
522- Don't ask for wireless keys when the driver sends disconnect events during
523        association; wait until the entire assocation times out
524- Replace dispatcher daemon with D-Bus activated callout
525- Fix parsing of DNS2 and DNS3 ifcfg file items
526- Execute dispatcher scripts in alphabetical order
527- Be active at runlevel 2
528- Hook up MAC address widgets for wired & wireless; and BSSID widget for wireless
529- Pre-populate anonymous identity and phase2 widgets correctly
530- Clear out unused connection keys from GConf
531
532* Tue Apr 22 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.2.svn3590
533- Don't select devices without a default gateway as the default route (rh #437338)
534- Fill in broadcast address if not specified (rh #443474)
535- Respect manual VPN IPv4 configuration options
536- Show Connection Information for the device with the default route only
537
538* Fri Apr 18 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.2.svn3578
539- Add dbus-glib-devel BuildRequires for NetworkManager-glib-devel (rh #442978)
540- Add PPP settings page to connection editor
541- Fix a few crashes with PPPoE
542- Fix active connection state changes that confused clients
543
544* Thu Apr 17 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.2.svn3571
545- Fix build in pppd-plugin
546
547* Thu Apr 17 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.2.svn3570
548- PPPoE authentication fixes
549- More robust handing of mobile broadband device communications
550
551* Wed Apr 16 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.2.svn3566
552- Honor options from /etc/sysconfig/network for blocking until network is up
553
554* Wed Apr 16 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3566
555- Turn on Add/Edit in the connection editor
556- Don't flush or change IPv6 addresses or routes
557- Enhance nm-online tool
558- Some serial communication fixes for mobile broadband
559
560* Wed Apr  9 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3549
561- Fix issues with VPN passwords not getting found
562
563* Tue Apr  8 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3548
564- Fix builds due to glib2 breakage of GStaticMutex with gcc 4.3
565
566* Tue Apr  8 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3547
567- Fix WEP key index handling in UI
568- Fix handling of NM_CONTROLLED in ifcfg files
569- Show device managed state in applet menu
570- Show wireless enabled state in applet menu
571- Better handling of default DHCP connections for wired devices
572- Fix loading of connection editor on KDE (rh #435344)
573
574* Wed Apr  2 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3527
575- Honor MAC address locking for wired & wireless devices
576
577* Mon Mar 31 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3521
578- Show VPN failures
579- Support Static WEP key indexes
580- Fix parsing of WEP keys from ifcfg files
581- Pre-fill wireless security UI bits in connection editor and applet
582
583* Tue Mar 18 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3476
584- Grab system settings from /etc/sysconfig/network-scripts, not from profiles
585
586* Tue Mar 18 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3473
587- Fix crashes when returning VPN secrets from the applet to NM
588
589* Tue Mar 18 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3472
590- Fix crashes on suspend/resume and exit (rh #437426)
591- Ensure there's always an option to chose the wired device
592- Never set default route via an IPv4 link-local addressed device (rh #437338)
593
594* Wed Mar 12 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3440
595- Fix DHCP rebind behavior
596- Preliminary PPPoE support
597
598* Mon Mar 10 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.9.1.svn3417
599- Fix gnome-icon-theme Requires, should be on gnome subpackage
600
601* Mon Mar 10 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3417
602- Honor DHCP rebinds
603- Multiple active device support
604- Better error handling of mobile broadband connection failures
605- Allow use of interface-specific dhclient config files
606- Recognize system settings which have no TYPE item
607
608* Sun Mar  2 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3370
609- Fix crash of nm-system-settings on malformed ifcfg files (rh #434919)
610- Require gnome-icon-theme to pick up lock.png (rh #435344)
611- Fix applet segfault after connection removal via connection editor or GConf
612
613* Fri Feb 29 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3369
614- Don't create multiple connections for hidden access points
615- Fix scanning behavior
616
617* Thu Feb 14 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3319
618- Rework connection editor connection list
619
620* Tue Feb 12 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3312
621- Better handling of changes in the profile directory by the system settings
622        serivce
623
624* Thu Feb  7 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3302
625- Enable system settings service
626- Allow explicit disconnection of mobile broadband devices
627- Fix applet memory leaks (rh #430178)
628- Applet Connection Information dialog tweaks (gnome.org #505899)
629- Filter input characters to passphrase/key entry (gnome.org #332951)
630- Fix applet focus stealing prevention behavior
631
632* Mon Jan 21 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3261
633- Add CDMA mobile broadband support (if supported by HAL)
634- Rework applet connection and icon handling
635- Enable connection editor (only for deleting connections)
636
637* Fri Jan 11 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3235
638- Fix crash when activating a mobile broadband connection
639- Better handling of non-SSID-broadcasting APs on kernels that support it
640    (gnome.org #464215) (rh #373841)
641- Honor DHCP-server provided MTU if present (gnome.org #332953)
642- Use previous DNS settings if the VPN concentrator doesn't provide any
643    (gnome.org #346833)
644
645* Fri Jan  4 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3204
646- Fix WPA passphrase hashing on big endian (PPC, Sparc, etc) (rh #426233)
647
648* Tue Dec 18 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3181
649- Fixes to work better with new libnl (rh #401761)
650
651* Tue Dec 18 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3180
652- Fix WPA/WPA2 Enterprise Phase2 connections (rh #388471)
653
654* Wed Dec  5 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3138
655- Fix applet connection comparison which failed to send connection updated
656    signals to NM in some cases
657- Make VPN connection applet more robust against plugin failures
658
659* Tue Dec  4 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3134
660- 64-bit -Wall compile fixes
661
662* Tue Dec  4 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.8.svn3133
663- Fix applet crash when choosing to ignore the CA certificate (rh #359001)
664- Fix applet crash when editing VPN properties and VPN connection failures (rh #409351)
665- Add file filter name in certificate file picker dialog (rh #410201)
666- No longer start named when starting NM (rh #381571)
667
668* Tue Nov 27 2007 Jeremy Katz <katzj@redhat.com> - 1:0.7.0-0.8.svn3109
669- Fix upgrading from an earlier rawhide snap
670
671* Mon Nov 26 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.6.6.svn3109
672- Fix device descriptions shown in applet menu
673
674* Mon Nov 26 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.6.5.svn3109
675- Fix crash when deactivating VPN connections
676
677* Mon Nov 19 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.6.5.svn3096
678- Fix crash and potential infinite nag dialog loop when ignoring CA certificates
679
680* Mon Nov 19 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.6.4.svn3096
681- Fix crash when ignoring CA certificate for EAP-TLS, EAP-TTLS, and EAP-PEAP
682
683* Mon Nov 19 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.6.3.svn3096
684- Fix connections when picking a WPA Enterprise AP from the menu
685- Fix issue where applet would provide multiple same connections to NM
686
687* Thu Nov 15 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.6.3.svn3094
688- Add support for EAP-PEAP (rh #362251)
689- Fix EAP-TLS private key handling
690
691* Tue Nov 13 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.6.2.svn3080
692- Clarify naming of WPA & WPA2 Personal encryption options (rh #374861, rh #373831)
693- Don't require a CA certificate for applicable EAP methods (rh #359001)
694- Fix certificate and private key handling for EAP-TTLS and EAP-TLS (rh #323371)
695- Fix applet crash with USB devices (rh #337191)
696- Support upgrades from NM 0.6.x GConf settings
697
698* Thu Nov  1 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.6.1.svn3030
699- Fix applet crash with USB devices that don't advertise a product or vendor
700    (rh #337191)
701
702* Sat Oct 27 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.5.svn3030
703- Fix crash when getting WPA secrets (rh #355041)
704
705* Fri Oct 26 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.4.svn3030
706- Bring up ethernet devices by default if no connections are defined (rh #339201)
707- Fix crash when switching networks or bringing up secrets dialog (rh #353091)
708- Fix crash when editing VPN connection properties a second time
709- Fix crash when cancelling the secrets dialog if another connection was
710    activated in the mean time
711- Fix disembodied notification bubbles (rh #333391)
712
713* Thu Oct 25 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.4.svn3020
714- Handle PEM certificates
715- Hide WPA-PSK Type combo since it's as yet unused
716- Fix applet crash when AP security options changed and old secrets are still
717    in the keyring
718- Fix applet crash connecting to unencrypted APs via the other network dialog
719
720* Wed Oct 24 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn3020
721- Fix WPA Enterprise connections that use certificates
722- Better display of SSIDs in the menu
723
724* Wed Oct 24 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn3016
725- Fix getting current access point
726- Fix WPA Enterprise connections
727- Wireless dialog now defaults to sensible choices based on the connection
728- Tell nscd to restart if needed, don't silently kill it
729
730* Tue Oct 23 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn3014
731- Suppress excessive GConf updates which sometimes caused secrets to be cleared
732    at the wrong times, causing connections to fail
733- Various EAP and LEAP related fixes
734
735* Tue Oct 23 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn3008
736- Make WPA-EAP and Dynamic WEP options connect successfully
737- Static IPs are now handled correctly in NM itself
738
739* Mon Oct 22 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2995
740- Add Dynamic WEP as a supported authentication/security option
741
742* Sun Oct 21 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2994
743- Re-enable "Connect to other network"
744- Switch to new GUI bits for wireless security config and password entry
745
746* Tue Oct 16 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2983
747- Add rfkill functionality
748- Fix applet crash when choosing wired networks from the menu
749
750* Wed Oct 10 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2970
751- Fix segfault with deferred connections
752- Fix default username with vpnc VPN plugin
753- Hidden SSID fixes
754
755* Tue Oct  9 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2962
756- Fix merging of non-SSID-broadcasting APs into a device's scan list
757- Speed up opening of the applet menu
758
759* Tue Oct  9 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2961
760- New snapshot
761        - Add timestamps to networks to connect to last used wireless network
762        - Turn autoconnect on in the applet
763        - Hidden SSID support
764        - Invalidate failed or cancelled connections again
765        - Fix issues with reactivation of the same device
766        - Handle connection updates in the applet (ex. find new VPN connections)
767        - Fix vertical sizing of menu items
768        - Fix AP list on wireless devices other than the first device in the applet
769        - Fix matching of current AP with the right menu item
770
771* Fri Sep 28 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2914
772- New snapshot
773        - Add WPA passphrase support to password dialog
774        - Applet now reflects actual VPN behavior of one active connection
775        - Applet now notices VPN active connections on startup
776        - Fix connections with some WPA and WEP keys
777
778* Thu Sep 27 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2907
779- New snapshot
780        - VPN support (only vpnc plugin ported at this time)
781
782* Tue Sep 25 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2886
783- New snapshot
784        - Make wired device carrier state work in the applet
785        - Fix handling of errors with unencrypted APs
786        - Fix "frozen" applet icon by reporting NM state better
787        - Fix output of AP frequency in nm-tool
788
789* Tue Sep 25 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2880
790- New snapshot
791        - Fix applet icon sizing on start (mclasen)
792        - Fix nm-tool installation (mclasen)
793        - Fix 'state' method call return (#303271)
794        - Fix 40-bit WEP keys (again)
795        - Fix loop when secrets were wrong/invalid
796        - Fix applet crash when clicking Cancel in the password dialog
797        - Ensure NM doesn't get stuck waiting for the supplicant to re-appear
798                if it crashes or goes away
799        - Make VPN properties applet work again
800        - Increase timeout for network password entry
801
802* Fri Sep 21 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2852
803- New snapshot (fix unencrypted & 40 bit WEP)
804
805* Fri Sep 21 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2849
806- New snapshot
807
808* Fri Sep 21 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.3.svn2844
809- New snapshot
810
811* Thu Sep 20 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.2.svn2833
812- New SVN snapshot of 0.7 that sucks less
813
814* Thu Aug 30 2007 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.1.svn2736
815- Update to SVN snapshot of 0.7
816
817* Mon Aug 13 2007 Christopher Aillon <caillon@redhat.com> 1:0.6.5-9
818- Update the license tag
819
820* Tue Aug  8 2007 Christopher Aillon <caillon@redhat.com> 1:0.6.5-8
821- Own /etc/NetworkManager/dispatcher.d and /etc/NetworkManager/VPN (#234004)
822
823* Wed Jun 27 2007 Dan Williams <dcbw@redhat.com> 1:0.6.5-7
824- Fix Wireless Enabled checkbox when no killswitches are present
825
826* Thu Jun 21 2007 Dan Williams <dcbw@redhat.com> 1:0.6.5-6
827- Update to stable branch snapshot:
828    - More fixes for ethernet link detection (gnome #354565, rh #194124)
829    - Support for HAL-detected rfkill switches
830
831* Sun Jun 10 2007 Dan Williams <dcbw@redhat.com> 1:0.6.5-5
832- Fix applet crash on 64-bit platforms when choosing
833    "Connect to other wireless network..." (gnome.org #435036)
834- Add debug output for ethernet device link changes
835
836* Thu Jun  7 2007 Dan Williams <dcbw@redhat.com> 1:0.6.5-4
837- Fix ethernet link detection (gnome #354565, rh #194124)
838- Fix perpetual credentials request with private key passwords in the applet
839- Sleep a bit before activating wireless cards to work around driver bugs
840
841* Mon Jun  4 2007 Dan Williams <dcbw@redhat.com> 1:0.6.5-3
842- Don't spawn wpa_supplicant with -o
843
844* Wed Apr 25 2007 Christopher Aillon <caillon@redhat.com> 1:0.6.5-2
845- Fix requires macro (237806)
846
847* Thu Apr 19 2007 Christopher Aillon <caillon@redhat.com> 1:0.6.5-1
848- Update to 0.6.5 final
849- Don't lose scanned security information
850
851* Mon Apr  9 2007 Dan Williams  <dcbw@redhat.com> - 1:0.6.5-0.7.svn2547
852- Update from trunk
853    - Updated translations
854    - Cleaned-up VPN properties dialogs
855    - Fix 64-bit kernel leakage issues in WEXT
856    - Don't capture and redirect wpa_supplicant log output
857
858* Wed Mar 28 2007 Matthew Barnes  <mbarnes@redhat.com> 1:0.6.5-0.6.svn2474
859- Close private D-Bus connections. (#232691)
860
861* Sun Mar 25 2007 Matthias Clasen <mclasen@redhat.com> 1:0.6.5-0.5.svn2474
862- Fix a directory ownership issue.  (#233763)
863
864* Thu Mar 15 2007 Dan Williams <dcbw@redhat.com> - 1:0.6.5-0.4.svn2474
865- Update to pre-0.6.5 snapshot
866
867* Thu Feb  8 2007 Christopher Aillon <caillon@redhat.com> - 1:0.6.5-0.3.cvs20061025
868- Guard against D-Bus LimitExceeded messages
869
870* Fri Feb  2 2007 Christopher Aillon <caillon@redhat.com> - 1:0.6.5-0.2.cvs20061025
871- Move .so file to -devel package
872
873* Sat Nov 25 2006 Matthias Clasen <mclasen@redhat.com>
874- Own the /etc/NetworkManager/dispatcher.d directory
875- Require pkgconfig for the -devel packages
876- Fix compilation with dbus 1.0
877
878* Wed Oct 25 2006 Dan Williams <dcbw@redhat.com> - 1:0.6.5-0.cvs20061025
879- Update to a stable branch snapshot
880    - Gnome applet timeout/redraw suppression when idle
881    - Backport of LEAP patch from HEAD (from Thiago Bauermann)
882    - Backport of asynchronous scanning patch from HEAD
883    - Make renaming of VPN connections work (from Tambet Ingo)
884    - Dial down wpa_supplicant debug spew
885    - Cleanup of key/passphrase request scenarios (from Valentine Sinitsyn)
886    - Shut down VPN connections on logout (from Robert Love)
887    - Fix WPA passphrase hashing on PPC
888
889* Thu Oct 19 2006 Christopher Aillon <caillon@redhat.com> - 1:0.6.4-6
890- Own /usr/share/NetworkManager and /usr/include/NetworkManager
891
892* Mon Sep  4 2006 Christopher Aillon <caillon@redhat.com> - 1:0.6.4-5
893- Don't wake up to redraw if NM is inactive (#204850)
894
895* Wed Aug 30 2006 Bill Nottingham <notting@redhat.com> - 1:0.6.4-4
896- add epochs in requirements
897
898* Wed Aug 30 2006 Dan Williams <dcbw@redhat.com> - 1:0.6.4-3
899- Fix FC-5 buildreqs
900
901* Wed Aug 30 2006 Dan Williams <dcbw@redhat.com> - 1:0.6.4-2
902- Revert FC6 to latest stable NM
903- Update to stable snapshot
904- Remove bind/caching-nameserver hard requirement
905
906* Tue Aug 29 2006 Christopher Aillon <caillon@redhat.com> - 0.7.0-0.cvs20060529.7
907- BuildRequire wireless-tools-devel and perl-XML-Parser
908- Update the BuildRoot tag
909
910* Wed Aug 16 2006 Ray Strode <rstrode@redhat.com> - 0.7.0-0.cvs20060529.6
911- add patch to make networkmanager less verbose (bug 202832)
912
913* Wed Aug  9 2006 Ray Strode <rstrode@redhat.com> - 0.7.0-0.cvs20060529.5
914- actually make the patch in 0.7.0-0.cvs20060529.4 apply
915
916* Fri Aug  4 2006 Ray Strode <rstrode@redhat.com> - 0.7.0-0.cvs20060529.4
917- Don't ever elect inactive wired devices (bug 194124).
918
919* Wed Jul 19 2006 John (J5) Palmieri <johnp@redhat.com> - 0.7.0-0.cvs20060529.3
920- Add patch to fix deprecated dbus functions
921
922* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.7.0-0.cvs20060529.2
923- Add BR for dbus-glib-devel
924
925* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.7.0-0.cvs20060529.1.1
926- rebuild
927
928* Mon May 29 2006 Dan Williams <dcbw@redhat.com> - 0.7.0-0.cvs20060529
929- Update to latest CVS
930        o Gnome.org #333420: dialog do not have window icons
931        o Gnome.org #336913: HIG tweaks for vpn properties pages
932        o Gnome.org #336846: HIG tweaks for nm-vpn-properties
933        o Gnome.org #336847: some bugs in nm-vpn-properties args parsing
934        o Gnome.org #341306: nm-vpn-properties crashes on startup
935        o Gnome.org #341263: Version 0.6.2-0ubuntu5 crashes on nm_device_802_11_wireless_get_type
936        o Gnome.org #341297: displays repeated keyring dialogs on resume from suspend
937        o Gnome.org #342400: Building libnm-util --without-gcrypt results in linker error
938        o Gnome.org #342398: Eleminate Gnome dependency for NetworkManager
939        o Gnome.org #336532: declaration of 'link' shadows a global declaration
940- Specfile fixes (#rh187489#)
941
942* Sun May 21 2006 Dan Williams <dcbw@redhat.com> - 0.7.0-0.cvs20060521
943- Update to latest CVS
944- Drop special-case-madwifi.patch, since WEXT code is in madwifi-ng trunk now
945
946* Fri May 19 2006 Bill Nottingham <notting@redhat.com> - 0.6.2-3.fc6
947- use the same 0.6.2 tarball as FC5, so we have the same VPN interface
948  (did he fire ten args, or only nine?)
949
950* Thu Apr 27 2006 Jeremy Katz <katzj@redhat.com> - 0.6.2-2.fc6
951- use the hal device type instead of poking via ioctl so that wireless
952  devices are properly detected even if the kill switch has been used
953
954* Thu Mar 30 2006 Dan Williams <dcbw@redhat.com> - 0.6.2-1
955- Update to 0.6.2:
956    * Fix various WPA-related bugs
957    * Clean up leaks
958    * Increased DHCP timeout to account for slow DHCP servers, or STP-enabled
959        switches
960    * Allow applet to reconnect on dbus restarts
961    * Add "Dynamic WEP" support
962    * Allow hiding of password/key entry text
963    * More responsive connection switching
964
965* Tue Mar 14 2006 Peter Jones <pjones@redhat.com> - 0.6.0-3
966- Fix device bringup on resume
967
968* Mon Mar  6 2006 Dan Williams <dcbw@redhat.com> 0.6.0-2
969- Don't let wpa_supplicant perform scanning with non-WPA drivers
970
971* Mon Mar  6 2006 Dan Williams <dcbw@redhat.com> 0.6.0-1
972- Update to 0.6.0 release
973- Move autostart file to /usr/share/gnome/autostart
974
975* Thu Mar  2 2006 Jeremy Katz <katzj@redhat.com> - 0.5.1-18.cvs20060302
976- updated cvs snapshot.  seems to make airo much less neurotic
977
978* Thu Mar  2 2006 Christopher Aillon <caillon@redhat.com>
979- Move the unversioned libnm_glib.so to the -devel package
980
981* Wed Mar  1 2006 Dan Williams <dcbw@redhat.com> 0.5.1-18.cvs20060301
982- Fix VPN-related crash
983- Fix issue where NM would refuse to activate a VPN connection once it had timed out
984- Log wpa_supplicant output for better debugging
985
986* Tue Feb 28 2006 Christopher Aillon <caillon@redhat.com> 0.5.1-17.cvs20060228
987- Tweak three-scan-prune.patch
988
989* Mon Feb 27 2006 Christopher Aillon <caillon@redhat.com> 0.5.1-16.cvs20060227
990- Don't prune networks until they've gone MIA for three scans, not one.
991
992* Mon Feb 27 2006 Christopher Aillon <caillon@redhat.com> 0.5.1-15.cvs20060227
993- Update snapshot, which fixes up the libnotify stuff.
994
995* Fri Feb 24 2006 Dan Williams <dcbw@redhat.coM> 0.5.1-14.cvs20060221
996- Move libnotify requires to NetworkManager-gnome, not core NM package
997
998* Tue Feb 21 2006 Dan Williams <dcbw@redhat.com> 0.5.1-13.cvs20060221
999- Add BuildRequires: libnl-devel (#rh179438#)
1000- Fix libnm_glib to not clobber an application's existing dbus connection
1001        (#rh177546#, gnome.org #326572)
1002- libnotify support
1003- AP compatibility fixes
1004
1005* Mon Feb 13 2006 Dan Williams <dcbw@redhat.com> 0.5.1-12.cvs20060213
1006- Minor bug fixes
1007- Update to VPN dbus API for passing user-defined routes to vpn service
1008
1009* Sun Feb 12 2006 Christopher Aillon <caillon@redhat.com> 0.5.1-11.cvs20060205
1010- Rebuild
1011
1012* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 0.5.1-10.cvs20060205.1
1013- rebuilt for new gcc4.1 snapshot and glibc changes
1014
1015* Sun Feb  5 2006 Dan Williams <dcbw@redhat.com> 0.5.1-10.cvs20060205
1016- Workarounds for madwifi/Atheros cards
1017- Do better with non-SSID-broadcasting access points
1018- Fix hangs when access points change settings
1019
1020* Thu Feb  2 2006 Dan Williams <dcbw@redhat.com> 0.5.1-9.cvs20060202
1021- Own /var/run/NetworkManager, fix SELinux issues
1022
1023* Tue Jan 31 2006 Dan Williams <dcbw@redhat.com> 0.5.1-8.cvs20060131
1024- Switch to autostarting the applet instead of having it be session-managed
1025- Work better with non-broadcasting access points
1026- Add more manufacturer default SSIDs to the blacklist
1027
1028* Tue Jan 31 2006 Dan Williams <dcbw@redhat.com> 0.5.1-7.cvs20060131
1029- Longer association timeout
1030- Fix some SELinux issues
1031- General bug and cosmetic fixes
1032
1033* Fri Jan 27 2006 Dan Williams <dcbw@redhat.com> 0.5.1-6.cvs20060127
1034- Snapshot from CVS
1035- WPA Support!  Woohoo!
1036
1037* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
1038- rebuilt
1039
1040* Thu Dec 01 2005 John (J5) Palmieri <johnp@redhat.com> - 0.5.1-5
1041- rebuild for new dbus
1042
1043* Fri Nov 18 2005 Peter Jones <pjones@redhat.com> - 0.5.1-4
1044- Don't kill the network connection when you upgrade the package.
1045
1046* Fri Oct 21 2005 Christopher Aillon <caillon@redhat.com> - 0.5.1-3
1047- Split out the -glib subpackage to have a -glib-devel package as well
1048- Add epoch to version requirements for bind and wireless-tools
1049- Update URL of project
1050
1051* Wed Oct 19 2005 Christopher Aillon <caillon@redhat.com> - 0.5.1-2
1052- NetworkManager 0.5.1
1053
1054* Mon Oct 17 2005 Christopher Aillon <caillon@redhat.com> - 0.5.0-2
1055- NetworkManager 0.5.0
1056
1057* Mon Oct 10 2005 Dan Williams <dcbw@redaht.com> - 0.4.1-5.cvs20051010
1058- Fix automatic wireless connections
1059- Remove usage of NMLoadModules callout, no longer needed
1060- Try to fix deadlock when menu is down and keyring dialog pops up
1061
1062* Sun Oct 09 2005 Dan Williams <dcbw@redhat.com> - 0.4.1-4.cvs20051009
1063- Update to latest CVS
1064        o Integrate connection progress with applet icon (Chris Aillon)
1065        o More information in "Connection Information" dialog (Robert Love)
1066        o Shorten time taken to sleep
1067        o Make applet icon wireless strength levels a bit more realistic
1068        o Talk to named using DBUS rather than spawning our own
1069                - You need to add "-D" to the OPTIONS line in /etc/sysconfig/named
1070                - You need to set named to start as a service on startup
1071
1072* Thu Sep 22 2005 Dan Williams <dcbw@redhat.com> - 0.4.1-3.cvs20050922
1073- Update to current CVS to fix issues with routing table and /sbin/ip
1074
1075* Mon Sep 12 2005 Jeremy Katz <katzj@redhat.com> - 0.4.1-2.cvs20050912
1076- update to current CVS and rebuild (workaround for #168120)
1077
1078* Fri Aug 19 2005 Dan Williams <dcbw@redhat.com> - 0.4.1-2.cvs20050819
1079- Fix occasional hang in NM caused by the applet
1080
1081* Wed Aug 17 2005 Dan Williams <dcbw@redhat.com> - 0.4.1
1082- Update to NetworkManager 0.4.1
1083
1084* Tue Aug 16 2005 Dan Williams <dcbw@redhat.com> - 0.4-36.cvs20050811
1085- Rebuild against new cairo/gtk
1086
1087* Thu Aug 11 2005 Dan Williams <dcbw@redhat.com> - 0.4-35.cvs20050811
1088- Update to latest CVS
1089        o Use DHCP server address as gateway address if the DHCP server doesn't give
1090                us a gateway address #rh165698#
1091        o Fixes to the applet (Robert Love)
1092        o Better caching of information in the applet (Bill Moss)
1093        o Generate automatic suggested Ad-Hoc network name from machine's hostname
1094                (Robert Love)
1095        o Update all network information on successfull connect, not just
1096                authentication method
1097
1098* Fri Jul 29 2005 Ray Strode  <rstrode@redhat.com> - 0.4-34.cvs20050729
1099- Update to latest CVS to get fix for bug 165683.
1100
1101* Mon Jul 11 2005 Dan Williams <dcbw@redhat.com> - 0.4-34.cvs20050629
1102- Move pkgconfig file to devel package (#162316, thanks to Michael Schwendt)
1103
1104* Wed Jun 29 2005 David Zeuthen <davidz@redhat.com> - 0.4-33.cvs20050629
1105- Update to latest CVS to get latest VPN interface settings to satisfy
1106  BuildReq for NetworkManager-vpnc in Fedora Extras Development
1107- Latest CVS also contains various bug- and UI-fixes
1108
1109* Fri Jun 17 2005 Dan Williams <dcbw@redhat.com> - 0.4-32.cvs20050617
1110- Update to latest CVS
1111        o VPN connection import/export capability
1112        o Fix up some menu item names
1113- Move nm-vpn-properties.glade to the gnome subpackage
1114
1115* Thu Jun 16 2005 Dan Williams <dcbw@redhat.com> - 0.4-31.cvs20050616
1116- Update to latest CVS
1117        o Clean up wording in Wireless Network Discovery menu
1118        o Robert Love's applet beautify patch
1119
1120* Wed Jun 15 2005 Dan Williams <dcbw@redhat.com> - 0.4-30.cvs20050615
1121- Update to latest CVS
1122
1123* Mon May 16 2005 Dan Williams <dcbw@redhat.com> - 0.4-15.cvs30050404
1124- Fix dispatcher and applet CFLAGS so they gets compiled with FORTIFY_SOURCE
1125
1126* Mon May 16 2005 Dan Williams <dcbw@redhat.com> - 0.4-14.cvs30050404
1127- Fix segfault in NetworkManagerDispatcher, add an initscript for it
1128
1129* Mon May 16 2005 Dan Williams <dcbw@redhat.com> - 0.4-13.cvs30050404
1130- Fix condition that may have resulted in DHCP client returning success
1131        when it really timed out
1132
1133* Sat May 14 2005 Dan Williams <dcbw@redhat.com> - 0.4-12.cvs20050404
1134- Enable OK button correctly in Passphrase and Other Networks dialogs when
1135        using ASCII or Hex WEP keys
1136
1137* Thu May  5 2005 Dan Williams <dcbw@redhat.com> - 0.4-11.cvs20050404
1138- #rh154391# NetworkManager dies on startup (don't force-kill nifd)
1139
1140* Wed May  4 2005 Dan Williams <dcbw@redhat.com> - 0.4-10.cvs20050404
1141- Fix leak of a socket in DHCP code
1142
1143* Wed May  4 2005 Dan Williams <dcbw@redhat.com> - 0.4-9.cvs20050404
1144- Fix some memory leaks (Tom Parker)
1145- Join to threads rather than spinning for their completion (Tom Parker)
1146- Fix misuse of a g_assert() (Colin Walters)
1147- Fix return checking of an ioctl() (Bill Moss)
1148- Better detection and matching of hidden access points (Bill Moss)
1149- Don't use varargs, and therefore don't crash on PPC (Peter Jones)
1150
1151* Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 0.4-8.cvs20050404
1152- fix build with newer dbus
1153
1154* Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 0.4-7.cvs20050404
1155- silence %%post
1156
1157* Mon Apr  4 2005 Dan Williams <dcbw@redhat.com> 0.4-6.cvs20050404
1158- #rh153234# NetworkManager quits/cores just as a connection is made
1159
1160* Fri Apr  2 2005 Dan Williams <dcbw@redhat.com> 0.4-5.cvs20050402
1161- Update from latest CVS HEAD
1162
1163* Fri Mar 25 2005 Christopher Aillon <caillon@redhat.com> 0.4-4.cvs20050315
1164- Update the GTK+ theme icon cache on (un)install
1165
1166* Tue Mar 15 2005 Ray Strode <rstrode@redhat.com> 0.4-3.cvs20050315
1167- Pull from latest CVS HEAD
1168
1169* Tue Mar 15 2005 Ray Strode <rstrode@redhat.com> 0.4-2.cvs20050315
1170- Upload new source tarball (woops)
1171
1172* Tue Mar 15 2005 Ray Strode <rstrode@redhat.com> 0.4-1.cvs20050315
1173- Pull from latest CVS HEAD (hopefully works again)
1174
1175* Mon Mar  7 2005 Ray Strode <rstrode@redhat.com> 0.4-1.cvs20050307
1176- Pull from latest CVS HEAD
1177- Commit broken NetworkManager to satisfy to dbus dependency
1178
1179* Fri Mar  4 2005 Dan Williams <dcbw@redhat.com> 0.3.4-1.cvs20050304
1180- Pull from latest CVS HEAD
1181- Rebuild for gcc 4.0
1182
1183* Tue Feb 22 2005 Dan Williams <dcbw@redhat.com> 0.3.3-2.cvs20050222
1184- Update from CVS
1185
1186* Mon Feb 14 2005 Dan Williams <dcbw@redhat.com> 0.3.3-2.cvs20050214.x.1
1187- Fix free of invalid pointer for multiple search domains
1188
1189* Mon Feb 14 2005 Dan Williams <dcbw@redhat.com> 0.3.3-2.cvs20050214
1190- Never automatically choose a device that doesn't support carrier detection
1191- Add right-click menu to applet, can now "Pause/Resume" scanning through it
1192- Fix DHCP Renew/Rebind timeouts
1193- Fix frequency cycling problem on some cards, even when scanning was off
1194- Play better with IPv6
1195- Don't send kernel version in DHCP packets, and ensure DHCP packets are at
1196        least 300 bytes in length to work around broken router
1197- New DHCP options D-BUS API by Dan Reed
1198- Handle multiple domain search options in DHCP responses
1199
1200* Wed Feb  2 2005 Dan Williams <dcbw@redhat.com> 0.3.3-1.cvs20050202
1201- Display wireless network name in applet tooltip
1202- Hopefully fix double-default-route problem
1203- Write out valid resolv.conf when we exit
1204- Make multi-domain search options work
1205- Rework signal strength code to be WEXT conformant, if strength is
1206        still wierd then its 95% surely a driver problem
1207- Fix annoying instances of suddenly dropping and reactivating a
1208        wireless device (Cisco cards were worst offenders here)
1209- Fix some instances of NetworkManager not remembering your WEP key
1210- Fix some races between NetworkManager and NetworkManagerInfo where
1211        NetworkManager wouldn't recognize changes in the allowed list
1212- Don't shove Ad-Hoc Access Point MAC addresses into GConf
1213
1214* Tue Jan 25 2005 Dan Williams <dcbw@redhat.com> 0.3.3-1.cvs20050125
1215- Play nice with dbus 0.23
1216- Update our list of Allowed Wireless Networks more quickly
1217
1218* Mon Jan 24 2005 Dan Williams <dcbw@redhat.com> 0.3.3-1.cvs20050124
1219- Update to latest CVS
1220- Make sure we start as late as possible so that we ensure dbus & HAL
1221        are already around
1222- Fix race in initial device activation
1223
1224* Mon Jan 24 2005 Than Ngo <than@redhat.com> 0.3.3-1.cvs20050112.4
1225- rebuilt against new wireless tool
1226
1227* Thu Jan 21 2005 <dcbw@redhat.com> - 0.3.3-1.cvs20050118
1228- Fix issue where NM wouldn't recognize that access points were
1229        encrypted, and then would try to connect without encryption
1230- Refine packaging to put client library in separate package
1231- Remove bind+caching-nameserver dep for FC-3, use 'nscd -i hosts'
1232        instead.  DNS queries may timeout now right after device
1233        activation due to this change.
1234
1235* Wed Jan 12 2005 <dcbw@redhat.com> - 0.3.3-1.cvs20050112
1236- Update to latest CVS
1237- Fixes to DHCP code
1238- Link-Local (ZeroConf/Rendezvous) support
1239- Use bind in "caching-nameserver" mode to work around stupidity
1240        in glibc's resolver library not recognizing resolv.conf changes
1241- #rh144818# Clean up the specfile (Patch from Matthias Saou)
1242- Ad-Hoc mode support with Link-Local addressing only (for now)
1243- Fixes for device activation race conditions
1244- Wireless scanning in separate thread
1245
1246* Wed Dec  8 2004 <dcbw@redhat.com> - 0.3.2-4.3.cvs20041208
1247- Update to CVS
1248- Updates to link detection, DHCP code
1249- Remove NMLaunchHelper so we start up faster and don't
1250        block for a connection.  This means services that depend
1251        on the network may fail if they start right after NM
1252- Make sure DHCP renew/rebinding works
1253
1254* Wed Nov 17 2004 <dcbw@redhat.com> - 0.3.2-3.cvs20041117
1255- Update to CVS
1256- Fixes to link detection
1257- Better detection of non-ESSID-broadcasting access points
1258- Don't dialog-spam the user if a connection fails
1259
1260* Mon Nov 11 2004 <dcbw@redhat.com> - 0.3.2-2.cvs20041115
1261- Update to CVS
1262- Much better link detection, works with Open System authentication
1263- Blacklist wireless cards rather than whitelisting them
1264
1265* Fri Oct 29 2004 <dcbw@redhat.com> - 0.3.2-2.cvs20041029
1266- #rh134893# NetworkManagerInfo and the panel-icon life-cycle
1267- #rh134895# Status icon should hide when in Wired-only mode
1268- #rh134896# Icon code needs rewrite
1269- #rh134897# "Other Networks..." dialog needs implementing
1270- #rh135055# Menu highlights incorrectly in NM
1271- #rh135648# segfault with cipsec0
1272- #rh135722# NetworkManager will not allow zaurus to sync via usb0
1273- #rh135999# NetworkManager-0.3.1 will not connect to 128 wep
1274- #rh136866# applet needs tooltips
1275- #rh137047# lots of applets, yay!
1276- #rh137341# Network Manager dies after disconnecting from wired network second time
1277- Better checking for wireless devices
1278- Fix some memleaks
1279- Fix issues with dhclient declining an offered address
1280- Fix an activation thread deadlock
1281- More accurately detect "Other wireless networks" that are encrypted
1282- Don't bring devices down as much, won't hotplug-spam as much anymore
1283        about firmware
1284- Add a "network not found" dialog when the user chooses a network that could
1285        not be connected to
1286
1287* Tue Oct 26 2004 <dcbw@redhat.com> - 0.3.1-2
1288- Fix escaping of ESSIDs in gconf
1289
1290* Tue Oct 19 2004  <jrb@redhat.com> - 0.3.1-1
1291- minor point release to improve error handling and translations
1292
1293* Fri Oct 15 2004 Dan Williams <dcbw@redhat.com> 0.3-1
1294- Update from CVS, version 0.3
1295
1296* Tue Oct 12 2004 Dan Williams <dcbw@redhat.com> 0.2-4
1297- Update from CVS
1298- Improvements:
1299        o Better link checking on wireless cards
1300        o Panel applet now a Notification Area icon
1301        o Static IP configuration support
1302
1303* Mon Sep 13 2004 Dan Williams <dcbw@redhat.com> 0.2-3
1304- Update from CVS
1305
1306* Sat Sep 11 2004 Dan Williams <dcbw@redhat.com> 0.2-2
1307- Require gnome-panel, not gnome-panel-devel
1308- Turn off by default
1309
1310* Thu Aug 26 2004 Dan Williams <dcbw@redhat.com> 0.2-1
1311- Update to 0.2
1312
1313* Thu Aug 26 2004 Florian La Roche <Florian.LaRoche@redhat.de>
1314- spec-changes to req glib2 instead of glib
1315
1316* Fri Aug 20 2004 Dan Williams <dcbw@redhat.com> 0.1-3
1317- First public release
1318
Note: See TracBrowser for help on using the repository browser.