You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by gr...@apache.org on 2021/09/20 22:51:06 UTC

[royale-asjs] branch develop updated (fda99d1 -> df170fd)

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

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


    from fda99d1  .gitignore: asformat
     new d965431  SelfItemRendererInitializer was removed from mxml manifest, which removed it from the build. It needs to be added back in the build via actionscript explicit class reference.
     new 79911bf  Add mx.messaging.Consumer to manifest to support mxml expression (as was the case in Flex)
     new df170fd  Merge branch 'develop' of https://github.com/apache/royale-asjs into develop

The 3 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/resources/mx-royale-manifest.xml |  1 +
 .../SparkRoyale/src/main/royale/SparkRoyaleClasses.as  | 18 +++++++++---------
 2 files changed, 10 insertions(+), 9 deletions(-)

[royale-asjs] 01/03: SelfItemRendererInitializer was removed from mxml manifest, which removed it from the build. It needs to be added back in the build via actionscript explicit class reference.

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

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

commit d96543167753e9ea75dcb179a0b7a730197abff4
Author: greg-dove <gr...@gmail.com>
AuthorDate: Tue Sep 21 10:48:58 2021 +1200

    SelfItemRendererInitializer was removed from mxml manifest, which removed it from the build. It needs to be added back in the build via actionscript explicit class reference.
---
 .../SparkRoyale/src/main/royale/SparkRoyaleClasses.as  | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/frameworks/projects/SparkRoyale/src/main/royale/SparkRoyaleClasses.as b/frameworks/projects/SparkRoyale/src/main/royale/SparkRoyaleClasses.as
index cc9791f..1d834c2 100644
--- a/frameworks/projects/SparkRoyale/src/main/royale/SparkRoyaleClasses.as
+++ b/frameworks/projects/SparkRoyale/src/main/royale/SparkRoyaleClasses.as
@@ -100,16 +100,16 @@ internal class SparkRoyaleClasses
     import spark.events.DropDownEvent; DropDownEvent;
 
 	
-import spark.components.IItemRenderer; IItemRenderer;
-import spark.effects.easing.IEaser; IEaser;
-import spark.events.TitleWindowBoundsEvent; TitleWindowBoundsEvent;
-import spark.components.IItemRendererOwner; IItemRendererOwner;
-import spark.utils.LabelUtil; LabelUtil;
-import spark.components.ResizeMode; ResizeMode;
-import spark.filters.BevelFilter; BevelFilter; 
-import spark.components.supportClasses.DropDownController; DropDownController;
+	import spark.components.IItemRenderer; IItemRenderer;
+	import spark.effects.easing.IEaser; IEaser;
+	import spark.events.TitleWindowBoundsEvent; TitleWindowBoundsEvent;
+	import spark.components.IItemRendererOwner; IItemRendererOwner;
+	import spark.utils.LabelUtil; LabelUtil;
+	import spark.components.ResizeMode; ResizeMode;
+	import spark.filters.BevelFilter; BevelFilter;
+	import spark.components.supportClasses.DropDownController; DropDownController;
 
-	
+	import spark.components.beads.SelfItemRendererInitializer;SelfItemRendererInitializer;
 }
 
 }

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

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

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

commit df170fdcf3532195a25a7043138301895c207baa
Merge: 79911bf fda99d1
Author: greg-dove <gr...@gmail.com>
AuthorDate: Tue Sep 21 10:50:16 2021 +1200

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

 bin/.gitignore | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

[royale-asjs] 02/03: Add mx.messaging.Consumer to manifest to support mxml expression (as was the case in Flex)

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

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

commit 79911bf1628b1c5a1f15802ba0be8f0719027791
Author: greg-dove <gr...@gmail.com>
AuthorDate: Tue Sep 21 10:50:03 2021 +1200

    Add mx.messaging.Consumer to manifest to support mxml expression (as was the case in Flex)
---
 frameworks/projects/MXRoyale/src/main/resources/mx-royale-manifest.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/frameworks/projects/MXRoyale/src/main/resources/mx-royale-manifest.xml b/frameworks/projects/MXRoyale/src/main/resources/mx-royale-manifest.xml
index faebdde..445d81e 100644
--- a/frameworks/projects/MXRoyale/src/main/resources/mx-royale-manifest.xml
+++ b/frameworks/projects/MXRoyale/src/main/resources/mx-royale-manifest.xml
@@ -146,6 +146,7 @@
 
 	<component id="AMFChannel" class="mx.messaging.channels.AMFChannel" />
 	<component id="ChannelSet" class="mx.messaging.ChannelSet" />
+	<component id="Consumer" class="mx.messaging.Consumer" />
 
 	<component id="ListCollectionView" class="mx.collections.ListCollectionView"/>
 	<component id="ArrayCollection" class="mx.collections.ArrayCollection"/>