Version 0.1
-------------------------------
[]  Loads a directory of *mp3
[]  Allows you to pick and choose between what you want to play

Version 0.2
-------------------------------
[]  Added Continuous play (hit 'C' to toggle)
[]  Added Random Ordering (hit 'R' to toggle)
[]  Added Help Screen     (hit 'H')
[]  Added multiple directory support (You can now mp3menu dir1 dir2 dir3 etc)
[]  Can load unlimited amount of mp3s without screwing up

Version 0.3
-------------------------------
[]  Fixed bug that caused weird display after finishing playing
[]  Fixed bug when displaying help
[]  Added PageUp / PageDown functions (Thanks Doug :))

Version 0.4
-------------------------------
[]  Fixed another bug with displaying help
[]  Fixed a minor problem in the Makefile
[]  Fixed a minor display bug while playing
[]  Made the random ordering more random (Thanks Ken & Justin)
[]  Added some error checking on the file stuff
[]  Added Y/N Commands

Version 0.5
-------------------------------
[]  Ville <daft@hauki.hao.osakk.fi> (thanks) pointed out that this wouldn't 
    compile on his version of ncurses - checked mine and noticed I had 1.9.6
    Made some minor changes to get this to compile right, let me know
    if anyone else is having any of these types of problems. 
    
    latest version [as of this release] (1.9.9g) is at
    ftp://ftp.netcom.com/pub/zm/zmbenhal/ncurses
    Note: Just to make sure, when you run configure use --with-shared

[]  Added some color at request of a few people to "Make it nicer looking"
    at the beginning of the CPP file theres a NORMAL, YESCOLOR, and NOCOLOR
    define - change them to whatever you want.  change BOLD to be A_BOLD
    or 0 to turn bright colors on and off, respectively.

Version 0.6
-------------------------------
[]  Fixed a problem when playing songs that had ()'s in them
[]  Changed the space bar to move on to the next position after toggling.
[]  Changed the routeins to handle dynamic memory 
    (the old way was using 1028 [size of the structure] * 1024 entries
    for a total of 1052672 bytes of memory used EACH time -- UGH!
    it also limited you to a max of 1024 records.   The new way lets you
    have an unlimited number of records, and only allocates 
    1028*total_entries+2 bytes of memory)
[]  Added a define for resetting the screen at the end. (see the C file)
[]  Added a reordering routein - hit O   (Thanks doug, ken)
    [Note:  Ken and Doug can kick me in the head for being stupid]
[]  Added (S)ave/(L)oad functions for file lists - take a look at the
    readme for info you definately should read.
[]  Stopped including the pre-built binary.

Version 0.7
-------------------------------
[]  Changed the way the directories scanning was done.  Thanks to
    Robert Hardy <rhardy@webcon.net> for the change
[]  Fixed init stuff to be constructors/desconstructors (people who
    were modifying the program were forgetting to init things, so this
    will do it automagically)
[]  Fixed a display bug when > 100 files were displayed (will now display
    up to 9999 mp3s without going insane... that should be enough :))

Version 0.7a (20 seconds later)
-------------------------------
[]  Fixed a toggle bug [god i feel stupid..dont ask]

Version 0.8 
-------------------------------
[]  Fixed a redisplay option bug that showed up because of bad code :)
    Thanks to Mike Klinkert <michael@cs.vu.nl> for pointing it out
    and giving me a fix.


