Just sorted the script out for E-510
Some things people who own Olympus E-510 might want to know:
Olympus have called the camera "E-510 " with 11 spaces so if you want to change the name do it like this:
Both changes are to the USER DATA.lib file
var RenameMyCamera = "E-510 "; // with 11 spaces (ie E-510 then press space 11 times) making the name 16 character long
var RenameMyCameraAs = "Olympus E510";
They also don't name the lens correctly so you need to add the following:
LENSexif[1] = "?";
LENSshow[1] = "Olympus Zuiko 14-42mm F3.5-5.6";
plus you need to alter the file "EXIF Border Lib.Lib" by changing two lines
Code:
// Raw xml data to extract lens info
// Only available on RAW images?
var xmldata = AD.xmpMetadata.rawData;
try {
var pattern = /(.*<aux:Lens>)(.*)(<\/aux:Lens>)/;
var results = xmldata.match(pattern);
if (results)
lens = results[2];
else {lens = "?"; EXlens = false;}
}
catch(err) {
lens = "?"; EXlens = false;
}
Look through the file till you find a section like that above and just delete the parts of the lines that say "EXlens = false;"
NOTE: Do not change anything else. remember ALL you need to do is find the above code and remove the parts I have mentioned. eg the line that says
lens = "?"; EXlens = false; becomes
lens = "?"; and change the line four above that in a similar way. I will include this in the next version but there is little point uploading a new version for this change which will not affect many people anyway.
--------------
Also the shutter speed is not stored correctly either so a quick change to the EBS - default script file too:
var EXshutterspeed = false; // does not work on Olympus E-510 !!
to turn that function off too.
--------------
I will look through the Olympus EXIF data when I have some time and find out if this information is stored differently then write in some alternatives just for that make. Anyone else got any problems with their EXIF data being printed then please let me know as I can only fix it when I know it is not working and when I have the EXIF data in a picture so that I can test it here.
CHRIS - Tried to email you the above with corrected files but when I replied I got a email rejection reply !!