Hi, first of all thanks for sharing this awesome little plugin.
I've tried using it on Mac but the plugin couldn't find the input file. I double-checked it and found out the program changes the separator between the path to the folder and the name of file to a Windows style back slash.
Path: /Users/martin/Desktop/Export/timelapse/raw/IMG_3697.CR2 Error: "/Users/martin/Desktop/Export/timelapse/raw\IMG_3697.CR2" does not exist.
I went ahead and checked the code and found the issue in the retrieveData() function which uses a hard-coded back slash instead of Java's File.separator that would adapt to the platform.
Hi, first of all thanks for sharing this awesome little plugin.
I've tried using it on Mac but the plugin couldn't find the input file. I double-checked it and found out the program changes the separator between the path to the folder and the name of file to a Windows style back slash.
Path: /Users/martin/Desktop/Export/timelapse/raw/IMG_3697.CR2 Error: "/Users/martin/Desktop/Export/timelapse/raw\IMG_3697.CR2" does not exist.I went ahead and checked the code and found the issue in the
retrieveData()function which uses a hard-coded back slash instead of Java'sFile.separatorthat would adapt to the platform.