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/12/23 23:54:16 UTC

[1/2] git commit: [flex-sdk] [refs/heads/develop] - updated release notes to match recent JIRA changes

Updated Branches:
  refs/heads/develop c3b7791de -> 1a3ad0571


updated release notes to match recent JIRA changes


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

Branch: refs/heads/develop
Commit: a48fddc31d5389596fce6ec6e0aa81fb8b9a630b
Parents: c3b7791
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Dec 24 09:45:53 2013 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Dec 24 09:45:53 2013 +1100

----------------------------------------------------------------------
 RELEASE_NOTES | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a48fddc3/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 917b37c..b3fb4c3 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -43,6 +43,11 @@ SDK Changes
 - Option to not store last call result in RomoteObject and WebService.
 - StageTextInput can now be included in scrollable content.
 - new iOS os-version media css selector 
+- iOS7 status bar support
+
+Build Changes
+---------------
+- Made PixelBender a separate release
 
 Bug Fixes
 ----------
@@ -55,6 +60,9 @@ Bug Fixes
 
 JIRA Issue Number and Summary                                                                                        
 -------------------------------------------------------------------------------------------------------------------
+FLEX-33984  Spark CheckBox does not support labelPlacement like it's mx counter part
+FLEX-33992  Zero division at Grid.as setters for horizontalScrollPosition and verticalScrollPosition
+FLEX-33984  Spark CheckBox does not support labelPlacement like it's mx counter part
 FLEX-33976  closing Alert from modal TitleWindow removes blur in main app
 FLEX-33947  Errors in mobile ButtonBar Flex 4.11
 FLEX-33920  spark ComboBox.changeHighlightedSelection doesn't check the newindex upperbound
@@ -84,6 +92,8 @@ FLEX-33772  Incorrect tab focus behavior (closed loops) when using focus groups
 FLEX-33715  Error: Attempted access of inaccessible method getStyle through a reference with static type MXFTETextInput.
 FLEX-33671  Warning messages when using experimental components.
 FLEX-33632  Getting Run Time Error when loading resource module at runtime.
+FLEX-25962  PopupAnchor needs modal functionality
+FLEX-24623  Remove private declarations in PopUpAnchor
 
 
 Apache Flex 4.11


[2/2] git commit: [flex-sdk] [refs/heads/develop] - FLEX-33745 fix RTE if accessibility is deactivated

Posted by jm...@apache.org.
FLEX-33745 fix RTE if accessibility is deactivated


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

Branch: refs/heads/develop
Commit: 1a3ad0571993c89cc77100a1c90cb5909a47ba7c
Parents: a48fddc
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Dec 24 09:53:13 2013 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Dec 24 09:53:13 2013 +1100

----------------------------------------------------------------------
 .../projects/framework/src/mx/managers/PopUpManagerImpl.as      | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/1a3ad057/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as b/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
index 930171a..a6923a3 100644
--- a/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
+++ b/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
@@ -1474,7 +1474,7 @@ public class PopUpManagerImpl extends EventDispatcher implements IPopUpManager
 					var o:PopUpData = popupInfo[i];
 					if (o && o != p && o.owner.accessibilityProperties)
 					{
-						o.owner.accessibilityProperties.silent	= true;
+						o.owner.accessibilityProperties.silent = true;
 					}
 				}
 				
@@ -1518,7 +1518,8 @@ public class PopUpManagerImpl extends EventDispatcher implements IPopUpManager
 				if (popupInfo.length<=1)
 				{
 					var sbRoot:Object = p.systemManager.getSandboxRoot();
-					sbRoot.document.accessibilityProperties.silent = false;
+					if (sbRoot.document.accessibilityProperties)
+						sbRoot.document.accessibilityProperties.silent = false;
 				}
 				
 				try {