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 2014/08/23 04:44:10 UTC

git commit: [flex-utilities] [refs/heads/develop] - FLEX-34484 skeleton for Apache Flex examples using content from Apache Flex page on wikiedia

Repository: flex-utilities
Updated Branches:
  refs/heads/develop 8e65353ea -> 33255c235


FLEX-34484 skeleton for Apache Flex examples using content from Apache Flex page on wikiedia


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

Branch: refs/heads/develop
Commit: 33255c2354c3a76ad6ff92fdd020414ee8c000c3
Parents: 8e65353
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Aug 23 12:43:53 2014 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Aug 23 12:43:53 2014 +1000

----------------------------------------------------------------------
 TourDeFlex/LICENSE                              |   5 ++
 TourDeFlex/NOTICE                               |   4 ++
 TourDeFlex/TourDeFlex3/build.xml                |  15 ++++-
 .../src/apache/ApacheFlex4_10_0.mxml            |  54 ++++++++++++++++++
 .../src/apache/ApacheFlex4_11_0.mxml            |  54 ++++++++++++++++++
 .../src/apache/ApacheFlex4_12_1.mxml            |  56 +++++++++++++++++++
 .../src/apache/ApacheFlex4_13_0.mxml            |  52 +++++++++++++++++
 .../TourDeFlex3/src/apache/ApacheFlex4_8_0.mxml |  50 +++++++++++++++++
 .../TourDeFlex3/src/apache/ApacheFlex4_9_0.mxml |  56 +++++++++++++++++++
 .../src/apache/assets/ApacheFlexLogo.png        | Bin 0 -> 71228 bytes
 TourDeFlex/TourDeFlex3/src/explorer.xml         |   8 +++
 11 files changed, 351 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/LICENSE
----------------------------------------------------------------------
diff --git a/TourDeFlex/LICENSE b/TourDeFlex/LICENSE
index df070f2..f89f1f3 100644
--- a/TourDeFlex/LICENSE
+++ b/TourDeFlex/LICENSE
@@ -214,6 +214,11 @@ see TourDeFlex3/src/mx/effects/assets.
 The ping sound effect (ping.mp3) in TourDeFlex3/mx/src/effects/assets is
 licensed under Creative Commons Attribution 3.0 (CC BY 3.0).
 
+The summaries of each version of Apache Flex in TourDeFlex3/apache are
+licensed under Creative Commons Attribution-ShareAlike 3.0 Unported
+License (CC BY-SA 3.0).
+
+
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/NOTICE
----------------------------------------------------------------------
diff --git a/TourDeFlex/NOTICE b/TourDeFlex/NOTICE
index 70f7066..efe3480 100644
--- a/TourDeFlex/NOTICE
+++ b/TourDeFlex/NOTICE
@@ -10,4 +10,8 @@ Copyright 2009 - 2013 Adobe Systems Incorporated. All Rights Reserved.
 
 The ping sound effect (ping.mp3) in TourDeFlex3/src/mx/effects/assets
 was created by CameronMusic. The original file can be found here:
+http://www.freesound.org/people/cameronmusic/sounds/138420/
+
+The text used in the summaries of each version of Apache Flex
+in TourDeFlex3/apache can be found here:
 http://www.freesound.org/people/cameronmusic/sounds/138420/
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/TourDeFlex3/build.xml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/build.xml b/TourDeFlex/TourDeFlex3/build.xml
index 0d681dc..d66ab0d 100644
--- a/TourDeFlex/TourDeFlex3/build.xml
+++ b/TourDeFlex/TourDeFlex3/build.xml
@@ -48,7 +48,7 @@
 		</sequential>
 	</macrodef>	
 		
-	<target name="compile" depends="compile-shell,compile-mx,compile-spark,compile-spark2,compile-spark3">
+	<target name="compile" depends="compile-shell,compile-mx,compile-spark,compile-spark2,compile-spark3,compile-apache">
 	</target>
 	
 	<target name="compile-shell">
@@ -379,6 +379,15 @@
 		<compile-mxml example="/spark/controls/VideoPlayerExample"/>
 		<compile-mxml example="/spark/controls/ListExample"/>
 	</target>
+	
+	<target name="compile-apache" description="comile apache examples">
+		<compile-mxml example="/apache/ApacheFlex4_8_0"/>
+		<compile-mxml example="/apache/ApacheFlex4_9_0"/>
+		<compile-mxml example="/apache/ApacheFlex4_10_0"/>
+		<compile-mxml example="/apache/ApacheFlex4_11_0"/>
+		<compile-mxml example="/apache/ApacheFlex4_12_1"/>
+		<compile-mxml example="/apache/ApacheFlex4_13_0"/>
+	</target>
 		
 	<target name="package" description="package up all source files" depends="package-dir,package-tar,package-zip">
 	</target>
