========================================================================
                              README
========================================================================

ABOUT:
nodau is a simple console based note taking program, it allows you to
 easily create, edit, and view notes, and search them by name or date

DEPENDENCIES:
nodau requires glibc, ncurses, and sqlite. It may work with other C
 libraries, but this has not been tested.

INSTALL:
If you're reading this then you've already unpacked the tarball,
so it's the usual 4 steps:
1) cd /path/to/nodau
2) make
3) su -
4) make install

UNINSTALL:
just cd to the nodau directory and run "make uninstall"

USE:
nodau <option> [data]

OPTIONS:
 help            print this message
 list [search]   list notes, accepts optional search term
 new <name>      create new note, name must be unique
 edit <name>     open an existing note for editing
 show <name>     display an existing note
 del <search>    accepts name or search term

SEARCH TERM:
 search terms with spaces do not need to be inside "quotes"
 <name>          name of a note, list will search for names similar to
                  the term, del will delete only an exact match
 t@<datestring>  matches notes created at a given date/time
 t-<datestring>  matches notes created before a given date/time
 t+<datestring>  matches notes created after a given date/time

DATE STRING:
 datestring can be made of any typical date format such as:
 dd/mm/yy
 dd, mm, yyyy hh:mm

EDITING:
 the current editor accepts standard printable characters, enter,
 and backspace. There is no support for moving the cursor with the
 arrow keys or mouse. To exit the editor and save the note, create
 a new line with only a dot (.) on it, or press escape.

LICENSE:
nodau is licensed under the GPLv3, there's a copy of it in LICENSE
I still claim ownership of it though :)

DEVELOPMENT:
I might do more to it, if so I'll let everyone know through
 sandbox.ltmnet.com/nodau
If you make any changes, let me know: lisa <at> ltmnet.com

CHANGES:
0.1
	- initial release
0.2
	- added 'show' option, to display a note without editing
	- changed 'open' option to 'edit' to differentiate it from
	 'show', 'open' has been left for backward compatibility
0.2.1
	- added man page thanks to Salvatore Bonaccorso
	 <carnil <at> debian.org>
0.2.2
	- patch to build/Makefile to fix bug when building on ubuntu provided
	 by Angel Abad
	 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=627306
	 https://bugs.launchpad.net/ubuntu/+source/nodau/+bug/785135
