This is my very first pull request on GitHub so I'm sorry if I'm not doing it the right way! You can also ignore all additions / deletions / changes except for the changes to src/main/java/org/sikuli/slides/api/io/PPTXSlidesReader.java.
I had a problem where this version of Sikuli Slides couldn't handle a PPTX with a space in its path name. I traced the problem to the part of the code that I changed. It seems that the original code was trying to look for the path with the spaces escaped using URL character escaping. This of course is not valid for the local file system. I change the code so that if the PPTX is actually on the local file system the 'URL' will be unencoded.
I'd like to help out with further bug fixing and enhancements to Sikuli Slides, so if you have any tips / comments regarding how we can work together and how I can make better pull requests I look forward to hearing from you.
Hi There,
This is my very first pull request on GitHub so I'm sorry if I'm not doing it the right way! You can also ignore all additions / deletions / changes except for the changes to src/main/java/org/sikuli/slides/api/io/PPTXSlidesReader.java.
I had a problem where this version of Sikuli Slides couldn't handle a PPTX with a space in its path name. I traced the problem to the part of the code that I changed. It seems that the original code was trying to look for the path with the spaces escaped using URL character escaping. This of course is not valid for the local file system. I change the code so that if the PPTX is actually on the local file system the 'URL' will be unencoded.
I'd like to help out with further bug fixing and enhancements to Sikuli Slides, so if you have any tips / comments regarding how we can work together and how I can make better pull requests I look forward to hearing from you.
Regards,
Andrew