Imprimatur 014

A bug-fix release of Imprimatur. Fixed a problem that has been there for ages. If you started Imprimatur with a file name only (no path) for the script file, and then referred to another file in the script file, there would be a problem. I fixed it using:

File file = new File(fileName).getAbsoluteFile();

instead of:

File file = new File(fileName);

Thanks to Jesse Pelton for reporting this bug.