You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/10/13 04:25:49 UTC

git commit: [flex-sdk] [refs/heads/release4.11.0] - Install both 11.9 and 11.1 flash player global

Updated Branches:
  refs/heads/release4.11.0 1d5fa798d -> 0bad7bac8


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/release4.11.0
Commit: 0bad7bac8d8a981e74e6e91f83e636a8677a940c
Parents: 1d5fa79
Author: Justin Mclean <jm...@apache.org>
Authored: Sun Oct 13 13:23:45 2013 +1100
Committer: Justin Mclean <jm...@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"