Beta 0.8 version
================

Implemented:
x	A basic tree view in function grand_debug() (WebCalc.c)
x	A basic text content interpreter that replaces a few symbols (&amp,
	&lt, &gt).

Changed:
x	Removed the element size limit (particularly the content size, which
	was 300 bytes). However, elements are still always totally drawn,
	therefore big elements considerably slow the program.
	To avoid this, write small paragraphs.
x	Rewrote the HTML interpreter. Now using a proper and more functional
	version. Adding features will become simpler.
x	Rewrote a more proper natural display module. Now supports a lot of new
	elements, including integrals, natural exponents and subscripts, and
	smart parenthesizes.
x	Made natural display module based on libfont. The included header
	is libfont-3.1, but from the moment libfont's function names and
	arguments remain the same, the natural display module will remain
	compatible.
x	Rewrote the DOMElement object handling (renamed DomElement). Some data
	was removed (useless accesKey, scrollTop, etc. even if the may be used
	later).

Specification:
x	Added support for CSS property line-height.

Fixed:
x	A mistake that made using WebCalc's exit handler instead of the
	standard add-in one, because fxlib's CallbackAtQuitMainFunction()
	stores only one function pointer. Now using both exit handlers.
x	A bug in the file selector, that would crash when the cursor reached
	the fourth position if less than seven elements existed, trying to
	force the list scrolling.
x	A mistake in the natural display module that made it consider that the
	height of an expression was the height of its biggest element instead
	of the sum of the maximum heights on and under the baseline. Also
	added exponent and subscript handling.

Reviewed:
x	Files libfont-3.1.c and libfont-3.1.h (80-character limit).
x	Files tex-0.9.c and tex-0.9.h (comments, mainly).


Beta 0.7.1 version
==================

Fixed:
x	An error in the CSS parser that would search for files only in the
	`HTML` sub folder of the storage memory.

Reviewed:
x	File css.c, reviewed naming and document conventions, and documentation
	comments.
x	File WebCalc.c, reviewed comments.


Beta 0.7 version
================

Changed:
x	Worked a little on fonts.
x	Ported the project to Linux. Now using gcc and some assembly. Using
	minimal fxlib.
x	Written faster functions, dclear() and dpixel(), for screen management.
x	Changed resource system, now including resource files in the g1a
	executable file.
x	Written and commented libfont-3.1, compatible with the resource
	management system.

Fixed:
x	A System ERROR caused by exiting the program before it was totally
	initialized.
x	A bug that made all elements from the beginning of the document being
	drawn instead of just the visible ones.


Beta 0.6 version
================

Implemented :
x	A simple memory tracer

Changed:
x	Used libfont-3.0 instead of libText 2.1. Also spared font data, which
	was moved to external files.

Specification:
x	Implemented CSS properties "font-size", "text-align", "letter-spacing".

Fixed :
x	An error in Disp_text() that made text overflow out of the element in
	edge cases.


Alpha version
=============

Implemented :
x	HTML and CSS interpretors.
x	Text displaying.
