In the Project Panel, I could never make the
Open Project Folder button work. (I'm on Mac OSX).
So I checked in
GaiaProject.jsfl, and found that the path the script was trying to open was starting with "/Volumes/Users/...." instead of "/Users/....".
It was because in
uriToPath() function,
getMacHD() wasn't returning a correct HD name for
indexOf to find it. (My HD name is "Macintosh HD")
Apparently,
unescape() doesn't work well with
indexOf() for spaces in strings. (Not sure about that)
After
removing unescape from getMacHD() function in GaiaProject.jsfl (last function in script), it now works!
Hope this helps someone else
