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 02:35:10 UTC

[1/3] git commit: [flex-sdk] [refs/heads/develop] - Updated with the release of FP 11.9 and AIR 3.9

Updated Branches:
  refs/heads/develop 09c4e92fd -> fe2a2ea3a


Updated with the release of FP 11.9 and AIR 3.9


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/71d35a69
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/71d35a69
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/71d35a69

Branch: refs/heads/develop
Commit: 71d35a69351d7ede7526d02f1c824f01089db19f
Parents: 09c4e92
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Oct 12 08:57:24 2013 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Oct 12 08:57:24 2013 +1100

----------------------------------------------------------------------
 ide/flashbuilder/makeApacheFlexForIDE.bat | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/71d35a69/ide/flashbuilder/makeApacheFlexForIDE.bat
----------------------------------------------------------------------
diff --git a/ide/flashbuilder/makeApacheFlexForIDE.bat b/ide/flashbuilder/makeApacheFlexForIDE.bat
index 3ff9a16..1ccc700 100755
--- a/ide/flashbuilder/makeApacheFlexForIDE.bat
+++ b/ide/flashbuilder/makeApacheFlexForIDE.bat
@@ -42,10 +42,10 @@ REM
 set APACHE_FLEX_BIN_DISTRO_DIR=..\..
 
 REM
-REM     Adobe AIR SDK Version 3.8
+REM     Adobe AIR SDK Version 3.9
 REM
 set ADOBE_AIR_SDK_WIN_FILE=AdobeAIRSDK.zip
-set ADOBE_AIR_SDK_WIN_URL=http://airdownload.adobe.com/air/win/download/3.8/%ADOBE_AIR_SDK_WIN_FILE%
+set ADOBE_AIR_SDK_WIN_URL=http://airdownload.adobe.com/air/win/download/3.9/%ADOBE_AIR_SDK_WIN_FILE%
 
 REM
 REM     Adobe Flash Player Version 11.1


Re: [1/3] git commit: [flex-sdk] [refs/heads/develop] - Updated with the release of FP 11.9 and AIR 3.9

Posted by Justin Mclean <ju...@classsoftware.com>.
Hi,

> I'll change it to download both.

Done - someone mind testing/double checking the .bat file for me?

Thanks,
Justin

Re: [1/3] git commit: [flex-sdk] [refs/heads/develop] - Updated with the release of FP 11.9 and AIR 3.9

Posted by Justin Mclean <ju...@classsoftware.com>.
Hi,

> But we are still downloading FP 11.1 in the bat file.  AIR 3.9 and FP 11.1
> require different swf-versions.
I'll change it to download both.

Justin

Re: [1/3] git commit: [flex-sdk] [refs/heads/develop] - Updated with the release of FP 11.9 and AIR 3.9

Posted by OmPrakash Muppirala <bi...@gmail.com>.
On Oct 12, 2013 5:54 PM, "Justin Mclean" <ju...@classsoftware.com> wrote:
>
> Hi,
>
> > I always wondered about this.  Dont we need to change the swf-version as
> > well when we make these kind of changes?
>
> It handled in several places.
>
> It part of flex-config.xml and the main build.xml.
>
>         <target name="flex-config" depends="playerglobal-setswfversion"
description="Copy the flex config template to flex-config.xml and inject
version numbers">
>                 <copy file="${basedir}/flex-config-template.xml"
tofile="${basedir}/flex-config.xml" overwrite="true">
>                         <filterset>
>                                 <filter token="playerversion"
value="${playerglobal.version}"/>
>                                 <filter token="swfversion"
value="${playerglobal.swfversion}"/>
>                                 <filter token="locale" value="${locale}"/>
>                         </filterset>
>                 </copy>
>         </target>
>
>         <condition property="playerglobal.swfversion" value="22">
>                 <equals arg1="${playerglobal.version}" arg2="11.9" />
>         </condition>

But we are still downloading FP 11.1 in the bat file.  AIR 3.9 and FP 11.1
require different swf-versions.

>
> The ide/addAIRToSDK.sh and ide/setFlashPlayerVersion.sh scripts also set
it.
>
> But I think you right for the .bat file it's copying the air-config.xml
file out of the template dir  which doesn't have the correct swf version
set.
>
> Thanks,
> Justin
>

