2010-01-20  Jaromir Hradilek <jhradilek@gmail.com>

  * INSTALL, Makefile, src/w2do.pl, src/w2html.pl, src/w2text.pl: Increased
  version for a release.  I have also updated the copyright entries. We are
  three years old now!

2010-01-19  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2do.pl: Changed `--plain' to more intuitive `--no-colour'.  Since I
  have introduced `--no-xxxx' scheme, it is no longer required nor just to come
  up with different words for complement options.

2010-01-16  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2text.pl: Added `--no-state' command-line option.

  * src/w2text.pl: Updated the documentation.

  * src/w2text.pl: Changed `--shallow' to `--bare' option.  Again, for the sake
  of least surprise and the consistency.

2009-12-27  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2text.pl: Minor, unimportant and pointless code embellishment.

  * src/w2html.pl: Added `--no-bare' option for the sake of consistency.

  * src/w2do.pl: Implemented `--bare' command-line option.  This is to make it
  possible to omit table header and group separators, e.g. for the parsing
  purposes.

  * src/w2do.pl: Updated the documentation.

  * src/w2do.pl: Added command-line options for recently implemented features. 
  Unfortunately, for the sake of logical consistency, I had to break backwards
  compatibility renaming/reducing some other short command-line options.

  * src/w2do.pl: Improved table rendering.  Similarly to w2html, I have made
  the output more customizable.

  * Makefile: Improved Makefile.  Manual pages now include correct version
  information.

2009-08-22  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2do.pl, src/w2html.pl, src/w2text.pl: Increased version for a release.

2009-08-14  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2do.pl: Added bulk operations on tasks with given priority.

2009-07-24  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2html.pl: Improved w2html utility.  I have added ID to the listed
  columns and made it possible to hide (almost) any of the columns using
  respective command-line options.

2009-06-29  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2do.pl, src/w2html.pl, src/w2text.pl: Increased version for a release.

  * src/w2do.pl: Improved statistics listing.  Statistics now include finished
  / all tasks ratio for both per group and overall progress.

2009-06-28  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2do.pl: Fixed issue with `leaking' colours.  Coloured output should
  now work correctly in most terminal emulators.

  * src/w2do.pl: Fixed statistics listing.  Overall progress bar is no longer
  displayed when the task list is empty.

2009-03-26  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2do.pl, src/w2html.pl, src/w2text.pl: Increased version for a release.
   I have also cleaned up the CSS a bit.

  * src/w2html.pl: Fixed stylesheet-related bug once more.

2009-03-23  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2html.pl: Added `--preserve' option to w2html utility.  This is mainly
  to enable/encourage local changes and even the use of different themes.

  * src/w2html.pl: Fixed bug in style sheet LINK element.

2009-03-21  Jaromir Hradilek <jhradilek@gmail.com>

  * INSTALL, src/w2do.pl, src/w2html.pl, src/w2text.pl: Increased version for a
  release.

2009-03-20  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2html.pl: Fixed w2html output.  Empty task list no longer results in
  empty file.

  * src/w2html.pl: w2html now properly escapes reserved characters.  It is no
  longer possible to smuggle HTML entities inside the tasks.

  * src/w2html.pl: Improved behaviour of html exporter.  Style sheet embedding
  is now enforced when writing to STDOUT.

2009-03-14  Jaromir Hradilek <jhradilek@gmail.com>

  * AUTHORS, INSTALL, Makefile, man/man1/w2do.1, man/man1/w2html.1,
  man/man1/w2text.1: Removed old man pages and updated Makefile.  I have also
  updated the installation instructions and added TODO and AUTHORS files.

  * src/w2html.pl: Added Pod (Plain Old Documentation) to w2html.  The
  documentation is now part of the source file itself instead of an external
  roff file.

  * src/w2html.pl: Revised the code of w2html even further.  * All functions
  now return proper value. Most of the functions also no longer terminate the
  script directly: the appropriate warning message is displayed instead and
  false is returned for the higher function to take care of the problem. *
  Wrong command-line option no longer terminates the script. I guess the
  warning message is sufficient enough and definitely not so annoying. * Some
  functions now report missing argument; this is mainly to make it easier to
  spot the problem. * I have restructured the whole thing trying to make the
  order of functions more intuitive, adding comments where things might get
  confusing. * Fixed bug with wrong group name: it was possible to specify
  group with colon in with some nasty consequences like corrupted save file
  and/or even unexpected crash. I still cannot understand how I could have been
  missing this so long. * Implemented `--encoding' option to prevent browser
  confusion. This should have been implemented from the beginning, but since I
  use UTF-8 for all my documents (including the todo list), I did not notice. *
  Made it create an external CSS file by default, adding the `--inline' option
  in case someone want to embed the style sheet to the page itself as it used
  to be until now. This is an attempt to make things a little bit more flexible
  and easier to use one's own style sheet (it has been known people had to use
  pipes or even patches to customise the look of their todo lists, which simply
  is not the way I like it to be). * Added `--bare' option to make it easier to
  embed the exported data to another page. * Got rid of two default themes,
  introducing a new one, strongly based on the default BlazeBlogger look (see
  http://blaze.blackened.cz/). The similarity is intentional in order to make
  the cooperation of both my projects smoother.

2009-03-13  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2text.pl: Added `--shallow' option to w2text utility.

  * src/w2do.pl, src/w2text.pl: Added Pod (Plain Old Documentation) to w2text. 
  The documentation is now part of the source file itself instead of an
  external roff file. I have also corrected the FDL version notice in w2do.

  * src/w2text.pl: Revised the code of w2text even further.  * All functions
  now return proper value. Most of the functions also no longer terminate the
  script directly: the appropriate warning message is displayed instead and
  false is returned for the higher function to take care of the problem. *
  Wrong command-line option no longer terminates the script. I guess the
  warning message is sufficient enough and definitely not so annoying. * Some
  functions now report missing argument; this is mainly to make it easier to
  spot the problem. * I have restructured the whole thing trying to make the
  order of functions more intuitive, adding comments where things might get
  confusing. * Fixed bug with wrong group name: it was possible to specify
  group with colon in with some nasty consequences like corrupted save file
  and/or even unexpected crash. I still cannot understand how I could have been
  missing this so long.

