Re: SWCs directory?

2020-02-02 Thread Alex Harui
Here's the past discussion: https://lists.apache.org/thread.html/61504c2807493ff6f4bcaa945271ca1203bc5d839d47f027d9128471%40%3Cdev.royale.apache.org%3E I think you can test the nightly via: npm install

Build failed in Jenkins: Royale_ASDoc_Example #587

2020-02-02 Thread apacheroyaleci
See Changes: [aharui] rudimentary support for lineargradient [aharui] support 'justify' in VerticalLayout [aharui] support custom skins in Spark Containers [aharui] refactor

Re: SWCs directory?

2020-02-02 Thread OmPrakash Muppirala
On Sun, Feb 2, 2020 at 5:21 PM Josh Tynjala wrote: > royale-js 0.9.6 has always been broken (royale-js-swf is fine). As I > recall, we've already fixed the build scripts in the repo, but we haven't > done a new release yet. > Broken as in - is that why I am seeing these errors? Does it make

Build failed in Jenkins: royale-asjs_jsonly #749

2020-02-02 Thread apacheroyaleci
See Changes: [aharui] rudimentary support for lineargradient [aharui] support 'justify' in VerticalLayout [aharui] support custom skins in Spark Containers

Re: SWCs directory?

2020-02-02 Thread OmPrakash Muppirala
On Sun, Feb 2, 2020 at 12:45 PM Harbs wrote: > Probably this: > var command = 'mxmlc ' + path.join(process.cwd(), > SOURCE_DIR_NAME , APP_START_FILE_NAME) + ' -debug=true -targets=JSRoyale'; > That does not seem to work. I am getting the same exact errors as before. > > > On

Build failed in Jenkins: Royale_ASDoc_Example #586

2020-02-02 Thread apacheroyaleci
See Changes: [carlosrovira] todomvc-jewel: use itemUpdated in controller [carlosrovira] todomvc-jewel: updates to match some little rendering diferences in [greg.dove] Swap to

Re: SWCs directory?

2020-02-02 Thread Josh Tynjala
royale-js 0.9.6 has always been broken (royale-js-swf is fine). As I recall, we've already fixed the build scripts in the repo, but we haven't done a new release yet. -- Josh Tynjala Bowler Hat LLC On Sun, Feb 2, 2020 at 10:34 AM OmPrakash Muppirala wrote: > The latest

Re: Quick check on Express Datagrid

2020-02-02 Thread Greg Dove
Thanks for confirming that... I pushed the fix. On Mon, Feb 3, 2020 at 1:26 PM Alex Harui wrote: > I think that's the right fix. I think at some point the way the rules are > combined probably changed and broke Express. > > -Alex > > On 2/2/20, 3:28 PM, "Greg Dove" wrote: > > I have not

Re: Quick check on Express Datagrid

2020-02-02 Thread Alex Harui
I think that's the right fix. I think at some point the way the rules are combined probably changed and broke Express. -Alex On 2/2/20, 3:28 PM, "Greg Dove" wrote: I have not really used Express, apart from an attempt to use it for a Crux example where I had some difficulty with the

Re: Jewel TodoMVC Example

2020-02-02 Thread Carlos Rovira
Hi Harbs, about the Chrome issue, I think I identify it as a problem when the url does not have "hash" includes (ends in .html). In this case Chrome seems to have that strange behavior. Can be something we need to address in our implementation? Thanks El lun., 3 feb. 2020 a las 1:04, Carlos

Re: Jewel TodoMVC Example

2020-02-02 Thread Carlos Rovira
Hi Harbs, I fixed toggles, but while it works ok in Safari and Firefox works perfectly fine, in Chrome I can see a rendering issue that seems a bug in Chrome when click back/forth browsers buttons. A grey border appears for the previous selected toggle. Code updates right, so I think not a Royale

Re: Quick check on Express Datagrid

2020-02-02 Thread Carlos Rovira
Hi Greg, I think that Basic relies on Array instead of a collection class, and maybe other way to solve it per instance should be to add the " DataItemRendererFactoryForCollectionView" to the beads array via MXML. But maybe since DataGrid composes List, it could not be possible, so maybe this

Quick check on Express Datagrid

2020-02-02 Thread Greg Dove
I have not really used Express, apart from an attempt to use it for a Crux example where I had some difficulty with the renderer set up for DataGrid, which (at that time) I worked around quickly with a monkey patch in the example instead of investigating the problem at the source. I want to get

Re: ClassSelectorList

2020-02-02 Thread Carlos Rovira
Hi Harbs, no. when we initially made this feature it was for element, but if you check most of the Jewel controls and containers redefine positioner since to have more html structure to make it possible to style them appropriately. So usually you want to use style positioner and use CSS to target

