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

Revision 1957, 48.3 KB checked in by owa, 14 years ago (diff)

rebuilt with rpm-4.8.1

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