2009-03-12  Jaromir Hradilek <jhradilek@gmail.com>

  * src/w2do.pl: Added Pod (Plain Old Documentation) to w2do.  The
  documentation is now part of the source file itself instead of an external
  roff file.

  * src/w2do.pl: Revised the code of w2do even further.  * All functions now
  return proper value. Most of the functions also no longer terminate the
  script directly: the appropriate warning message is displayed instead and
  false is returned for the higher function to take care of the problem. *
  Wrong command-line option no longer terminates the script. I guess the
  warning message is sufficient enough and definitely not so annoying. * Some
  functions now report missing argument; this is mainly to make it easier to
  spot the problem. * I have restructured the whole thing trying to make the
  order of functions more intuitive, adding comments where things might get
  confusing. * Fixed bug with wrong group name: it was possible to specify
  group with colon in with some nasty consequences like corrupted save file
  and/or even unexpected crash. I still cannot understand how I could have been
  missing this so long.

  * INSTALL, Makefile, src/w2do.pl, src/w2html.pl, src/w2text.pl, w2do.pl,
  w2html.pl, w2text.pl: Moved source files to the src/ directory.  Also updated
  Makefile and installation instructions accordingly.

2009-03-04  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * INSTALL, w2do.pl, w2html.pl, w2text.pl: Cleaned the code up a bit.  *
  Adjusted it now and there to at least resemble my current coding style (which
  does not mean I am satisfied with it now). * Fixed few typing errors (e.g.
  `occured'). * Added current year to the copyright notice.   

2008-11-07  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * FDL, INSTALL, man/man1/w2do.1, man/man1/w2html.1, man/man1/w2text.1:
  Updated GNU FDL to version 1.3.  

2008-10-28  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * man/man1/w2do.1, w2do.pl: Added --plain option for the sake of consistency,
  updated man page.  

2008-10-25  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2html.pl, w2text.pl: Increased version for the next release.  

2008-10-24  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * man/man1/w2do.1: Updated manual page.  

  * w2do.pl: Improved coloured output.  

2008-10-20  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2do.pl, w2html.pl: Added support for colours. 

2008-09-27  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2html.pl: Fixed bug in character escaping. 

  * w2do.pl, w2html.pl, w2text.pl: Extended comments. 

2008-09-15  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2html.pl: Added proper plural handling. 

  * man/man1/w2do.1, man/man1/w2html.1, man/man1/w2text.1: Updated man pages. 

2008-09-13  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2html.pl, w2text.pl: Added superfluous options detection. 

  * w2html.pl: Adjusted alignment. 

  * w2html.pl: Added blue design. 

  * w2do.pl: Added superfluous options detection, increased version for next
  release.  

  * w2html.pl: Adjusted alignment. 

2008-09-05  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2html.pl: Improved the look of produced output. 

  * w2text.pl: Minor changes, increased version for next release. 

2008-08-30  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2do.pl: --add option now reports assigned id 

2008-08-21  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * INSTALL: improved installation instructions 

2008-08-16  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * man/man1/w2do.1, man/man1/w2html.1, man/man1/w2text.1: updated man pages 

  * w2do.pl, w2html.pl, w2text.pl: made w2do and friends case insensitive 

  * w2do.pl: fixed option parsing 

  * w2do.pl: enhanced statistics listing 

  * w2do.pl, w2html.pl, w2text.pl: fixed backup file handling and added support
  for environment variables 

2008-08-15  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2do.pl: fixed bug in enhanced groups listing 

  * w2do.pl: enhanced groups listing 

2008-08-14  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2do.pl: improved task lookup 

2008-08-10  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2do.pl, w2html.pl, w2text.pl: code clean-up 

2008-08-06  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2do.pl: fixed missing save file handling 

2008-08-02  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * w2html.pl: minor change 

2008-07-31  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * INSTALL, Makefile, man/man1/w2do.1, man/man1/w2do.1.gz, man/man1/w2html.1,
  man/man1/w2text.1, w2do, w2do.pl, w2html.pl, w2text.pl: added w2html and
  w2text utilities 

2008-07-22  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * man/man1/w2do.1.gz: updated man page 

  * w2do: implemented --output option 

2008-07-15  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * man/man1/w2do.1.gz, w2do: implemented line breaking 

2008-06-30  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * INSTALL, man/man1/w2do.1.gz: Minor changes. 

2008-06-23  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * man/man1/w2do.1.gz: updated man page 

2008-06-20  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * Makefile: added .PHONY targets to the Makefile 

2008-06-18  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * man/man1/w2do.1.gz, w2do: version 2.0.0 released 

  * INSTALL: added installation instructions 

  * Makefile: added Makefile 

2008-06-17  jhradilek <jhradilek@f762da5c-dd4f-0410-bd1a-614a52d1a859>

  * COPYING, FDL, man/man1/w2do.1.gz, w2do: initial import 
