+0.4.14
+ - minor html filter update
+
0.4.13
- major code reorganization (phase 1)
- fixed help viewer functions
- ability to disable use of non-ascii characters (configuration option)
- changed SIGINT behaviour
- html export filter creates now valid html documents
- - ablity to print/export only selected items
+ - ability to print/export only selected items
- new editor commands
- text filter update
- query/find code cleanup
PACKAGE=abook
-VERSION=0.4.13
+VERSION=0.4.14-cvs
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
dnl abook configure.in
AC_INIT(abook.c)
-AM_INIT_AUTOMAKE(abook, 0.4.13)
+AM_INIT_AUTOMAKE(abook, 0.4.14-cvs)
AM_CONFIG_HEADER(config.h)
AC_CANONICAL_HOST
refresh();
}
-
/*
- * help - need to rewrite
+ * help
*/
-
#include "help.h"
void
delwin(helpw);
}
-
/*
* end of help
*/
ui_find(int next)
{
int item;
- static char findstr[81];
+ static char findstr[MAX_FIELD_LEN];
int search_fields[] = {NAME, EMAIL, NICK, -1};
if(next) {
} else {
clear_statusline();
statusline_addstr("/");
- statusline_getnstr(findstr, 67, 0);
+ statusline_getnstr(findstr, MAX_FIELD_LEN - 1, 0);
clear_statusline();
}
- if( (item = find_item(findstr, next ? curitem+1 : curitem,
+ if( (item = find_item(findstr, curitem + !!next,
search_fields )) >= 0 ) {
curitem = item;
refresh_list();