Hi,
while working on the Maven distribution, I noticed something fishy in the Ant
build.
I was trying to find out where the history support in swfobject came from. All
I could find was this:
<mkdir dir="${FLEXJS_HOME}/templates/swfobject/history"/>
<copy toDir="${FLEXJS_HOME}/templates/swfobject/history" >
<fileset dir="${FLEXJS_HOME}/templates/swfobject/history">
<include name="**"/>
</fileset>
</copy>
from downloads.xml
So if it's there, it replaces itself with itself. So as long as it's there, it
will stay there, but if it's not there it will not be there. Currently only
people that built before 05.05.2015 will be able to do a valid release, cause
then the code was changed from borrowing the code from the FlexSDK to this
version ... I solved that problem by simply adding the three files to my
distribution package, but I wanted to warn the Ant guys that their build will
not produce valid SDKs unless they have manually copied these files there.
Chris