Justin, I feel loading the config file dynamically when the app runs would be a better option. This way we can continue to support any future revisions by just updating the config xml which would live on our server. What do you think?
Thanks, Om On Tue, Jun 12, 2012 at 2:24 AM, Justin Mclean <jus...@classsoftware.com>wrote: > Hi, > > Was just think about the packager IDE and future proofing especially now > AIR 3.3 and FlashPlayer 11.3 is out. > > While it simple enough to change the URLs in the XML file we might as put > all known URLs in there to make it easy for a user to edit. > > Something like: > > <!-- Adobe AIR SDK --> > <file name="AdobeAIRSDKWin" version="3.1" download="yes" path=" > http://airdownload.adobe.com/air/win/download/3.1/" > file="AdobeAIRSDK.zip" /> > <file name="AdobeAIRSDKMac" version="3.1" download="yes" path=" > http://airdownload.adobe.com/air/mac/download/3.1/" > file="AdobeAIRSDK.tbz2" /> > <file name="AdobeAIRSDKWin" version="3.2" download="no" path=" > http://airdownload.adobe.com/air/win/download/3.2/" > file="AdobeAIRSDK.zip" /> > <file name="AdobeAIRSDKMac" version="3.2" download="no" path=" > http://airdownload.adobe.com/air/mac/download/3.2/" > file="AdobeAIRSDK.tbz2" /> > <file name="AdobeAIRSDKWin" version="3.3" download="no" path=" > http://airdownload.adobe.com/air/win/download/3.3/" > file="AdobeAIRSDK.zip" /> > <file name="AdobeAIRSDKMac" version="3.3" download="no" path=" > http://airdownload.adobe.com/air/mac/download/3.3/" > file="AdobeAIRSDK.tbz2" /> > > <!-- Adobe Flash Player player global swc --> > <file name="FlashPlayer" version="10.3" download="optional" path=" > http://fpdownload.macromedia.com/get/flashplayer/updaters/10/" > file="playerglobal10_3.swc" /> > <file name="FlashPlayer" version="11.0" download="optional" path=" > http://fpdownload.macromedia.com/get/flashplayer/updaters/11/" > file="playerglobal11_0.swc" /> > <file name="FlashPlayer" version="11.1" download="yes" path=" > http://fpdownload.macromedia.com/get/flashplayer/updaters/11/" > file="playerglobal11_1.swc" /> > <file name="FlashPlayer" version="11.2" download="optional" path=" > http://fpdownload.macromedia.com/get/flashplayer/updaters/11/" > file="playerglobal11_2.swc" /> > <file name="FlashPlayer" version="11.3" download="optional" path=" > http://fpdownload.macromedia.com/get/flashplayer/updaters/11/" > file="playerglobal11_3.swc" /> > > Where download="no" is don't download, download="yes" is do download and > download="optional" is download if you can but if there an error don't > worry about it. > > These new URLs are currently working. > > http://fpdownload.macromedia.com/get/flashplayer/updaters/11/playerglobal11_3.swc > http://airdownload.adobe.com/air/win/download/3.3/AdobeAIRSDK.zip > > I can change the application to cater for this unless anyone else wants a > go a doing it. > > Thanks, > Justin > >