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/ApolloSystem.java

    r1242 r1244  
    1818import org.apollo.gui.FramePlaybackBarRenderer;
    1919import org.apollo.gui.FrameRenderPasses;
     20import org.apollo.io.AudioPathManager;
    2021import org.apollo.io.SampledAudioFileImporter;
    2122import org.apollo.util.ApolloSystemLog;
     
    260261                Browser.main(args);
    261262               
    262                 // Initialize apollo
    263                 EcosystemManager.getMiscManager().runOnGIOThread(new BlockingRunnable() {
    264                         public void execute() {
    265                                 ApolloSystem.initialize();
    266                         }
    267                 });
     263                if (!Boolean.getBoolean("auth")) {
     264                        // If not running with authentication/login, then proceed with initializing Apollo
     265                        EcosystemManager.getMiscManager().runOnGIOThread(new BlockingRunnable() {
     266                                public void execute() {
     267                                        ApolloSystem.initialize();
     268                                }
     269                        });
     270                }
    268271        }
    269272       
Note: See TracChangeset for help on using the changeset viewer.