@@ -389,7 +398,7 @@
 	</target>
 		
 	<target name="package-tar" description="tar up all source files">     
-        <tar destfile="${basedir}/out/apache-flex-tour-de-flex-component-explorer-src-${version}.tar.gz" 
+        <tar destfile="${basedir}/out/apache-flex-tour-de-flex-component-explorer-${version}-src.tar.gz" 
          	compression="gzip"
             longfile="gnu">
             <tarfileset dir="${basedir}/..">
@@ -419,7 +428,7 @@
 	</target>
 	
 	<target name="package-zip" description="zip up all source files">    
-        <zip destfile="${basedir}/out/apache-flex-tour-de-flex-component-explorer-src-${version}.zip">
+        <zip destfile="${basedir}/out/apache-flex-tour-de-flex-component-explorer-${version}-src.zip">
             <fileset dir="${basedir}/..">
                 <include name="LICENSE" />
                 <include name="NOTICE" />

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_10_0.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_10_0.mxml b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_10_0.mxml
new file mode 100644
index 0000000..e8fdb6b
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_10_0.mxml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
+			   xmlns:s="library://ns.adobe.com/flex/spark" 
+			   xmlns:mx="library://ns.adobe.com/flex/mx">
+	<s:layout>
+		<s:VerticalLayout paddingLeft="20" paddingTop="20" />
+	</s:layout>
+	
+	<s:HGroup>
+		<s:Image source="@Embed('/assets/ApacheFlexLogo.png')" width="50" height="50" />
+		<s:VGroup height="100%" verticalAlign="middle">
+			<s:Label text="Apache Flex 4.10" fontSize="20" fontWeight="bold" />
+			<s:Label text="Released Aug 6, 2013" />	
+		</s:VGroup>	
+	</s:HGroup>
+
+	<s:RichText width="100%">
+		<s:p />
+		<s:p>Apache Flex community releases Flex 4.10.0.</s:p>
+		<s:p />
+		<s:p>Differences and highlights include:</s:p>
+		<s:list>
+			<s:li>Support for latest versions of Flash Player (up to 11.8) and AIR runtimes (up to 3.8)</s:li>
+			<s:li>Improved support for older Flash Player versions (down to 10.2)</s:li>
+			<s:li>Linux support</s:li>
+			<s:li>15 new Spark components</s:li>
+			<s:li>Advanced telemetry support</s:li>
+			<s:li>480 dpi mobile skins</s:li>
+			<s:li>Over 200 bugs fixeds</s:li>
+		</s:list>
+		<s:p />
+		<s:p>For a full list of changes please see the README.</s:p>
+		<s:p />
+	</s:RichText>
+	<s:Label text="Content from Wikipedia licenced under a Creative Commons Attribution-ShareAlike 3.0 Unported License" fontSize="9" />
+</s:Application>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_11_0.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_11_0.mxml b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_11_0.mxml
new file mode 100644
index 0000000..4417529
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_11_0.mxml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
+			   xmlns:s="library://ns.adobe.com/flex/spark" 
+			   xmlns:mx="library://ns.adobe.com/flex/mx">
+	<s:layout>
+		<s:VerticalLayout paddingLeft="20" paddingTop="20" />
+	</s:layout>
+	
+	<s:HGroup>
+		<s:Image source="@Embed('/assets/ApacheFlexLogo.png')" width="50" height="50" />
+		<s:VGroup height="100%" verticalAlign="middle">
+			<s:Label text="Apache Flex 4.11" fontSize="20" fontWeight="bold" />
+			<s:Label text="Released Oct 28, 2013" />
+		</s:VGroup>	
+	</s:HGroup>
+	
+	<s:RichText width="100%">
+		<s:p />
+		<s:p>Apache Flex community releases Flex 4.11.0.</s:p>
+		<s:p />
+		<s:p>Differences and highlights include:</s:p>
+		<s:list>
+			<s:li>Support for Flash Player 11.9 and AIR runtime 3.9</s:li>
+			<s:li>mx:AdvancedDataGrid and mx:DataGrid speed improvements</s:li>
+			<s:li>Updated OSMF to latest version</s:li>
+			<s:li>Mobile datagrid component</s:li>
+			<s:li>120 and 640 dpi mobile skins</s:li>
+			<s:li>Desktop callout component</s:li>
+			<s:li>Over 50 bugs fixed</s:li>
+		</s:list>
+		<s:p />
+		<s:p>For a full list of changes please see the README.</s:p>
+		<s:p />
+	</s:RichText>
+	<s:Label text="Content from Wikipedia licenced under a Creative Commons Attribution-ShareAlike 3.0 Unported License" fontSize="9" />
+</s:Application>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_12_1.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_12_1.mxml b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_12_1.mxml
new file mode 100644
index 0000000..5ec5b4f
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_12_1.mxml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
+			   xmlns:s="library://ns.adobe.com/flex/spark" 
+			   xmlns:mx="library://ns.adobe.com/flex/mx">
+	<s:layout>
+		<s:VerticalLayout paddingLeft="20" paddingTop="20" />
+	</s:layout>
+	
+	<s:HGroup>
+		<s:Image source="@Embed('/assets/ApacheFlexLogo.png')" width="50" height="50" />
+		<s:VGroup height="100%" verticalAlign="middle">
+			<s:Label text="Apache Flex 4.12" fontSize="20" fontWeight="bold" />
+			<s:Label text="Released May 3, 2014" />
+		</s:VGroup>	
+	</s:HGroup>
+	
+	<s:RichText width="100%">
+		<s:p />
+		<s:p>Apache Flex community releases Flex 4.12.1.</s:p>
+		<s:p />
+		<s:p>Differences and highlights in 4.12.0 and 4.12.1 include:</s:p>
+		<s:list>
+			<s:li>Support for Flash Player 12.0 and 13.0 and AIR runtime 4.0 and 13.0</s:li>
+			<s:li>Fixed Adobe Flash Builder bug, which inserts a incorrect attribute while creating a new project that uses Apache Flex SDK</s:li>
+			<s:li>Extended mobile media query support</s:li>
+			<s:li>Improved mobile memory usage/performance</s:li>
+			<s:li>Improved iPad and iOS7 support</s:li>
+			<s:li>mx:AdvancedDataGrid and mx:DataGrid performance improvements</s:li>
+			<s:li>New MaskedTextinput component</s:li>
+			<s:li>JSON support for ArrayCollection and ArrayList</s:li>
+			<s:li>Over 100 bugs fixed</s:li>
+		</s:list>
+		<s:p />
+		<s:p>For a full list of changes please see the README.</s:p>
+		<s:p />
+	</s:RichText>
+	<s:Label text="Content from Wikipedia licenced under a Creative Commons Attribution-ShareAlike 3.0 Unported License" fontSize="9" />
+</s:Application>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_13_0.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_13_0.mxml b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_13_0.mxml
new file mode 100644
index 0000000..99ea77d
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_13_0.mxml
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
+			   xmlns:s="library://ns.adobe.com/flex/spark" 
+			   xmlns:mx="library://ns.adobe.com/flex/mx">
+	<s:layout>
+		<s:VerticalLayout paddingLeft="20" paddingTop="20" />
+	</s:layout>
+	
+	<s:HGroup>
+		<s:Image source="@Embed('/assets/ApacheFlexLogo.png')" width="50" height="50" />
+		<s:VGroup height="100%" verticalAlign="middle">
+			<s:Label text="Apache Flex 4.13" fontSize="20" fontWeight="bold" />
+			<s:Label text="Released Jul 28, 2014" />
+		</s:VGroup>	
+	</s:HGroup>
+	
+	<s:RichText width="100%">
+		<s:p />
+		<s:p>Apache Flex community releases Flex 4.13.0.</s:p>
+		<s:p />
+		<s:p>Differences and highlights include:</s:p>
+		<s:list>
+			<s:li>Support for Flash Player 14.0 and AIR runtime 14.0</s:li>
+			<s:li>FDB supports debugging ActionScript Workers</s:li>
+			<s:li>percentWidth for GridColumn</s:li>
+			<s:li>Add Chinese translations for all the installers of Flex</s:li>
+			<s:li>Over 30 bugs fixed</s:li>
+		</s:list>
+		<s:p />
+		<s:p>For a full list of changes please see the README.</s:p>
+		<s:p />
+	</s:RichText>
+	<s:Label text="Content from Wikipedia licenced under a Creative Commons Attribution-ShareAlike 3.0 Unported License" fontSize="9" />
+</s:Application>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_8_0.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_8_0.mxml b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_8_0.mxml
new file mode 100644
index 0000000..e4e2009
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_8_0.mxml
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
+			   xmlns:s="library://ns.adobe.com/flex/spark" 
+			   xmlns:mx="library://ns.adobe.com/flex/mx">
+	<s:layout>
+		<s:VerticalLayout paddingLeft="20" paddingTop="20" />
+	</s:layout>
+	
+	<s:HGroup>
+		<s:Image source="@Embed('/assets/ApacheFlexLogo.png')" width="50" height="50" />
+		<s:VGroup height="100%" verticalAlign="middle">
+			<s:Label text="Apache Flex 4.8 (incubating)" fontSize="20" fontWeight="bold" />
+			<s:Label text="Released Jul 25, 2012" />
+		</s:VGroup>	
+	</s:HGroup>
+	
+	<s:RichText width="100%">
+		<s:p />
+		<s:p>Apache Flex community releases Flex 4.8.0 incubating and it as a parity release with Adobe Flex 4.6.0. This is the first release under the incubator of the Apache Software Foundation and represents the initial donation of Adobe Flex 4.6 by Adobe System Inc.</s:p>
+		<s:p />
+		<s:p>Differences and highlights include:</s:p>
+		<s:list>
+			<s:li>Flex trademark issues are largely cleared up</s:li>
+			<s:li>Bug-tracking / issue-tracking system (JIRA) transferred from the Adobe bug tracker to Apache bug tracker</s:li>
+			<s:li>Mustela test suite is donated to Apache</s:li>
+		</s:list>
+		<s:p />
+		<s:p>For a full list of changes please see the README.</s:p>
+		<s:p />
+	</s:RichText>
+	<s:Label text="Content from Wikipedia licenced under a Creative Commons Attribution-ShareAlike 3.0 Unported License" fontSize="9" />
+</s:Application>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_9_0.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_9_0.mxml b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_9_0.mxml
new file mode 100644
index 0000000..ec00457
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_9_0.mxml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
+			   xmlns:s="library://ns.adobe.com/flex/spark" 
+			   xmlns:mx="library://ns.adobe.com/flex/mx">
+	<s:layout>
+		<s:VerticalLayout paddingLeft="20" paddingTop="20" />
+	</s:layout>
+	
+	<s:HGroup>
+		<s:Image source="@Embed('/assets/ApacheFlexLogo.png')" width="50" height="50" />
+		<s:VGroup height="100%" verticalAlign="middle">
+			<s:Label text="Apache Flex 4.9" fontSize="20" fontWeight="bold" />
+			<s:Label text="Released Jan 11, 2013" />
+		</s:VGroup>	
+	</s:HGroup>
+	
+	<s:RichText width="100%">
+		<s:p />
+		<s:p>Apache Flex community releases Flex 4.9.0. This is the first release since Apache Flex became a top level project of the Apache Software Foundation.</s:p>
+		<s:p />
+		<s:p>Differences and highlights include:</s:p>
+		<s:list>
+			<s:li>New locales for Apache Flex including Australian, British, Canadian, Greek, Switzerland (German) and Portuguese</s:li>
+			<s:li>Apache Flex SDK can be compiled for any version of the Flash Player from 10.2 to 11.5</s:li>
+			<s:li>New PostCodeFormatter and PostCodeValidator classes for international postcode formatting and validation</s:li>
+			<s:li>New VectorList and VectorCollection classes for lists and collections of vectors</s:li>
+			<s:li>New version of the TLF (Text Layout Framework), the TLF 3.0.33 source code is now included as it is now part of the Apache Flex donation</s:li>
+			<s:li>Can use Java 7 to compile SDK (see README for instructions)</s:li>
+			<s:li>Many improvements and updates to Mustella tests</s:li>
+			<s:li>An SDK installer has also been created and is the recommended way of installing the Apache Flex SDK in an IDE</s:li>
+			<s:li>Various important bug fixes</s:li>
+		</s:list>
+		<s:p />
+		<s:p>For a full list of changes please see the README.</s:p>
+		<s:p />
+	</s:RichText>
+	<s:Label text="Content from Wikipedia licenced under a Creative Commons Attribution-ShareAlike 3.0 Unported License" fontSize="9" />
+</s:Application>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/TourDeFlex3/src/apache/assets/ApacheFlexLogo.png
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/apache/assets/ApacheFlexLogo.png b/TourDeFlex/TourDeFlex3/src/apache/assets/ApacheFlexLogo.png
new file mode 100644
index 0000000..4ff037f
Binary files /dev/null and b/TourDeFlex/TourDeFlex3/src/apache/assets/ApacheFlexLogo.png differ

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/33255c23/TourDeFlex/TourDeFlex3/src/explorer.xml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/explorer.xml b/TourDeFlex/TourDeFlex3/src/explorer.xml
index 36074ee..6a10a3b 100755
--- a/TourDeFlex/TourDeFlex3/src/explorer.xml
+++ b/TourDeFlex/TourDeFlex3/src/explorer.xml
@@ -439,5 +439,13 @@
 				</node>
 			</node>
 		</node>
+		<node label="Apache Flex Components and Features">
+			<node label="Apache Flex 4.8" app="apache/ApacheFlex4_8_0" />
+			<node label="Apache Flex 4.9" app="apache/ApacheFlex4_9_0" />
+			<node label="Apache Flex 4.10" app="apache/ApacheFlex4_10_0" />
+			<node label="Apache Flex 4.11" app="apache/ApacheFlex4_11_0" />
+			<node label="Apache Flex 4.12" app="apache/ApacheFlex4_12_1" />
+			<node label="Apache Flex 4.13" app="apache/ApacheFlex4_13_0" />
+		</node>
 	</node>
 </compTree>
\ No newline at end of file