Just for the case anybody has customers like I have, who just don’t care about the aspect ratio. Here’s a little fix to the code, so it does cache such non-uniformly resized pictures:
Change line 117 from
if($height != $cacheHeight && $width != $cacheWidth){
to
if($height != $cacheHeight || $width != $cacheWidth){
The original code would check on a difference in both, width
and height, while this little change produces a cached image as soon as one of them is different.
btw. is anybody actively working on this plugin?
Regards from Austria (mountains, no kangaroos

)