the DCRAW Plugin cannot recognize the version of dcraw due incompatiblity with recent dcraw version.
the problem is located in the DcrawToolkitHelper.class
i would suggest removing the versioning check completly and put the version into requirements of the module aka put it into preinstallation requirements of the documentation of gallery2
Logged In: YES
user_id=1731892
Originator: YES
if (preg_match('/Raw [Pp]hoto [Dd]ecoder(?: "dcraw")? v(\S+)/', $verCheck, $matches)) {
$version = $matches[1];
if (version_compare($version, '5.40', '>=')) {
$testArray[] = array('name' => 'dcraw', 'success' => true);
}
}
this is the part where the bug is. well i would just remove this and put the required version of dcraw into documention. (preinstallation requirements)
Logged In: YES
user_id=942712
Originator: NO
What's the problem with the version check?
Do we check for the wrong version? Why?
For usability's sake, we can't just drop the version check.