[royale-compiler] branch release/0.9.6 updated: try adding it here too
This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch release/0.9.6 in repository https://gitbox.apache.org/repos/asf/royale-compiler.git The following commit(s) were added to refs/heads/release/0.9.6 by this push: new e64f270 try adding it here too e64f270 is described below commit e64f2701e181526b2bc52b327a52e5530d71a7ba Author: Alex Harui AuthorDate: Wed Feb 13 21:05:19 2019 -0800 try adding it here too --- pom.xml | 7 +++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index e0170b5..0283bd0 100644 --- a/pom.xml +++ b/pom.xml @@ -190,6 +190,13 @@ + +org.apache.maven.plugins +maven-gpg-plugin + +true + + org.apache.rat
[royale-compiler] branch release/0.9.6 updated: suppress gpg when so we can run release:prepare on CI server
This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch release/0.9.6 in repository https://gitbox.apache.org/repos/asf/royale-compiler.git The following commit(s) were added to refs/heads/release/0.9.6 by this push: new 0446e37 suppress gpg when so we can run release:prepare on CI server 0446e37 is described below commit 0446e3735c27c5ac18da205aec1eb2ddb46ba769 Author: Alex Harui AuthorDate: Wed Feb 13 18:46:47 2019 -0800 suppress gpg when so we can run release:prepare on CI server --- pom.xml | 7 +++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index 6740265..e0170b5 100644 --- a/pom.xml +++ b/pom.xml @@ -139,6 +139,13 @@ + org.apache.maven.plugins + maven-gpg-plugin + +true + + + net.sourceforge.jburg jburg-maven-plugin 1.10.4
[royale-compiler] branch release/0.9.6 created (now d56eb47)
This is an automated email from the ASF dual-hosted git repository. aharui pushed a change to branch release/0.9.6 in repository https://gitbox.apache.org/repos/asf/royale-compiler.git. at d56eb47 [maven-release-plugin] prepare branch release/0.9.6 No new revisions were added by this update.
[royale-compiler] branch release_practice updated (e11a976 -> ac7f7fb)
This is an automated email from the ASF dual-hosted git repository. aharui pushed a change to branch release_practice in repository https://gitbox.apache.org/repos/asf/royale-compiler.git. from e11a976 add more variables for release steps so we can release from base branches other than the develop branch new d56eb47 [maven-release-plugin] prepare branch release/0.9.6 new 9524c3c [maven-release-plugin] prepare for next development iteration new ac7f7fb prepare for next development version. Maven jgit seems to forget to commit these files. The 3356 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: compiler-common/pom.xml |4 +- compiler-externc/pom.xml|8 +- compiler-jx/pom.xml | 14 +- compiler-test-utils/pom.xml |4 +- compiler/pom.xml| 10 +- debugger/pom.xml|8 +- flex-compiler-oem/pom.xml | 10 +- pom.xml | 1302 +-- royale-ant-tasks/pom.xml|4 +- royale-maven-plugin/pom.xml |4 +- swfutils/pom.xml|4 +- 11 files changed, 686 insertions(+), 686 deletions(-)
[royale-asjs] branch develop updated: tourdejewel: demo of combobox popup automatic positioning
This is an automated email from the ASF dual-hosted git repository. carlosrovira pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git The following commit(s) were added to refs/heads/develop by this push: new b3fe01b tourdejewel: demo of combobox popup automatic positioning b3fe01b is described below commit b3fe01bf72238395c9ee16caa073e112bc565f82 Author: Carlos Rovira AuthorDate: Wed Feb 13 23:55:50 2019 +0100 tourdejewel: demo of combobox popup automatic positioning --- .../src/main/royale/ComboBoxPlayGround.mxml| 21 +++-- .../royale/components/ComboBoxPopUpContent.mxml| 54 ++ 2 files changed, 71 insertions(+), 4 deletions(-) diff --git a/examples/royale/TourDeJewel/src/main/royale/ComboBoxPlayGround.mxml b/examples/royale/TourDeJewel/src/main/royale/ComboBoxPlayGround.mxml index d61ba09..f2da488 100644 --- a/examples/royale/TourDeJewel/src/main/royale/ComboBoxPlayGround.mxml +++ b/examples/royale/TourDeJewel/src/main/royale/ComboBoxPlayGround.mxml @@ -22,7 +22,8 @@ limitations under the License. xmlns:html="library://ns.apache.org/royale/html" xmlns:js="library://ns.apache.org/royale/basic" xmlns:c="components.*" - xmlns:models="models.*" sourceCodeUrl="ComboBoxPlayGround.mxml"> + xmlns:models="models.*" + sourceCodeUrl="ComboBoxPlayGround.mxml">
[royale-asjs] branch develop updated: Improve ComboBox positioning so it's always inside screen limits but avoid hide input box too
This is an automated email from the ASF dual-hosted git repository. carlosrovira pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git The following commit(s) were added to refs/heads/develop by this push: new b9364f3 Improve ComboBox positioning so it's always inside screen limits but avoid hide input box too b9364f3 is described below commit b9364f35df8deb11c630d9186d94d812abf290fe Author: Carlos Rovira AuthorDate: Wed Feb 13 23:54:59 2019 +0100 Improve ComboBox positioning so it's always inside screen limits but avoid hide input box too --- .../royale/jewel/beads/views/ComboBoxView.as | 38 ++ .../util/positionInsideBoundingClientRect.as | 2 +- 2 files changed, 33 insertions(+), 7 deletions(-) diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/ComboBoxView.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/ComboBoxView.as index 6221296..0cf7354 100644 --- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/ComboBoxView.as +++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/ComboBoxView.as @@ -18,9 +18,7 @@ package org.apache.royale.jewel.beads.views { -import org.apache.royale.jewel.beads.models.IJewelSelectionModel; - -COMPILE::SWF + COMPILE::SWF { import flash.utils.setTimeout; } @@ -35,6 +33,7 @@ COMPILE::SWF import org.apache.royale.events.IEventDispatcher; import org.apache.royale.geom.Point; import org.apache.royale.jewel.beads.controls.combobox.IComboBoxView; + import org.apache.royale.jewel.beads.models.IJewelSelectionModel; import org.apache.royale.jewel.Button; import org.apache.royale.jewel.List; import org.apache.royale.jewel.TextInput; @@ -42,8 +41,9 @@ COMPILE::SWF import org.apache.royale.jewel.supportClasses.combobox.ComboBoxPopUp; import org.apache.royale.jewel.supportClasses.ResponsiveSizes; import org.apache.royale.jewel.supportClasses.util.positionInsideBoundingClientRect; - import org.apache.royale.utils.UIUtils; import org.apache.royale.utils.BrowserInfo; + import org.apache.royale.utils.PointUtils; + import org.apache.royale.utils.UIUtils; /** * The ComboBoxView class creates the visual elements of the org.apache.royale.jewel.ComboBox @@ -320,8 +320,34 @@ COMPILE::SWF var origin:Point = new Point(0, button.y + button.height - top); var relocated:Point = positionInsideBoundingClientRect(_strand, _list, origin); - _list.x = relocated.x; - _list.y = relocated.y; + var point:Point = PointUtils.localToGlobal(origin, _strand); + + // by default list appear below textinput + + // if there's no enough space below, reposition above input + if(relocated.y < point.y) + { + var origin2:Point = new Point(0, button.y - _list.height - top); + var relocated2:Point = positionInsideBoundingClientRect(_strand, _list, origin2); + _list.y = relocated2.y; + + //if start to cover input... + if(_list.y == 0) + { + // ... reposition to the left or to right side (so we still can see the input) + _list.x = (relocated.x + _list.width + 1 >= outerWidth) ? relocated.x - _list.width : _list.x = relocated.x + _list.width; + } + else + { + // otherwise left in the same vertical as input + _list.x = relocated.x; + } + } + else + { + _list.y = relocated.y; + _list.x = relocated.x; + }
[royale-asjs] branch feature/issue_394_object_identifiers created (now 3167c87)
This is an automated email from the ASF dual-hosted git repository. okrueger pushed a change to branch feature/issue_394_object_identifiers in repository https://gitbox.apache.org/repos/asf/royale-asjs.git. at 3167c87 in non-heirarchical data, don't use the groupLabelField (it won't be set). Fixes #391 No new revisions were added by this update.
[royale-asjs] branch develop updated (4838877 -> 3167c87)
This is an automated email from the ASF dual-hosted git repository. aharui pushed a change to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git. from 4838877 Fix Hello World MX Moonshine IDE File new 126963f in binding, the dp isn't set at all so watch for it to be set in order to set the adg properties on the internal lists new 3167c87 in non-heirarchical data, don't use the groupLabelField (it won't be set). Fixes #391 The 8630 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: .../DataItemRendererFactoryForICollectionViewAdvancedDataGridData.as | 2 +- .../MXRoyale/src/main/royale/mx/controls/beads/DataGridView.as| 4 2 files changed, 5 insertions(+), 1 deletion(-)
[MAVEN-BUILD] Royale-asjs - Build # 1595 - Fixed
The Apache Jenkins build system has built Royale-asjs (build #1595) Status: Fixed Check console output at https://builds.apache.org/job/Royale-asjs/1595/ to view the results.
[royale-asjs] branch develop updated: Fix Hello World MX Moonshine IDE File
This is an automated email from the ASF dual-hosted git repository. piotrz pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git The following commit(s) were added to refs/heads/develop by this push: new 4838877 Fix Hello World MX Moonshine IDE File 4838877 is described below commit 483887741a55c5e4e1388baf9e75434818e14742 Author: Piotr Zarzycki AuthorDate: Wed Feb 13 11:51:37 2019 +0100 Fix Hello World MX Moonshine IDE File --- examples/mxroyale/HelloWorld/HelloWorld.as3proj | 88 +++-- 1 file changed, 53 insertions(+), 35 deletions(-) diff --git a/examples/mxroyale/HelloWorld/HelloWorld.as3proj b/examples/mxroyale/HelloWorld/HelloWorld.as3proj index 95f75bd..5d54f7d 100644 --- a/examples/mxroyale/HelloWorld/HelloWorld.as3proj +++ b/examples/mxroyale/HelloWorld/HelloWorld.as3proj @@ -1,64 +1,78 @@ - + + + - - - + + + + + + + + + - - - - - - + + + - + - + + - - - + + + + + + + + + + + @@ -67,7 +81,10 @@ limitations under the License. - + + + + @@ -76,20 +93,21 @@ limitations under the License. null False - + - + + + - - - - + + - + + null null null
[MAVEN-BUILD] Royale-asjs - Build # 1594 - Failure
The Apache Jenkins build system has built Royale-asjs (build #1594) Status: Failure Check console output at https://builds.apache.org/job/Royale-asjs/1594/ to view the results.