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

Revision 984, 48.2 KB checked in by daisuke, 14 years ago (diff)

update to 0.8

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