This File lists changes after Version 1.1.7. which are not bugfixes ( see FIXES for bugfixes )

Change numbering: <mm/dd/yy>-<change number>, <initials>, <version (optional)>, <other info (optional)>

initials:
	cl:	Christian Linhart <chris@demorecorder.com>
	cl/a:	Christian Linhart <chris@demorecorder.com>, work sponsored by Arahne d.o.o. ( http:/www.arahne.si. )
	ji:	User Jimmer at nekochan.net


==================================================================
10/26/2015-1, cl

Release 1.1.10

==================================================================
10/25/2015-1, cl/a

optionally disable XPM

==================================================================
10/10/2014-1, cl

proper license for form-test.pl from the author

==================================================================
04/02/2014-2, "ji" and some changes by "cl"

Make it optionally build on IRIX.
To build on IRIX, set the make-variable "OS" to "IRIX" by editing the top makefile or specifying it on commandline:
	make OS=IRIX

==================================================================
03/18/2014-2, cl

Release 1.1.9

==================================================================
03/13/2014-2, cl

remove rcsId from all files.
reasons: 
* RCS is not used anymore 
* and the rcsId generates compiler warnings about unused static vars,
  therefore creating a lot of warning-spam which makes finding
  important warnings difficult.

==================================================================
03/13/2014-1, cl

make SONAME configurable explicitely in the main Makefile

==================================================================
02/27/2014-1, cl

added EXTRA_CFLAGS to CFLAGS rule in the main Makefile, 
so that additional CFLAGS may be specified by the caller of make.
This helps with integration in build systems of a bigger project.

==================================================================
02/26/2014-2, cl

    remove Makefile.org files
    
    These files are not needed when working with plain Makefiles.
    I have removed them because otherwise they'd need to be kept
    consistent with the Makefiles.

==================================================================
02/26/2014-1, cl

    fix build system
    
    distclean does not destroy the makefiles anymore
    Prevent using the Imakefiles by #error and #if 0
    Prevent using automake with an error message and exit 1 in autogen.sh

==================================================================
01/08/2014-1, cl/a, Version 1.1.8
* added support for XFT:
	- Added the following resources:
		- fontType: if this is set to "FONT_IS_XFT", then xft-mode is enabled.
		- xftFontFamily: fontFamily in XFT-Mode
		- xftFontFamilyFixed: fontFamilyFixed in XFT-Mode

* added support for UTF-8 if in XFT-mode
	- If the resource "charset" has the value "utf-8", then UTF-8 encoding is assumed.

* possibilty to specifiy a factor for text height. 
	This can help to get more text on the screen for fonts with large line height.
	Controlled by the following float-resources
	- textHeightFactor: factor for proportional font
	- textHeightFactorFixed: factor for fixed font

* add generation of shared lib to Makefiles

* add targets to tools/Makefile for generating automatically generated files by mkString

* tried to make GTK-mode compilable again, but this failed because the GTK-mode 
  uses deprecated gdk functions such as GdkColorContextDither 
  which are not contained anymore in current versions of gdk.

* added the possibilty to specify a minimum horizontal padding for table cell contents.
  Reason: To avoid that the text directly touches the cell borders.
	- Added the following resources:
		- minColPadding: use at least this many pixels for horizontal padding
				 Default-value: 0

* added the possibilty to specify an additional horizontal padding for text in tables.
  Reason: To avoid that the text directly touches the cell borders, 
	but allow other objects such as nested tables to still touch the cell borders.
	- Added the following resources:
		- additionalHorizontalTextPaddingInTables: 
				 Default-value: 2

* new function XmHTMLScrollToYPos
