Version 1.4.2:

* Fixed a bug that caused 12 PM to appear as 12 AM.

Version 1.4.1:

* Fixed a bug in the "search" action.

Version 1.4.0:

* Added support for extended ASCII characters.  Finally umlauts and other
  special characters will work.

Version 1.3.0:

* Added "search" action.  Users can now search for text within selected fields
  and get a list of matching posts.

* Minor HTML fixes.

* Now using perl functions instead of system commands such as "cp" and "rm".
  This should make XMLBoard more cross-platform.

* Moved code for printing links at the top of the page to a separate
  subroutine.

* Fixed small redirection bug when the specified post was not found.

* Added option for no background color in table cells.

* Added an amusing but functional language filter option.

Version 1.2.0:

* Noticed that $PREVPOST{'email'} wasn't being used.  Now names are printed
  as links in the info about the previous post, if email is given.

* Now converts & into &amp; -- won't interpret HTML entities anymore.

* Added option to use unordered lists (<ul>) for the indexes instead of 
  tables.

* Added "removeold" action.  This action has its own element handlers, 
  and removes posts that are older than a specified age.  It does not 
  remove entire threads like the "remove" action.

Version 1.1.0:

* Added option to quote subjects indiscriminately, or allow only one Re: in the
  subject line.

* Moved all configuration that can be specific to each forum into forum.conf,
  a file located in each forum's directory.  Now only general configuration
  is left in xmlboard.cgi.

* The <?xmlboard include="/path/to/file.html"?> notation has been added to
  the included HTML files.  The script now parses lines that look like that
  and outputs the contents of the specified file.  This is the hand-made
  equivalent of server side includes, and is very useful for sites that
  are server side include-based.

* Now followup indexes appear without the extra indentation.  The immediate
  replies to the post are not indented at all.

* Replaced HTML classes for stylesheets with color attributes (now that the
  setup is specific for each forum.)

Version 1.0.1:

* Added a regular expression that makes sure all characters are ones that
  can be found on the US keyboard.  While eventually it would be best to
  convert all characters into their html equivalents, this is the safest
  fix in the meantime (for some reason both browsers and XML parsers have
  horrible bugs when they encounter foreign letters.)