Make AddMouseRegion's index unsigned
[dockapps.git] / wmwlmon / ChangeLog
blob019cd237cf3fe5c3f4152b08488b95934cad86ab
1 $Id: ChangeLog,v 1.27 2008/05/13 17:42:02 hacki Exp $
3 1.0
4 ===
5 - FreeBSD note:  the wi_req struct has been removed from the kernel
6   in FreeBSD 7.  This makes wmwlmon fail to compile.  The FreeBSD port
7   includes a workaround which makes wmwlmon compile again but disables
8   wi(4) support
9 - do correct castings to satisfy higher gcc versions
10 - added more supported devices to the man page
12 0.9
13 ===
14 - ported to FreeBSD, diff by Nathan Lay <nslay@hotmail.com>
15 - added signal strength support for WaveLAN chipsets, diff by
16   Sam Chill <samchill@gmail.com>
17 - style
19 0.8
20 ===
21 - fixed get_first_wnic() which can cause core dumping if wmwlmon is started
22   without args because returning (char *) which was already freed, diff by
23   Matthieu Herrb <matthieu@openbsd.org>
24 - added some improvements suggested by mbalmer@openbsd.org;
25   use strtonum(3) for scroll options
26   define variable size which holds nic name with IF_NAMESIZE
27 - extended manpage
29 0.7
30 ===
31 - added interface auto scan for startup so -i is optional now
32 - fixed wmwlmon core dumping if nic is gone
33 - fixed strlcpy(3) issue in wl.c to be sure that the not nul terminated
34   network id can't overflow its destination buffer, spotted by
35   Marc Balmer <mbalmer@openbsd.org>
37 0.6
38 ===
39 - added smooth scrolling for network id
40 - added special ascii characters, sometimes used for the network id
41 - extended manpage
43 0.5
44 ===
45 - added delay for scroll_bounce()
46 - seperated nwid scroll refresh from interface poll refresh, diff by
47   Claudio Jeker <claudio@openbsd.org>
48 - fixed a bug in scroll_lcd().  at the end of a string the space was ignored,
49   so the scrolling looked a little shaky
50 - start adding devices to man page from which we know that they work fully
51   or partial
53 0.4
54 ===
55 - added LCD and Bounce scrolling regulated by the -s option
56 - increased scrolling speed of the network id
57 - fixed usage() and manpage.  -i is mandatory not optional
58 - in signal_handler() replaced exit(3) by a volatile sig_atomic_t flag,
59   because exit(3) is not signal handler save
61 0.3
62 ===
63 - added scrolling of long network ids.  Can be disabled with the -s option
64 - in get_nwid() limit the length of network ids to IEEE80211_NWID_LEN
65 - removed default variables from BSD Makefile
67 0.2
68 ===
69 - if the speed result is NULL and passed to atoi(3), it cores.  Therefore
70   check speed before passing it to atoi(3)
72 0.1
73 ===
74 - initial version