source: projects/specs/trunk/N/NetworkManager/NetworkManager-vl.spec @ 11572

Revision 11572, 54.3 KB checked in by tomop, 6 years ago (diff)

NetworkManager-1.10.2-1

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