Currently the waypointlist store the filename only in the FileName field, this works as long as u put all your waypoints in the waypoints directory but I like to organize in subdirectories for my larger boots.
So Id like to suggest to include the subdirectories below the waypoints directory, i.e. instead of just storing "mywaypoint.xml" we store "mysubdir/mywaypoint.xml" when subdirectories is used.
The change is in classes/waypointlist.lua approx line 44, use:
Code: Select all
self.FileName = filename:gsub(getExecutionPath() .. "/waypoints/", "")Code: Select all
self.FileName = getFileName(filename)