Re: [1/3] git commit: [flex-sdk] [refs/heads/develop] - Updated with the release of FP 11.9 and AIR 3.9

Posted by Justin Mclean <ju...@classsoftware.com>.
Hi,

> But I think you right for the .bat file it's copying the air-config.xml file out of the template dir  which doesn't have the correct swf version set.

Actually I did change teh template config files as well but the files are listed in .gitignore!!!!!

Justin

Re: [1/3] git commit: [flex-sdk] [refs/heads/develop] - Updated with the release of FP 11.9 and AIR 3.9

Posted by Justin Mclean <ju...@classsoftware.com>.
Hi,

> I always wondered about this.  Dont we need to change the swf-version as
> well when we make these kind of changes?

It handled in several places.

It part of flex-config.xml and the main build.xml.

	<target name="flex-config" depends="playerglobal-setswfversion" description="Copy the flex config template to flex-config.xml and inject version numbers">
		<copy file="${basedir}/flex-config-template.xml" tofile="${basedir}/flex-config.xml" overwrite="true">
			<filterset>
				<filter token="playerversion" value="${playerglobal.version}"/>
				<filter token="swfversion" value="${playerglobal.swfversion}"/>
				<filter token="locale" value="${locale}"/>
			</filterset>
		</copy>
	</target>

	<condition property="playerglobal.swfversion" value="22">
		<equals arg1="${playerglobal.version}" arg2="11.9" />
	</condition>

The ide/addAIRToSDK.sh and ide/setFlashPlayerVersion.sh scripts also set it.

But I think you right for the .bat file it's copying the air-config.xml file out of the template dir  which doesn't have the correct swf version set.

Thanks,
Justin


Re: [1/3] git commit: [flex-sdk] [refs/heads/develop] - Updated with the release of FP 11.9 and AIR 3.9

Posted by OmPrakash Muppirala <bi...@gmail.com>.
On Oct 12, 2013 5:35 PM, <jm...@apache.org> wrote:
>
> Updated Branches:
>   refs/heads/develop 09c4e92fd -> fe2a2ea3a
>
>
> Updated with the release of FP 11.9 and AIR 3.9
>
>
> Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
> Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/71d35a69
> Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/71d35a69
> Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/71d35a69
>
> Branch: refs/heads/develop
> Commit: 71d35a69351d7ede7526d02f1c824f01089db19f
> Parents: 09c4e92
> Author: Justin Mclean <jm...@apache.org>
> Authored: Sat Oct 12 08:57:24 2013 +1100
> Committer: Justin Mclean <jm...@apache.org>
> Committed: Sat Oct 12 08:57:24 2013 +1100
>
> ----------------------------------------------------------------------
>  ide/flashbuilder/makeApacheFlexForIDE.bat | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> ----------------------------------------------------------------------
>
>
>
http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/71d35a69/ide/flashbuilder/makeApacheFlexForIDE.bat
> ----------------------------------------------------------------------
> diff --git a/ide/flashbuilder/makeApacheFlexForIDE.bat
b/ide/flashbuilder/makeApacheFlexForIDE.bat
> index 3ff9a16..1ccc700 100755
> --- a/ide/flashbuilder/makeApacheFlexForIDE.bat
> +++ b/ide/flashbuilder/makeApacheFlexForIDE.bat
> @@ -42,10 +42,10 @@ REM
>  set APACHE_FLEX_BIN_DISTRO_DIR=..\..
>
>  REM
> -REM     Adobe AIR SDK Version 3.8
> +REM     Adobe AIR SDK Version 3.9
>  REM
>  set ADOBE_AIR_SDK_WIN_FILE=AdobeAIRSDK.zip
> -set ADOBE_AIR_SDK_WIN_URL=
http://airdownload.adobe.com/air/win/download/3.8/%ADOBE_AIR_SDK_WIN_FILE%
> +set ADOBE_AIR_SDK_WIN_URL=
http://airdownload.adobe.com/air/win/download/3.9/%ADOBE_AIR_SDK_WIN_FILE%
>
>  REM
>  REM     Adobe Flash Player Version 11.1
>

I always wondered about this.  Dont we need to change the swf-version as
well when we make these kind of changes?

