Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-04-30 Thread Alex Harui
New Update: By deleting the Core folder in my local Maven repo, I was able get a different error, which I think I fixed in this latest commit. We'll see if it fixes the CI server as well. -Alex On 4/30/17, 10:59 PM, "Alex Harui" wrote: >Update: I had to figure out how to use the Mavenizer to

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-04-30 Thread Alex Harui
Update: I had to figure out how to use the Mavenizer to put AIR 20 in the local repository, but then the distribution build passed for me locally, so not sure what Justin and the CI server are seeing. Still investigating. -Alex

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-04-30 Thread Justin Mclean
Hi, > What commands did you try? mvn clean install I also tried: rm ./js/target/downloads/svg.js And then clean install no luck. I also tried downloading the file and manually applying the git patch but that also failed. Hereteh has of the download - perhaps check if it matches yours? MD5

Re: git commit: [flex-asjs] [refs/heads/dual] - Basic: NumericStepper now accepts initial values for model, shares model with internal Spinner, and listens for changes to the model

2017-04-30 Thread Josh Tynjala
That was my original expectation too, but it looks like the JS implementation doesn't have a view part while the SWF implementation does. Peter added some thoughts about this in the other thread. - Josh On Apr 28, 2017 11:21 PM, "Piotr Zarzycki" wrote: Hi Josh, Shouldn't we have this one in t

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-04-30 Thread Alex Harui
On 4/30/17, 9:44 PM, "Justin Mclean" wrote: >Hi, > >> Does "mvn clean install" work for you? > >No but not had time to look into it deeper. As I posted here I also have >an issue with typedefs that’s stopping it from compiling. mvn clean install worked fine for me in flex-typedefs. What comma

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-04-30 Thread Justin Mclean
Hi, > Does "mvn clean install" work for you? No but not had time to look into it deeper. As I posted here I also have an issue with typedefs that’s stopping it from compiling. Thanks, Justin

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-04-30 Thread Alex Harui
On 4/30/17, 9:39 PM, "Justin Mclean" wrote: >Hi, > >> We'll see how the CI servers like it. > >Looks like it’s failing [1] with exactly the same error as I had the >other day. It is doing a “clean install”. I noticed that too. I'm still trying to figure out how to build the distribution local

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-04-30 Thread Justin Mclean
Hi, > We'll see how the CI servers like it. Looks like it’s failing [1] with exactly the same error as I had the other day. It is doing a “clean install”. Thanks, Justin 1. https://builds.apache.org/job/FlexJS%20Framework%20(maven)/883/console

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-04-30 Thread Alex Harui
The "dual" branch has been merged with develop. It built locally for me with Ant and Maven using "mvn clean install" We'll see how the CI servers like it. There are still examples that need tweaking. Thanks, -Alex On 4/28/17, 12:05 AM, "Alex Harui" wrote: > > >On 4/27/17, 12:56 PM, "Josh

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-04-30 Thread Justin Mclean
Hi, > You are running “mvn clean compile” which compiles each module and created > the swcs in the target directories. Unfortunately, they just stay there as > they are not copied to your maven local repository. Thanks Chris that would explain the error. > To do that, you need to run “mvn clea

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-04-30 Thread Christofer Dutz
Hi Justin, I think I found the problem … It took me a while to notice, but I think I found what’s going wrong. You are running “mvn clean compile” which compiles each module and created the swcs in the target directories. Unfortunately, they just stay there as they are not copied to your maven

Re: MD5 checker Jenkins job

2017-04-30 Thread Christofer Dutz
Hi Gyus, I guess the reason is that the default Ant job tries to read the file into memory. This isn’t needed in order to calculate the md5 hash … If the target used a streaming implementation, it should work with a few KB of memory. Chris Am 28.04.17, 16:44 schrieb "Alex Harui" : Hi Tom,

Re: [FlexJS] Object.setObjectIsEnumerable()

2017-04-30 Thread Harbs
On second thought, the Flash and JS implementations is not 1 to 1. The assignment in Flash is a two-step rpocess of first assigning the value and then defining it as non-enumerable, while it happens all in a single call in JS. The Util call is probably the better solution. > On Apr 30, 2017, at

[FlexJS] Object.setObjectIsEnumerable()

2017-04-30 Thread Harbs
As far as I can tell, there’s not platform agnostic way to create properties in objects which are not enumerable. In Flash you’d use setObjectIsEnumerable() and in JS, you’d use Object.defineProperty(). Using setObjectIsEnumerable() in AS3 code and cross-compiling keeps the call as-is and gener