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/03/03 00:12:36 UTC

[1/3] git commit: [flex-sdk] [refs/heads/develop] - Minor changes to README and RELEASE NOTES. Grammar and formatting fixes.

Repository: flex-sdk
Updated Branches:
  refs/heads/develop 563c8e147 -> 6e87e4c2f


Minor changes to README and RELEASE NOTES.  Grammar and formatting fixes.


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

Branch: refs/heads/develop
Commit: 4fb600686bb1dfddc37ac8dff6946a6ebf6ca544
Parents: 306a2f0
Author: quetwo <ni...@theflexgroup.org>
Authored: Sun Mar 2 00:09:41 2014 -0500
Committer: quetwo <ni...@theflexgroup.org>
Committed: Sun Mar 2 00:09:41 2014 -0500

----------------------------------------------------------------------
 README        | 6 ++++--
 RELEASE_NOTES | 4 ++--
 2 files changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4fb60068/README
----------------------------------------------------------------------
diff --git a/README b/README
index c8ef8ca..b464bc2 100644
--- a/README
+++ b/README
@@ -51,8 +51,10 @@ Getting the convenience packages for Apache Flex
 
     The SDK installer requires the Adobe AIR runtime to be installed.
 
-    Starting with Apache Flex 4.12 the binary distribution can be installed using only Ant.
-    This is the recommended method for Linux users.
+    Starting with Apache Flex 4.12 the binary distribution can be installed using only ANT
+    in addition to the AIR installer mentioned above. This is the recommended method for
+    Linux users.  More information about installing the binary installtion with ANT can be
+    found on our wiki at :
 
       https://cwiki.apache.org/confluence/display/FLEX/Installation+help#Installationhelp-Antinstaller
 

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4fb60068/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 65e7e49..cef3006 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -23,7 +23,7 @@ attempt to correct this problem:
 
 https://cwiki.apache.org/confluence/display/FLEX/Adobe+Flash+Builder+'New+Project'+Bug
 
-Adobe have provided a patch for Flash Builder 4.7 that resolves this issue:
+Adobe has provided a patch for Flash Builder 4.7 that resolves this issue:
 
 http://helpx.adobe.com/flash-builder/kb/flex-new-project-issue--.html
 
@@ -176,7 +176,7 @@ attempt to correct this problem:
 
 https://cwiki.apache.org/confluence/display/FLEX/Adobe+Flash+Builder+'New+Project'+Bug
 
-Adobe have provided a patch for Flash Builder 4.7 that resolves this issue:
+Adobe has provided a patch for Flash Builder 4.7 that resolves this issue:
 
 http://helpx.adobe.com/flash-builder/kb/flex-new-project-issue--.html
 


[3/3] git commit: [flex-sdk] [refs/heads/develop] - changed back to IOS as isIPad returns false in the simulator

Posted by jm...@apache.org.
changed back to IOS as isIPad returns false in the simulator


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

Branch: refs/heads/develop
Commit: 6e87e4c2f09a4e6c6e93a2185a0045570a577ae5
Parents: 470705c
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Mar 3 10:11:23 2014 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Mar 3 10:11:23 2014 +1100

----------------------------------------------------------------------
 .../projects/framework/src/mx/core/RuntimeDPIProvider.as       | 6 +++---
 frameworks/projects/framework/src/mx/utils/Platform.as         | 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/6e87e4c2/frameworks/projects/framework/src/mx/core/RuntimeDPIProvider.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/core/RuntimeDPIProvider.as b/frameworks/projects/framework/src/mx/core/RuntimeDPIProvider.as
index 48d9ee9..7ce8cc7 100644
--- a/frameworks/projects/framework/src/mx/core/RuntimeDPIProvider.as
+++ b/frameworks/projects/framework/src/mx/core/RuntimeDPIProvider.as
@@ -119,10 +119,10 @@ public class RuntimeDPIProvider
 
     public function get runtimeDPI():Number
     {
-        var isIPad:Boolean = Platform.isIPad;
+        var isIOS:Boolean = Platform.isIOS;
         var screenDPI:Number = Capabilities.screenDPI;
 
-        if (isIPad)
+        if (isIOS) // as isIPad returns false in the simulator
 		{
             var root:DisplayObject = SystemManager.getSWFRoot(this);
             if (root != null )  {
@@ -130,7 +130,7 @@ public class RuntimeDPIProvider
                 if (stage != null){
                     var scX:Number = stage.fullScreenWidth;
                     var scY:Number = stage.fullScreenHeight;
-                    /*  as of Dec 2013,  iPad (resp. iPad retina)   are the only iOS devices to have 1024 (resp. 2048) screen width or height
+                    /*  as of Dec 2013,  iPad (resp. iPad retina) are the only iOS devices to have 1024 (resp. 2048) screen width or height
                      cf http://en.wikipedia.org/wiki/List_of_displays_by_pixel_density#Apple
                      * */
                     if ((scX == IPAD_RETINA_MAX_EXTENT || scY == IPAD_RETINA_MAX_EXTENT))

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/6e87e4c2/frameworks/projects/framework/src/mx/utils/Platform.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/utils/Platform.as b/frameworks/projects/framework/src/mx/utils/Platform.as
index 6c89078..494b83c 100644
--- a/frameworks/projects/framework/src/mx/utils/Platform.as
+++ b/frameworks/projects/framework/src/mx/utils/Platform.as
@@ -65,6 +65,7 @@ public class Platform
 	
 	/**
 	 *  Returns true if the applciation is runing on an iPad.
+	 *  Note this returns false in the mobile device simulator.
 	 *
 	 *  @langversion 3.0
 	 *  @playerversion Flash 10


[2/3] git commit: [flex-sdk] [refs/heads/develop] - Merge branch 'develop' into release4.12.0

Posted by jm...@apache.org.
Merge branch 'develop' into release4.12.0


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

Branch: refs/heads/develop
Commit: 470705c00049e2de12dcb55dd165e81d165a15ef
Parents: 4fb6006 563c8e1
Author: Alex Harui <ah...@apache.org>
Authored: Sun Mar 2 08:44:15 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Sun Mar 2 08:44:15 2014 -0800

----------------------------------------------------------------------
 installer.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)
----------------------------------------------------------------------