Hi Breaky623,
Thanks for your feedback. That makes sense. I have a fix that should solve the issue with filenames with multiple “.”s. I don’t have time to deploy a new version right now, but I believe you can fix the issue by replacing this line in acf-image-crop-v5.php (528):
// Generate new base filename
$targetFileName = $originalFileName[0] . '_' . $targetW . 'x' . $targetH . '_acf_cropped' . '.' . $originalFileName[1];
with:
// Retrieve and remove file extension from array
$originalFileExtension = array_pop($originalFileName);
// Generate new base filename
$targetFileName = implode('.', $originalFileName) . '_' . $targetW . 'x' . $targetH . '_acf_cropped' . '.' . $originalFileExtension;
Thanks for catching this.