You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by yi...@apache.org on 2020/09/29 21:50:55 UTC

[royale-asjs] branch develop updated (02cd3e1 -> c4cc7b3)

This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


    from 02cd3e1  quick fix for build
     new 5817aa9  Adding AutomationObject
     new a6251ee  Merge branch 'develop' of https://github.com/apache/royale-asjs into develop
     new 5e04876  Some stub functions to BitmapImage
     new c4cc7b3  Merge branch 'develop' of https://github.com/apache/royale-asjs into develop

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../MXRoyale/src/main/royale/MXRoyaleClasses.as    |  2 +-
 .../main/royale/spark/primitives/BitmapImage.as    | 32 ++++++++++++++++++++++
 2 files changed, 33 insertions(+), 1 deletion(-)


[royale-asjs] 02/04: Merge branch 'develop' of https://github.com/apache/royale-asjs into develop

Posted by yi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit a6251ee2276bdce23fa64d36e9144380c4bd20a9
Merge: 5817aa9 3ed483a
Author: Yishay Weiss <yi...@yell.com>
AuthorDate: Mon Sep 28 15:04:39 2020 +0100

    Merge branch 'develop' of https://github.com/apache/royale-asjs into develop

 .../apache/royale/reflection/DefinitionWithMetaData.as    |  4 ++--
 .../org/apache/royale/reflection/MetaDataArgDefinition.as | 13 +++++++++++--
 .../org/apache/royale/reflection/MetaDataDefinition.as    | 15 ++++++++++++---
 .../org/apache/royale/reflection/MethodDefinition.as      |  4 ++--
 .../org/apache/royale/reflection/ParameterDefinition.as   | 12 +++++++++++-
 5 files changed, 38 insertions(+), 10 deletions(-)


[royale-asjs] 04/04: Merge branch 'develop' of https://github.com/apache/royale-asjs into develop

Posted by yi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit c4cc7b3d2228cb5bb415b3578fea1ad4951216a6
Merge: 5e04876 02cd3e1
Author: Yishay Weiss <yi...@yell.com>
AuthorDate: Tue Sep 29 22:50:27 2020 +0100

    Merge branch 'develop' of https://github.com/apache/royale-asjs into develop

 .../MXRoyale/src/main/royale/MXRoyaleClasses.as    |   2 +
 .../src/main/royale/mx/core/UIComponent.as         |  23 +++
 .../MXRoyale/src/main/royale/mx/utils/NameUtil.as  | 189 +++++++++++++++++++++
 3 files changed, 214 insertions(+)



[royale-asjs] 01/04: Adding AutomationObject

Posted by yi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 5817aa9c0084a61449041f9b8cbbc150a49ba0c3
Author: Yishay Weiss <yi...@yell.com>
AuthorDate: Mon Sep 28 15:01:41 2020 +0100

    Adding AutomationObject
---
 frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as b/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
index daf563c..54db0fc 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
@@ -27,7 +27,7 @@ package
  */
 internal class MXRoyaleClasses
 {
-	//import mx.automation.IAutomationObject; IAutomationObject;
+	import mx.automation.IAutomationObject; IAutomationObject;
 	//import mx.controls.SWFLoader; SWFLoader;
 	import mx.core.DPIClassification; DPIClassification;
 	import mx.core.DesignLayer; DesignLayer;


[royale-asjs] 03/04: Some stub functions to BitmapImage

Posted by yi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 5e04876791b34e0013c58ee31d29f7d901768d89
Author: Yishay Weiss <yi...@yell.com>
AuthorDate: Tue Sep 29 22:50:13 2020 +0100

    Some stub functions to BitmapImage
---
 .../main/royale/spark/primitives/BitmapImage.as    | 32 ++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/BitmapImage.as b/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/BitmapImage.as
index f34a086..9c4fb34 100644
--- a/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/BitmapImage.as
+++ b/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/BitmapImage.as
@@ -206,6 +206,38 @@ public class BitmapImage extends EventDispatcher
     //  Properties
     //
     //--------------------------------------------------------------------------
+
+	
+public function set left(value:Number):void
+{
+	// stub - this should be removed once BitmapImage extends the right class;
+}
+	
+public function set right(value:Number):void
+{
+	// stub - this should be removed once BitmapImage extends the right class;
+}
+	
+public function set top(value:Number):void
+{
+	// stub - this should be removed once BitmapImage extends the right class;
+}
+	
+public function set bottom(value:Number):void
+{
+	// stub - this should be removed once BitmapImage extends the right class;
+}
+	
+public function set minWidth(value:Number):void
+{
+	// stub - this should be removed once BitmapImage extends the right class;
+}
+	
+public function set minHeight(value:Number):void
+{
+	// stub - this should be removed once BitmapImage extends the right class;
+}
+
 /* 
     private var _scaleGridBottom:Number;
     private var _scaleGridLeft:Number;