Re: Build failed in Jenkins: flex-falcon #1627

2017-06-27 Thread piotrz
Ahh! If that help - It probably was my fault, cause I was playing a bit with builds lately. I'm sorry about that! Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context:

Re: Build failed in Jenkins: flex-falcon #1627

2017-06-27 Thread Justin Mclean
Hi, > Does this failure is related to failing MD5Checker ? I don't think so. It looks like one of the unit tests has failed. BUILD FAILED >:892: The

Re: Build failed in Jenkins: flex-falcon #1627

2017-06-27 Thread piotrz
Does this failure is related to failing MD5Checker ? Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Re-Build-failed-in-Jenkins-flex-falcon-1627-tp62646p62651.html Sent from the Apache Flex

Re: [FlexJS,TLF] Tlf branch and Maven build

2017-06-27 Thread Alex Harui
Every time we change compile-swf-config or compile-js-config we have to remember that we might have to change the pom.xml. I keep forgetting to check the pom. However, DragDrop worked for me. We'll see what the CI server says. -Alex On 6/27/17, 1:47 PM, "Peter Ent"

Re: [FlexJS,TLF] Tlf branch and Maven build

2017-06-27 Thread Peter Ent
I just added something to TLF branch, in the DragDrop project. There is now a dependency on Collections; does a pom file need to be changed to reflect that or is the compile-swf-config file enough? ‹peter On 6/27/17, 4:41 PM, "Alex Harui" wrote: >I had to update some

Re: [FlexJS,TLF] Tlf branch and Maven build

2017-06-27 Thread Alex Harui
I had to update some poms. -Alex On 6/27/17, 12:15 PM, "piotrz" wrote: >I think it is related to his changes. I just tried build Basic locally and >it's failed with same stacktrace. I got update of falcon beforehand. > >Maybe Alex will have some thoughts on that. >

Re: git commit: [flex-asjs] [refs/heads/tlf] - New beads to support drag and drop with lists. Preliminary version.

2017-06-27 Thread Piotr Zarzycki
Peter! That is cool! :) On Tue, Jun 27, 2017, 22:03 wrote: > Repository: flex-asjs > Updated Branches: > refs/heads/tlf c2f7a2d8f -> 88e31ab94 > > > New beads to support drag and drop with lists. Preliminary version. > > > Project:

Re: Build failed in Jenkins: flex-falcon #1627

2017-06-27 Thread Piotr Zarzycki
Hi, develop branch is failing. Can someone take a look into that ? I cannot figure out what is happening. Thanks, Piotr 2017-06-27 21:42 GMT+02:00 : > See > > -- >

Re: [FlexJS,TLF] Tlf branch and Maven build

2017-06-27 Thread piotrz
I think it is related to his changes. I just tried build Basic locally and it's failed with same stacktrace. I got update of falcon beforehand. Maybe Alex will have some thoughts on that. Thanks, Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context:

Re: [FlexJS,TLF] Tlf branch and Maven build

2017-06-27 Thread Harbs
There is no reference to SpriteVisualElement anywhere. Alex added support to FXG which uses flash.display.Sprite. Maybe there’s something configured wrong with Maven causing it to get confused and think there’s a dependency on SpriteVisualElement? Is the latest falcon being built? (There were

Re: [FlexJS,TLF] Tlf branch and Maven build

2017-06-27 Thread piotrz
Hi Harbs, I see that your TLF branch is failing on Maven build [1] with following stack: Loading configuration: F:\jenkins\jenkins-slave\workspace\FlexJS_Pipeline_tlf-FPPLDH3IED5DAGFHRJL7RRGRIFBYTXXVJMECBOAQYUNMJQLGIAAQ\framework\frameworks\projects\Basic\target\compile-swf-config.xml Error:

Re: [DRAFT] Apache FlexJS 0.8.0 and Apache Flex FalconJX 0.8.0 Released

2017-06-27 Thread Josh Tynjala
I installed the npm version, and it looks good to me! - Josh On Tue, Jun 27, 2017 at 10:52 AM, OmPrakash Muppirala wrote: > FlexJS 0.8 has been published to npm. > > Please test using: > npm install flexjs -g > > Thanks, > Om > > On Tue, Jun 27, 2017 at 10:46 PM,

Re: [DRAFT] Apache FlexJS 0.8.0 and Apache Flex FalconJX 0.8.0 Released

2017-06-27 Thread OmPrakash Muppirala
FlexJS 0.8 has been published to npm. Please test using: npm install flexjs -g Thanks, Om On Tue, Jun 27, 2017 at 10:46 PM, OmPrakash Muppirala wrote: > > > On Tue, Jun 27, 2017 at 8:28 PM, Alex Harui > wrote: > >> I think the mirrors are

Re: [FlexJS] Use of innerHTML

2017-06-27 Thread Alex Harui
+1 for changing to textContent. We started out wanting to support IE8 which didn't have textContent, but IE8 is no longer our baseline. Thanks, -Alex On 6/27/17, 9:58 AM, "Harbs" wrote: >There’s a number of components which use innerHTML for setting text >values.

Re: [DRAFT] Apache FlexJS 0.8.0 and Apache Flex FalconJX 0.8.0 Released

2017-06-27 Thread OmPrakash Muppirala
On Tue, Jun 27, 2017 at 8:28 PM, Alex Harui wrote: > I think the mirrors are mostly caught up. I am going to switch over the > Installer and website now because there is someone on the users list > wanting to try FlexJS and I just updated the wiki to match how 0.8.0

[FlexJS] Use of innerHTML

2017-06-27 Thread Harbs
There’s a number of components which use innerHTML for setting text values. (ImageAndTextButton, Label, StringItemRenderer, TextButton) I just came across an article which advises against doing so.[1] Does anyone have a reason to not use append[2] and/or Node.textContent[3] and appendChild[4]?

Re: [DRAFT] Apache FlexJS 0.8.0 and Apache Flex FalconJX 0.8.0 Released

2017-06-27 Thread piotrz
Hi, I've reviewed description and I'm ok with it. Thanks, Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/DRAFT-Apache-FlexJS-0-8-0-and-Apache-Flex-FalconJX-0-8-0-Released-tp62627p62637.html Sent from

Re: [DRAFT] Apache FlexJS 0.8.0 and Apache Flex FalconJX 0.8.0 Released

2017-06-27 Thread Alex Harui
I think the mirrors are mostly caught up. I am going to switch over the Installer and website now because there is someone on the users list wanting to try FlexJS and I just updated the wiki to match how 0.8.0 will work. I will wait until I hear that you have the NPM ready before sending the