Changes

Adobe Air

648 bytes removed, 01:30, 18 November 2010
Updated to version 2.5.1 and removed version 1.5 since the only difference between packages is the version number.
Adobe Air is available from [http://www.adobe.com/go/EN_US-H-GET-AIR Adobe]
== EXE installer Adobe AIR 2.5 ==== All versions of Adobe Air 2AIR (1.0 ==through 2.5.1) check the same DLL file for the version number. Just change the value with the version you are installing. 
<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<packages>
<package id="adobeair"
name="Adobe AIR"
revision="204%version%"
priority="10">
<variable name="version" value="2.5.1.17730" /> 
<check type="uninstall" condition="exists" path="Adobe AIR" />
<check type='logical' condition='or'> <check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="2.0.4.13090%version%" /> <check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles(x86)%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="2.0.4.13090%version%" />
</check>
<install cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' />
<upgrade cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' />
<remove cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -uninstall' />
</package>
</packages>
</source>
 
== Adobe Air 1.5 ==
<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
 
<packages>
<package id="AdobeAIR"
name="Adobe AIR"
revision="1.5.1"
priority="10">
<check type="uninstall" condition="exists" path="Adobe AIR" />
<check type='logical' condition='or'>
<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="1.5.1.8210" />
<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles(x86)%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="1.5.1.8210" />
</check>
<install cmd='%SOFTWARE%\AdobeAIR\AdobeAIRInstaller.exe -silent' />
 
<upgrade cmd='%SOFTWARE%\AdobeAIR\AdobeAIRInstaller.exe -silent' />
 
<remove cmd='%SOFTWARE%\AdobeAIR\AdobeAIRInstaller.exe -uninstall' />
</package>
</packages>
</source>
35
edits