Re: Jewel TodoMVC Example

2020-02-02 Thread Carlos Rovira
Thanks Andrew and Harbs, @Harbs, I'll check it and get back to you. El dom., 2 feb. 2020 a las 15:49, Andrew Wetmore () escribió: > Tiny quibble: > > I have seven items on my to-do list. The indicator at the bottom left says > "7 item left". That should be "items" in the plural when the count is

Re: [royale-asjs] branch develop updated: License header for .md files

2020-02-02 Thread Carlos Rovira
Hi Harbs, maven was failing, and I checked that we have rest of readme.txt files with licenses. I was thinking about remove readmes from rat, but finally get how to add it with out make it visible in GitHub El dom., 2 feb. 2020 a las 11:04, Harbs () escribió: > I don’t think readme files need

ClassSelectorList

2020-02-02 Thread Harbs
Why does ClassSelectorList use positioner instead of element? I would think that the class names should be applied to the element rather than the positioner.

Build failed in Jenkins: Royale_ASDoc_Example #585

2020-02-02 Thread apacheroyaleci
See Changes: [carlosrovira] jewel-iinputbutton: refactor CheckButtonSize to InputButtonSize to -- [...truncated 5.19 KB...] [mxmlc]

Re: SWCs directory?

2020-02-02 Thread Harbs
Probably this: var command = 'mxmlc ' + path.join(process.cwd(), SOURCE_DIR_NAME , APP_START_FILE_NAME) + ' -debug=true -targets=JSRoyale'; > On Feb 2, 2020, at 10:44 PM, Harbs wrote: > > Set targets to JSRoyale > > In asconfig: > "targets": ["JSRoyale”], > > In ant: > > >

Re: SWCs directory?

2020-02-02 Thread Harbs
Set targets to JSRoyale In asconfig: "targets": ["JSRoyale”], In ant: Not sure where to stick that in in your node script. > On Feb 2, 2020, at 9:25 PM, OmPrakash Muppirala wrote: > > Yes, that is expected. I did npm install @apache-royale/royale-js -g which > should get only the js stuff.

Re: SWCs directory?

2020-02-02 Thread OmPrakash Muppirala
Yes, that is expected. I did npm install @apache-royale/royale-js -g which should get only the js stuff. Is there a way to specify to the mxmlc compiler to just consider the jas swcs? On Sun, Feb 2, 2020 at 10:59 AM Harbs wrote: > It sounds like you only have the JS swcs and not the swf ones.

Re: SWCs directory?

2020-02-02 Thread Harbs
It sounds like you only have the JS swcs and not the swf ones. Does that make sense? > On Feb 2, 2020, at 8:34 PM, OmPrakash Muppirala wrote: > > The latest npm installation shows all the framework swcs here: > >

SWCs directory?

2020-02-02 Thread OmPrakash Muppirala
The latest npm installation shows all the framework swcs here: /Users/om/.nvm/versions/node/v8.14.1/lib/node_modules/@apache-royale/royale-js/royale-asjs/frameworks/js/libs But as per

Build failed in Jenkins: Royale_ASDoc_Example #584

2020-02-02 Thread apacheroyaleci
See Changes: [carlosrovira] jewel-checkbox: move the size of the check part to an optional -- [...truncated 5.24 KB...] [mxmlc] 14

Re: Jewel TodoMVC Example

2020-02-02 Thread Andrew Wetmore
Tiny quibble: I have seven items on my to-do list. The indicator at the bottom left says "7 item left". That should be "items" in the plural when the count is anything but 1. a On Sat, Feb 1, 2020 at 6:34 PM Harbs wrote: > Carlos, > > I made some improvements to Router and I changed the todo

Build failed in Jenkins: Royale_ASDoc_Example #583

2020-02-02 Thread apacheroyaleci
See Changes: -- [...truncated 6.37 KB...] [mxmlc] 14 [mxmlc]

Build failed in Jenkins: Royale_ASDoc_Example #582

2020-02-02 Thread apacheroyaleci
See Changes: [yishayjobs] package declaration was accidentally omitted [carlosrovira] todomvc-jewel: add missing license to readme.md [noreply] Rename readme.md to readme.txt

Re: [royale-asjs] branch develop updated: License header for .md files

2020-02-02 Thread Harbs
I don’t think readme files need headers > On Feb 2, 2020, at 11:28 AM, carlosrov...@apache.org wrote: > > 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 >

Build failed in Jenkins: Royale_ASDoc_Example #581

2020-02-02 Thread apacheroyaleci
See Changes: -- [...truncated 5.81 KB...] [mxmlc] 14 [mxmlc]