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

Revision 2422, 49.9 KB checked in by Takemikaduchi, 13 years ago (diff)

new upstream release

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