fxex-0.0.5
	Modified FXIOHandle/FXSocket to provide FOX callbacks for read / write / 
		except / connect events, so that applications can do their own IO buffering.
	FXSocket previously classified unix domain and local domain differently; now they
		are treated the same.
	FXSocket now sets itself into non-blocking mode by default.
	FXSerialPort now generates SEL_OPENED once the port is open.
	FXFileIO has been altered so that it supports similar functionality to socket such that, 
		you can enable FXFileIO so when new data arrives in the file, it will signal the app.
		It now also supports an 'auto-open' feature, if the file doesn't yet exist.
	FXResolver has been added so as to resolve hostnames in a non-GUI thread.  Note that
		you can't destroy an FXResolver object until it has failed at resolution.
	FXSocket has been modified to use FXResolver to resolve a hostname, so that the socket
		is now completely non-blocking.
	FXProcess is now functional under Linux, at the expense of win32 (which will be
		added back later).  The parent can send data to the child via the setText()
		or write() methods, or via a FOX event (SEL_COMMAND, ID_SETSTRINGVALUE).
		Data is returned to the parent via a FOX event, then calling getText() / read() / 
		ID_GETSTRINGVALUE.  A similar technique applies for the child process.
	FXStdin, FXStdout, FXStderr classes to encapsulate stdin/stdout/stderr IO streams.
		This effectively makes the standard IO appear as FOX events.
	Added more utility functions, disableWindow()/enableWindow().
	Added FXBasketListBox widget.
	Updates to FXSocketStream & FXBackBufferedCanvas.
	Added the following helper functions:
		- blenIcon(...)
		- loadIcon(...) / loadImage(...)
		- loadFileIcon(...) / loadFileImage(...)
		- fxfilemode(...)
		- disableWindow(...) / enableWindow(...)
		- setFontOfChildren(...)
	Added activity monitor in FXIOHandle, to ease implementation of 'application-level pings'.
	Changed FXIOStream to become FXEventStream.
	Changed FXSocketStream to FXIOStream. It previously used FXSocket's, now it uses
		FXIOHandles so that you can stream from/to any type of IO handle. 
	More classes and demo programs...

fxex-0.0.4
	Added 'binary log' support (for fast/minimal logging).
	Added initial implementation of FXDatabase... classes.
	Added FXComboBoxEx (FXIconList styled combobox).
	Added FXBackBufferedCanvas, for back-buffering a canvas widget
	Added lots of changes to the FXDatabase... classes.
	Enhanced FXSplashWindow to support loading of an image (GIF,PNG,etc).
	Added loadImage and loadIcon utility functions, to simplify loading of images/icons, 
		from a file.
	Added more demo's; FXCalendar and FXExTreeList, etc
	Added automatically generated documentation to build - each FXEX class now has
		supporting HTML documentation - founds in the docs/autohtml directory.
	README has been updated.
	Updated the ClassListing file.
	...lots of bug fixes...

fxex-0.0.3
	Updated thread support - better/simpler communication with main thread.
	Updated thread locking objects to provide communication with main thread so that you
		dont have to have global locking variables.
	Generalised FXAtomicInt to be a parameterised type (ie a template).  This allows 
		arbitrary types to become atomic types that you can use between threads.
	Updated generic IO support.
	Updated File IO support to include memory mapped files.
	Added 'sendfile' support to FXSocket so as to use the platforms' native file sending
		capability.
	FXRotatableObject - Text rotation.
	FXDLL - Dynamic library loader - ie loading of a libxxx.so or xxx.dll
	FXTicker - widget
	FXVariant - a 'anytype' variable
	FXDCNativePrinter - Print to win32 native printer
	FXFileMonitor - monitor a file as it grows
	FXAsciiStream for loading MSDOS style test files.
	FXSocketStream, for serialising an object over a socket rather than a file/memory
	FXTextVScroller - automatically scroll an FXText widget
	Faster build times by only #include'ing specific FOX files.
	Uses the latest version of configure so as provide newer/better build environment;
		actually a new version came out after I updated...
	Updated WIN32 support in some places - doesn't compile yet
	...lots of bug fixes...

fxex-0.0.2
	Initial thread support for unix/win32
	Some test programs
	Generic IO and serial port support for unix
	More widgets

fxex-0.0.1
	Initial package release to create a baseline package
	Socket support for Unix
	Some widgets

