Updated Branches: refs/heads/develop 165af193b -> 79dd224e9
Install both 11.9 and 11.1 flash player global Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/0bad7bac Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/0bad7bac Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/0bad7bac Branch: refs/heads/develop Commit: 0bad7bac8d8a981e74e6e91f83e636a8677a940c Parents: 1d5fa79 Author: Justin Mclean <jmcl...@apache.org> Authored: Sun Oct 13 13:23:45 2013 +1100 Committer: Justin Mclean <jmcl...@apache.org> Committed: Sun Oct 13 13:23:45 2013 +1100 ---------------------------------------------------------------------- ide/flashbuilder/makeApacheFlexForIDE.bat | 12 +++++++++++- ide/flashbuilder/makeApacheFlexForIDE.sh | 7 ++++++- 2 files changed, 17 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0bad7bac/ide/flashbuilder/makeApacheFlexForIDE.bat ---------------------------------------------------------------------- diff --git a/ide/flashbuilder/makeApacheFlexForIDE.bat b/ide/flashbuilder/makeApacheFlexForIDE.bat index 1ccc700..3076c3b 100755 --- a/ide/flashbuilder/makeApacheFlexForIDE.bat +++ b/ide/flashbuilder/makeApacheFlexForIDE.bat @@ -107,7 +107,7 @@ cscript //B //nologo winUtil.vbs "%ADOBE_AIR_SDK_WIN_URL%" "%tempDir%\%ADOBE_AIR if %errorlevel% neq 0 goto errorExit REM -REM Download playerglobal.swc +REM Download 11.1 playerglobal.swc REM set FB_GLOBALPLAYER_DIR=%FLEX_HOME%\frameworks\libs\player\11.1 if not exist "%FB_GLOBALPLAYER_DIR%" mkdir "%FB_GLOBALPLAYER_DIR%" @@ -117,6 +117,16 @@ cscript //B //nologo winUtil.vbs "%ADOBE_FB_GLOBALPLAYER_SWC_URL%" "%FB_GLOBALPL if %errorlevel% neq 0 goto errorExit REM +REM Download 11.9 playerglobal.swc +REM +set FB_GLOBALPLAYER_DIR=%FLEX_HOME%\frameworks\libs\player\11.9 +if not exist "%FB_GLOBALPLAYER_DIR%" mkdir "%FB_GLOBALPLAYER_DIR%" + +echo Downloading Adobe Flash Player playerglobal.swc from "%ADOBE_FB_GLOBALPLAYER_SWC_URL%" to "%FB_GLOBALPLAYER_DIR%\playerglobal.swc" +cscript //B //nologo winUtil.vbs "%ADOBE_FB_GLOBALPLAYER_SWC_URL%" "%FB_GLOBALPLAYER_DIR%\playerglobal.swc" +if %errorlevel% neq 0 goto errorExit + +REM REM Copy config files formatted for Flash Builder to frameworks. REM echo Installing frameworks config files configured for use with Adobe Flash Builder http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0bad7bac/ide/flashbuilder/makeApacheFlexForIDE.sh ---------------------------------------------------------------------- diff --git a/ide/flashbuilder/makeApacheFlexForIDE.sh b/ide/flashbuilder/makeApacheFlexForIDE.sh index c3b096f..a80e979 100755 --- a/ide/flashbuilder/makeApacheFlexForIDE.sh +++ b/ide/flashbuilder/makeApacheFlexForIDE.sh @@ -97,11 +97,16 @@ echo "Downloading the Adobe AIR SDK for Mac from $ADOBE_AIR_SDK_MAC_URL" curl "$ADOBE_AIR_SDK_MAC_URL" --output "$tempDir/$ADOBE_AIR_SDK_MAC_FILE" tar xf "$tempDir/$ADOBE_AIR_SDK_MAC_FILE" -C "$FLEX_HOME" -# download playerglobal.swc +# download 11.1 playerglobal.swc echo "Downloading Adobe Flash Player playerglobal.swc from $ADOBE_FLASHPLAYER_GLOBALPLAYER_SWC_URL" mkdir -p "$FLEX_HOME/frameworks/libs/player/11.1" curl "$ADOBE_FLASHPLAYER_GLOBALPLAYER_SWC_URL" --output "$FLEX_HOME/frameworks/libs/player/11.1/playerglobal.swc" --silent +# download 11.9 playerglobal.swc +echo "Downloading Adobe Flash Player playerglobal.swc from $ADOBE_FLASHPLAYER_GLOBALPLAYER_SWC_URL" +mkdir -p "$FLEX_HOME/frameworks/libs/player/11.9" +curl "$ADOBE_FLASHPLAYER_GLOBALPLAYER_SWC_URL" --output "$FLEX_HOME/frameworks/libs/player/11.9/playerglobal.swc" --silent + # copy the config files formatted for Flash Builder to frameworks echo "Installing the frameworks config files configured for use with Adobe Flash Builder" cp -p -v "$FLEX_HOME"/ide/flashbuilder/config/*-config.xml "$FLEX_HOME/frameworks"