******* 1.3 --> 2.0
**beta4:
- Enhanced Linux support (test holds executables for svgalib,
  xtest the X11 based ones)
- Optimized makefiles and configuration
- getdrivername() will report GRX driver name with GRX2
- saved some getpixel() calls for floodfill() under X11. Remains slow :-(
**beta3:
- grx2.0 (beta951201) has linkable 8x8 font. Use this instead of
  loading the DEFAULT_FONT from disk.
- Linux support (svgalib & X11)
**beta2:
- Workaround for grx20-beta3 (missing 8x8 pixel bitmap font)
**beta1:
- new copyright terms, see readme
- compiles with both grx v2.0 and v1.03
- rewrote bgi font loading
- libbcc.h won't include GRX and pascal stuff any more
- rewrote floodfill(): Will use it's own dumb monochrome
  context to keep track of drawn points. Uses less memory but
  seems to be a little slower in few cases.
- there's no Pascal support any longer, sorry
- moved _ega_color, setrgbdefaults() and setrgbgray256() from libbcc?.a
  to src/addons.a
- added four new functions getmodemaxcolor(), getmodemaxx(), getmodemaxy()
  and setrgbcolor().
- added version check __BCC2GRX__ (equals to 0x21a for v2.1 alpha,
  0x20b -> v2.0 beta, 0x230 -> v2.3 offical release, ...)

******* 1.2 --> 1.3 (1.3 didn't made it to public)

- Vector fonts may be plotted using the actual line style.
  calling textlinestyle(1) enables and textlinestyle(0) disables
  this feature.
- corrected getmodename() TrueColor definition, name of actual
  graphics mode valid now, will display 32K/64K/16M instead of
  huge numbers
- CGA/MCGA/ATT400 will be emulated by 16 color modes
- EGA64HI sets 16 color mode on non EGA cards
- named source files in a more functional way
- circle() will use GrCircle() in "round" cases
- graphdefaults(), setgraphmode() and initgraph() set up the
  correct aspect ratio
- added __gr_ prefix to several library functions called
  by other bcc2grx functions. Protects against interference
  with other libraries (problem reported by Axel Rohde)
- updated for libgrx 1.03
- should work with .vdr drivers now
- uses GrGetLastArcCoords() instead of global variables
- BLACK changed into constant
- Pascal support improved. KeyPressed and ReadKey will
  flush stdout first, updated Readme
- bccbgi now uses random() instead of RANDOM_TP() for correct
  support of >32768 colors modes. (Bad news: random() is much slower)
- set_BGI_mode_whc translates 64K and 16M color values into
  GRX internals 0xC010 and 0xC018 (grx1.0x only)
- added _ega_color for EGA color emulation in HiColor/TrueColor modes
- Corrected range check in setfillstyle() (bug found by Axel Rohde)
- Corrected bugs/problems reported by Antonio Carlos Moreirao de Queiroz:
  - initgraph won't crash if pathtodriver == NULL
  - When loading a font failed, DEFAULT_FONT size 1 will be used
  - font switching should be faster now
  - if a font can't be found, grFontNotFound error will be set.
- Correct name expansion in installuserfont()

******* 1.1 --> 1.2

- installuserfont() accepts GRX font names (name.fnt).
- getmodename() supports modes >32768 colors
- initgraph() has NATIVE_GRX driver entry. NATIVE_GRX supports
  the default, biggest (noninterlaced), BGI_mode graphics and all valid
  modes from .grn drivers
- set_BGI_mode()/set_BGI_mode_whc() routines to emulate BGI driver resolutions
- floodfill() doesn't uses second context in simple cases (much faster),
  leaves viewport if no clipping required
- getmoderange(), getmaxmode() and getpalettesize() will call
  __gr_set_up_modes() first -->> returned values are initialized
- closegraph() resets __gr_INIT flag
- cleardevice(), clearviewport(), imagesize(), graphresult(), getmaxcolor(), getgraphmode(), getpixel() and
  putpixel() are checking  __gr_INIT  flag now
- setrgbpalette() check's initgraph(), moved from bccgrx.h -> bccgrx20.c
- drawpoly() always closed the polygon -- fixed.
- registerfarbgifont() now same as registerbgifont()
- setgraphbufsize() returns a defined value
- setwritemode() protects against setting color bits
- detectgraph() returns the correct graphdriver info
- graphdefaults() doesn't call setlinestyle() & setviewport() any more
- bccgrx.c/__gr_set_up_modes() executed once only (fixes memory waste)

******* 1.0 --> 1.1

- initgraph() will set the requested graphmode if graphdriver != DETECT.
- using GrHLineNC and GrPixelNC in bccgrx09.c / _floodfill()
- BCC2GRX should run correct with old style drivers (.grd)
  (bccgrx.c/__gr_set_up_modes changed)
- Corrected detectgraph()/initgraph() problem calling Gr... funcs
  before GrSetMode()
- Used normal filled / solid line commands where ever possible
- Text direction and justify setting compatible with Borland definition
