PowerDraw990616 -
            -Initial Release

PowerDraw990617 -
            -Added image loading routines

PowerDraw990621 -
            -Added support for drawing sprites

PowerDraw990623 -
            -Added a 'destination' argument to the sprite routines

PowerDraw990626 -
            -Added support for TrueType fonts

PowerDraw990801 -
            -Broke up the initialization code into a seperate module to
             give the newly created PowerInput access to it.

PowerDraw990804 -
            -Finally got the Windows Makefiles working! Thanks to 
             Jesper Juul for the fix

PowerDraw990805 -
            -Added code to make PowerDraw link with C++ sources. Thanks
             to Karl Bartel for this code

            -Implemented SDL_FillRect for PD_RectFilled increasing ex2
             framerate from 10fps to 13fps

            -Replaced #include "SDL.h" with #include"SDL/SDL.h" to make
             compilation easier

PowerDraw990806 -
            -Changed the Makefiles to work with the incorporation of
             IMGlib into PowerPak

            -Removed all SDL_Updaterects except the one in the
             ShowDoubleBuffer function increasing ex2 from 13fps to
             21fps. Again thanks go to Karl Bartel

            -Added PD_UpdateScreen and PD_UpdateWholeScreen for those
             people that don't want to use the DoubleBuffer

PowerDraw990809 -
            -Added a faster putpixel routine contributed by Karl Bartel

            -Added SDL_Flip() as the double buffer mechanism. Increased
             ex2 framerate from 21fps to 27fps

            -Added PD_BlitAsIs to make a blit that preserves alpha and
             colorkey values

PowerDraw990816 -
            -Added (int argc, char *argv[]) to main function in 
             examples, fixed a Mingw32 compile problem

PowerDraw990817 -
            -Fixed IMG.h path in gfx.c thanks to Aaron Carlisle for
             pointing this out

PowerDraw990823 -
            -Took out clipping and Lock surface for all blits as SDL 
             handles them

            -Added Karl Bartel's PD_SetFontSize font function

            -Added PD_SetColorKeys() to set the clear and alpha values
             for PD_BlitAsIs

PowerDraw990828 -
            -Added a faster line routine.

            -Added three functions for the rotating and shearing of 
             surfaces other than sprites.

            -Added clipping back to the putpixel because that is not a 
             blit and therefore not handled by SDL, thing drawn with it
             will no longer "wrap" around the screen

            -Made PD_Blit the same as PD_BlitAsIs

            -Added SDL_DisplayFormat to all surface creation functions
             which should increase speed a little

            -Added RLE_ACCEL to transperency setting routines

            -Sped up ex2 a bit as even at decent framerates one pixel 
             per frame moves slow.

PowerDraw990829 -
            -Added another compilation with C++ bugfix contributed by
             Karl Bartel

            -Fixed PD_CreateSurfaceBPP so it doesn't return a surface
             the same depth as the screen regardless. This fixed a
             problem with the TrueType font routines crashing as well

PowerDraw990902 -
            -Added some routines for smooth (anti-aliased) font
             rendering

            -Fixed the ex4 demo to stop trying to load the jpg

PowerDraw990930 -
            -Stopped programs using TrueType fonts to crash if TrueType
             support wasn't built into PowerPak

            -Added the PD_EasyBlit function contributed by Karl Bartel

            -Windows now close if the user clicks on the window
             manager's close button, this code was contributed in part
             by Karl Bartel

PowerDraw991016 -
            -Added a function to check if a double buffer is available.
             The function, PD_DoesDoubleBufferExist, was contributed by
             Karl Bartel

            -Added DEFAULTDIRECT and FULLSCREENDIRECT modes for
             PD_SetGFXMode to allow direct acces to the screen with no
             doublebuffer.(fixes problems with PD_UpdateScreen in DGA
             mode)

PowerDraw991023 -
            -Fixed a bug in PD_UpdateScreen. Thanks to Fabien Marchewka
             for pointing it out

PowerDraw2K0511 -
            -Added the functions PD_ScaleSurface() and
             PD_ScaleSurfaceBy()

            -Added the functions PD_ScaleSurfacePart() and
             PD_ScaleSurfacePartBy()

            -Added PD_DrawSpriteScaled() and PD_DrawSpriteScaledBy()

PowerDrawNEWEST -
            -Added PD_LoadImageAsIs function();

            -Fixed a bug in the scale surface code thanks to Tom Jones