FP 11.1 and AIR 3.9 have different swf-versions.  Does this cause problems
for users?

Thanks,
Om

[2/3] git commit: [flex-sdk] [refs/heads/develop] - Update for RC1

Posted by jm...@apache.org.
Update for RC1


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/251f26e2
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/251f26e2
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/251f26e2

Branch: refs/heads/develop
Commit: 251f26e20d3dd4ef0a35a48aa3058c55b5ed7188
Parents: 71d35a6
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Oct 12 11:07:34 2013 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Oct 12 11:07:34 2013 +1100

----------------------------------------------------------------------
 flex-sdk-description.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/251f26e2/flex-sdk-description.xml
----------------------------------------------------------------------
diff --git a/flex-sdk-description.xml b/flex-sdk-description.xml
index 117d002..deb5bd9 100644
--- a/flex-sdk-description.xml
+++ b/flex-sdk-description.xml
@@ -20,6 +20,6 @@
 <flex-sdk-description>
 <name>Apache Flex 4.11.0 FP11.1 AIR3.8 en_US</name>
 <version>4.11.0</version>
-<build>20131011</build>
+<build>20131012</build>
 </flex-sdk-description>
         
\ No newline at end of file


[3/3] git commit: [flex-sdk] [refs/heads/develop] - fix test to be more reasonable. It would be rare to see a discontiguous radiobutton group like this.

Posted by jm...@apache.org.
fix test to be more reasonable.  It would be rare to see a discontiguous radiobutton group like this.


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/fe2a2ea3
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/fe2a2ea3
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/fe2a2ea3

Branch: refs/heads/develop
Commit: fe2a2ea3a1851e537c5d04527a24dcc0ac279f34
Parents: 251f26e
Author: Alex Harui <ah...@apache.org>
Authored: Sat Oct 12 07:36:37 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sat Oct 12 07:38:50 2013 -0700

----------------------------------------------------------------------
 .../RadioButton/Styles/RadioButton_Mirroring_Styles.mxml           | 1 +
 mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/fe2a2ea3/mustella/tests/components/RadioButton/Styles/RadioButton_Mirroring_Styles.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/components/RadioButton/Styles/RadioButton_Mirroring_Styles.mxml b/mustella/tests/components/RadioButton/Styles/RadioButton_Mirroring_Styles.mxml
index 38888f3..06b7437 100644
--- a/mustella/tests/components/RadioButton/Styles/RadioButton_Mirroring_Styles.mxml
+++ b/mustella/tests/components/RadioButton/Styles/RadioButton_Mirroring_Styles.mxml
@@ -64,6 +64,7 @@
 		<TestCase testID="RadioButton_Styles_Mirroring_RTL_focusRing" keywords="[RadioButton, Styles, Mirroring]" description="Test focusRing with layoutDirection rtl with RadioButton">
             <setup>
                 <ResetComponent target="rb" className="mx.controls::RadioButton"  waitEvent="updateComplete" waitTarget="rb"/>
+                <SetProperty target="rb" propertyName="groupName" value="g1"/>                
                 <SetProperty target="rb" propertyName="label" value="Hello World!!!" waitEvent="updateComplete" waitTarget="rb"/>                
             </setup>
             <body>                

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/fe2a2ea3/mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml b/mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml
index 1b77b69..d0ae4f4 100644
--- a/mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml
+++ b/mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml
@@ -83,7 +83,7 @@
 	<TNComp id="tn"/>
 	<mx:Fade id="myFade" />
 	<mx:RadioButtonGroup id="g1"/>
-	<mx:RadioButton id="rb" effectStart="runStartTests(event)" effectEnd="runEndTests(event)" creationComplete="{ti.text='Creation Complete Event Triggered'}" keyDown="{ti.text='Key Down Event Triggered'}" keyUp="{ti.text='Key Up Event Triggered'}" rollOverEffect="myFade"/>
+	<mx:RadioButton id="rb" groupName="g1" effectStart="runStartTests(event)" effectEnd="runEndTests(event)" creationComplete="{ti.text='Creation Complete Event Triggered'}" keyDown="{ti.text='Key Down Event Triggered'}" keyUp="{ti.text='Key Up Event Triggered'}" rollOverEffect="myFade"/>
 	<mx:TextInput id="ti"/>