since the development of the plugin seems to be dicontinued we could make a list of all incompabilities and try to fix them step by step in the community... anyone interested?
first issue i noticed was the leck of compability with custom post types - the meta box didn't appear. here's my fix, add after line 125:
$post_types = get_post_types(array('_builtin' => false));
foreach ($post_types as $post_type ) {
add_meta_box('fastinsert', 'Faster Image Insert', 'fast_insert_form', $post_type, 'normal', 'high');
}
inserting image shortcode to post content seems to be broken too, guess it's just a question of JS...