Re: Engine confusion

2014-02-24 Thread Andrew Grieve
I think it makes the most sense to have: name=... -- this is the only thing that specifies the thing whose version you care about platform=... -- this specifies that you care about the version only on a subset of platforms. So, for an android platform: engine name=cordova-android version==3.0.0

RE: Engine confusion

2014-02-21 Thread Jonathan Bond-Caron
On Wed Feb 12 02:12 PM, Tim Kim wrote: Yep, Braden is correct. That is totally a bug. Filed here: https://issues.apache.org/jira/browse/CB-6023 Thoughts on? engine name=cordova version==3.3.0 platform=android/ Vs. engine name=cordova-android version==3.3.0 / I'm trying to look at how

RE: Engine confusion

2014-02-13 Thread Jonathan Bond-Caron
On Wed Feb 12 10:22 PM, Andrew Grieve wrote: b) More a personal preference for: engine name=cordova version==3.0.0/ engine name=cordova version==3.3.0 platform=android/ I can patch the code so that: engine name=cordova-android version==3.3.0 / engine

Re: Engine confusion

2014-02-12 Thread Tim Kim
Should cordova-plugman be renamed to node? - The cordova-plugman version returning node's version sounds like a bug. It should be Plugman's NPM version number so far as I know. Yep, Braden is correct. That is totally a bug. Filed here: https://issues.apache.org/jira/browse/CB-6023 On 11

RE: Engine confusion

2014-02-12 Thread Jonathan Bond-Caron
On Tue Feb 11 11:05 AM, Braden Shepherdson wrote: The intention is that it allows plugins to specify that they require at least a certain version of the native code for each platform. This would be for things like added a new transport type to the bridge, as when we added binary data

RE: Engine confusion

2014-02-12 Thread Jonathan Bond-Caron
On Wed Feb 12 03:56 PM, Braden Shepherdson wrote: Do the check the same file? I thought they were different. They might check the same path in different platforms, but that script can return different things. I would consider that a bug as well. I don't see anything to be gained from

Re: Engine confusion

2014-02-12 Thread Andrew Grieve
On Wed, Feb 12, 2014 at 5:19 PM, Jonathan Bond-Caron jbo...@gdesolutions.com wrote: On Wed Feb 12 03:56 PM, Braden Shepherdson wrote: Do the check the same file? I thought they were different. They might check the same path in different platforms, but that script can return different

Re: Engine confusion

2014-02-12 Thread Andrew Grieve
On Wed, Feb 12, 2014 at 10:22 PM, Andrew Grieve agri...@chromium.orgwrote: On Wed, Feb 12, 2014 at 5:19 PM, Jonathan Bond-Caron jbo...@gdesolutions.com wrote: On Wed Feb 12 03:56 PM, Braden Shepherdson wrote: Do the check the same file? I thought they were different. They might check

Re: Engine confusion

2014-02-11 Thread Braden Shepherdson
The intention is that it allows plugins to specify that they require at least a certain version of the native code for each platform. This would be for things like added a new transport type to the bridge, as when we added binary data transmission on iOS and Android a year or so ago. Any plugins