I found and fixed a bug on v1.0:
I couldn't figure out why my thumbnails were so screwed up, AND my original was resized. It took a while, but I found out that the thumb_marker wasn't being set when passing the images to the resize_and_crop() function.
I added:
'thumb_marker' => '_thumb';
to line 124 of \fuel\modules\fuel\libraries\Fuel_assets.php
It works beautifully now.
I hope this helps.
Comments
// image manipulation parameters must all be FALSE or NULL or else it will trigger the image_lib image processing
So perhaps there's a better place to put this?
protected $_thumb_marker = '_thumb';
// to fix issues with resize and crop if (empty($params['create_thumb'])) { $params['thumb_marker'] = ''; }
BTW, the updates to the CKEditor JS has been perfect so far. Love it.
Only thing I can't wait to see is how you plan to implement the new CKEditor 4 into the front-end editing. That's so exciting!
Wish I could help, but I'm still a little too green at the advanced JS.