Bump version for development.
[userinfo.git] / NEWS
blob2a62c5d49dde329efffdd7db521182c81ef682ca
1 userinfo 2.4
2     Portability fixes for SunOS, recent NetBSD, OpenBSD and others.
5 userinfo 2.3
6     Create bzip2 archive.
8     New homepage at http://userinfo.sourceforge.net/.
10     utmp[x] portability fixes for FreeBSD 9.0. Thanks to Eygene Ryabinkin
11     and others.
13     Safer strncat(). Thanks to Eygene Ryabinkin for reporting.
15     Fixed including dead logins in utmpx login.so output.
17     No longer print the error string as the login.so hostname output even if
18     there is no hostname. Rather, print the None string.
20     Added public module function safe_strncat().
23 userinfo 2.2 released March 17, 2007
24     The compile farm at sourceforge.net is no longer available so I don't have
25     access to OS's other than FreeBSD (4.1) and Linux (2.6) for build testing.
26     If you have a machine other than the above and would like to test
27     compilation on, please let me know of build failures so we can fix them.
29     Updated my email address.
31     Changed the follow symbolic links option -l to -L.
33     The users idle time (login.so) is shown in seconds rather than minutes.
35     Added contrib/fexists.c.
38 userinfo 2.1 released July 30, 2005
39     This release includes some major fixes and code cleanups. Module writers
40     should have another look at doc/README.modules as all of the function
41     names have changed (ui_module_exec() not passwd_exec()). Details follow:
43     The command line options -x and -X behave like -O in that they take a
44     module name to load. No need to specify both.
46     Verbosity (-v) is reset for each module unless specified twice.
48     The strings UNKNOWN, NONE, ON and OFF are more hardcoded and are not
49     configurable in config.h. The ui_module_exec() function has changed to
50     drop these strings and module writers should look at the 'Output Key' from
51     'ui -h' as a guideline for static strings. It's kinda pointless but there
52     are less arguments to this function to worry about.
54     A modules help and dup warning is only shown once.
56     Fixed a memory leak in the login.so module.
58     Fixed module chaining of more than two modules.
60     Bugfix for modules which take no options.
62     Bugfix for the -d option when used with other modules.
65 userinfo 2.0 released December 05, 2004
66     It's been awhile since the last release, but hopefully worth the wait. The
67     program has been split up into modules which will need to be loaded either
68     from the command-line or from a configuration file. See doc/uirc for an
69     example configuration file and doc/README.modules for how to write your
70     own modules. Here's some details about the changes:
72     Added option -m to specify a deliminator for multi-value fields. The old
73     hardcoded character, and new default, was/is a comma.
75     Added option -O, -d and -c to load modules. Read the manual page or look
76     at doc/uirc for configuration file syntax.
78     Added option -d to load the default modules (passwd.so, mail.so, and
79     login.so). By default, no modules are loaded. This option may be used
80     anywhere in the module list.
82     Added option -x to chain the output of a loaded module to the input of the
83     next loaded module. This will only work if the next loaded module is
84     chainable.
86     Added option -X to prevent the chained module from outputting it's info.
87     This will just pass the strings which would be outputted to the next
88     module (like -x).
90     Changed the main executable options a bit:
91         Changed option -F to -l (symbolic links)
92         Changed option -j to -t (time format)
93         Changed option -d to -F (field separator)
95     The default time format has changed to "%s" (seconds since epoch). The old
96     format contained a ":" which is the default field separator. Use -t to
97     change it to whatever you want. If your running Solaris please read
98     KnownBugs.
100     Changed the options for the modules a bit. To see the options for the
101     modules, load the module with -O, or -c if using a configuration
102     file, or both, when using the -h help switch.
104     The login module now supports multiple logins of the same username. For
105     example, if a user is logged in more than once and the -y module option is
106     specified the output might be: tty2,tty3.
108     Added an example module and shell script to contrib/ in the archive.
110     When a user has logged in via console and the hostname option in the login
111     module is requested, either from the lastlog or from utmp, display the
112     "none" string rather than the "unknown" string.
114     Port to NetBSD. May compile on OpenBSD too, but it hasn't been tested.
116     Removed the Darwin port. It's just not worth the hassle.
118     Automake has been updated. This means DESTDIR support is included in the
119     Makefile.
121     Fixed ouput of empty password fields from getpwnam().
123     Don't try an convert passwd.so options -c and -e to a time stamp, just
124     dump the passwd structure strings. The exception is if the user is not
125     root, then the unknown string is used. Different OS's use different
126     methods when displaying these values. See getspnam(3) or getpwent(3).
128     We now use getutxent() on systems that support and utilize utmpx. Login
129     process id's are gotten from this utmpx structure rather than KVM or the
130     /proc filesystem. Much more efficient and less error-prone.
132     When requesting the mail folder size and the size is zero, display zero
133     and not the "none" string.