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

Revision 7633, 48.9 KB checked in by Takemikaduchi, 11 years ago (diff)

GNOME-3.8.1

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