Panda3D Runtime 1.0.3

Hi.
I noticed a small change.
with web runtime 1.0 this worked:

if base.appRunner!=None:
    mypath='/mf/'  
else:
    mypath=''

But as of 1.03, this works

if base.appRunner!=None:
    #mypath='/mf/'  
    mypath=''
else:
    mypath=''

Where could i get more info on what exactly was added tweaked and/or improved with the 1.03 release?

Thank you.

The mount location was changed to be in the “start” directory in the cache dir. You should use base.appRunner.multifileRoot for the location instead of using /mf/.