Using gallery shortcode in WP 3.1 and it seems to ignore the added options from this plugin - however this is based only on testing:
[gallery linktype="none"]
Ending up using some Javascript to remove the a tags:
$(document).ready(function(){
// Remove link from gallery images
$(".gallery-icon a").each(function () {
$(this).replaceWith($(this.childNodes));
});
});
Would love to see this plugin development continue, the feature set is much needed.
credit for javascript solution: Jayde from this post