Revision history for Perl extension jQuery::File::Upload::Imager.

1.00  Thu May 23 13:57:00 2013
	- Original version.
	- This is a fork of jQuery::File::Upload V 0.16.
	- It replaces Image::Magick with Imager because all copies of Image::Magick
		have been removed from CPAN. They are still on backpan.perl.org though.
	- Features converted:
		Image::Magick		               Imager
		-----------------------------------------
		Read(file => $fh)                  read(fh => $fh)
		Get('width')                       getwidth()
		Get('height')                      getheight()
		Clone()                            copy()
		Resize(width => $w, height => $h)  scale(xpixels => $x, ypixels => $y, type => 'nonprop')
		Set(quality => $q)                 write(file => $name, type => $type, jpegquality => $q)
		Set(density => $d): $d="${x}x$y"   scale(xpixels => $x, ypixels => $y, type => 'nonprop')
		Write("$format:$name")             write(file => $name, type => $format)
	- Rename Changes to CHANGES.
	- Add Changelog.ini.
	- Various POD patches.
	- Various minor Makefile.PL patches.
	- Add Build.PL.
