Ignore:
Timestamp:
03/17/19 22:29:23 (5 years ago)
Author:
davidb
Message:

After change to have resources-public and resources-private, some changes needed to support running Expeditee for a single user; other main change is to allow FrameDirs to specify relative directory paths, to help with when Expeditee is run on the cloud -- similar work still needs to occurr for ImageDir and AudioDir; some other minor changes also made.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/apollo/audio/structure/AudioStructureModel.java

    r1142 r1244  
    289289
    290290                        String fullPath = null;
    291                         for (int i = 0; i < FolderSettings.FrameDirs.get().size(); i++) { // RISKY CODE - IN EXPEDITEE SPACE FROM RANDOM TRHEAD
    292                                 String possiblePath = FolderSettings.FrameDirs.get().get(i);
     291                        List<String> possiblePaths = FolderSettings.FrameDirs.getAbsoluteDirs();
     292                       
     293                        for (int i = 0; i < possiblePaths.size(); i++) { // RISKY CODE - IN EXPEDITEE SPACE FROM RANDOM TRHEAD
     294                                String possiblePath = possiblePaths.get(i);
    293295                                fullPath = FrameIO.getFrameFullPathName(possiblePath, rootFrameName);
    294296                                if (fullPath != null)
Note: See TracChangeset for help on using the changeset viewer.