I do not think that it is PC specific. However - I do not own a Mac - so I'm not sure what is going on.
I looked into the 2 encrypted files - nowhere is there a reference to
The _ files are simply there to give examples.
- TextureLocatio.txt contains the path to textures
- defaults.txt contains the default configuration you want at startup
- textures.txt contains the list of textures and in what order they appear in the drop down list.
It is possible that the file names and paths are case sensitive (like linux)
The name in the script for glass and mirror is glass.png and mirror.png however the file names in the Image folder is glass.PNG and mirro.PNG
All the rest of the images are in lower case.
In the scrip we have several occurances of using \ and several occurances of using / in paths
This is how the scrip refereces the various files.
filename = ABSDIR + '\textures.txt'
filename = ABSDIR + '\textureLocation.txt'
filename = ABSDIR + '\defaults.txt'
This code is from the GKWare_CabMaker_Ext.rb
RBSFILE = LOADER.split("_")[0] << '.rbs'
RELDIR is relative to Plugins dir, OR the dir from
the $LOAD_PATH array that require used to find it.
RELDIR = File.dirname( PATH )
if ROOT
ABSDIR = File.join( ROOT, RELDIR )
else
assume the target dir is directly below, the dir that THIS file is in.
ABSDIR = File.join( File.dirname(FILE), RELDIR )
end