RE: Standardized gestures

2013-04-18 Thread jbo...@openmv.com
> Yes, it may have value. Consider writing a plugin. > The pointer events spec[1] may be of interest, as things like tap/slide/pinch > are all non-standard. > I did this exact same thing [2] for Windows Phone 7, as there aren't even > mouse events. Super thanks for the helpful info, I'll try t

RE: Suggestion - pluginLoader

2013-06-18 Thread jbo...@openmv.com
Take a look at: http://wiki.ecmascript.org/doku.php?id=harmony:module_loaders https://gist.github.com/wycats/51c96e3adcdb3a68cbc3 That type of extensible loader could make sense in Cordova and seems like it would meet all your requirements. -Original Message- From: J Prince [mailto:prin

RE: Extending CordovaWebView

2013-08-20 Thread jbo...@openmv.com
On Mon Aug 19 05:21 PM, Ian Clelland wrote: > On Mon, Aug 19, 2013 at 4:43 PM, Joe Bowser wrote: > > > > > I don't think that we should replace Java code with XML. This is a > > lot different than just reading constants from an XML file. If you're > > going to mess around with the webview, you

RE: Camera API

2013-08-28 Thread jbo...@openmv.com
The way I handle this server-side is using strings: [100x100] - means a "bounding box", resize so that width & height <= 100 100x[100] - means a fixed 100 width, height varies according to aspect ratio [100]x100 - means a fixed 100 height, width varies according to aspect ratio There's cases whe

RE: Android & iOS Bridge Improvements (more)

2013-08-28 Thread jbo...@openmv.com
On Wed Aug 7 04:23 PM, Andrew Grieve wrote: > Wrote up some ideas for removing jank from the bridges. > > https://docs.google.com/document/d/1b2igeRoGXpdr_B89W7n2CaiXTspXq9tnr > K5ocsyhNNM/edit# > > Includes content from CB-3900, which I'd previously brought up on the ML. > Also relates to CB-335

Module name & plugin id

2013-08-30 Thread jbo...@openmv.com
Is there any reason why the 'module name' isn't the plugin id (when loading JavaScript): https://github.com/apache/cordova-plugman/blob/master/src/prepare.js#L149 Looking at 'cordova_plugins.js', I initially thought I messed up somewhere in plugin.xml

RE: Moving on

2013-08-30 Thread jbo...@openmv.com
Thanks for all the work Fil, Good to hear you'll still be part of the FancyPants release > -Original Message- > From: Filip Maj [mailto:maj@gmail.com] > Sent: Friday, August 30, 2013 2:32 PM > To: dev@cordova.apache.org > Subject: Moving on > > Hey everyone, > > Wanted to let the co

RE: cli plugins 'alias'?

2013-09-03 Thread jbo...@openmv.com
On Tue Sep 3 10:47 AM, Braden Shepherdson wrote: > Agreed with Michal. There's actually a third option coming too: we want > apps > to be able to name dependencies. So you should be able to copy > in the mobile- > spec app, then `cordova plugin add` or whatever the > syntax becomes, and it will > i

RE: Module name & plugin id

2013-09-05 Thread jbo...@openmv.com
On Wed Sep 4 10:02 PM, Andrew Grieve wrote: > How about adding an alias: > > > > > > For : > > > > > +1 for export, maybe simpler as

RE: Change plugin IDs from "org.cordova.core.FOO" -> "org.cordova.FOO"

2013-09-20 Thread jbo...@openmv.com
On Fri Sep 20 10:11 AM, Michal Mocny wrote: > Yeah, but not sure how best to do so. > > Do we have a way to mark plugins as deprecated? Crazy idea: upload a > nearly > empty version under the old plugin name that on the > new one, and > add a type tag to plugin.xml spec? > It sort of brings u

Standardized gestures

2013-04-17 Thread jbo...@openmv.com
I'm experimenting with Cordova on Android, iOS and Windows 8. Has there been a discussion around trying to implement to set of 'standard' gesture recognizers: http://msdn.microsoft.com/library/windows/apps/BR241937 http://developer.apple.com/library/ios/#documentation/EventHandling/Conceptual/Ev

RE: Standardized gestures

2013-04-18 Thread jbo...@openmv.com
ub.com/plainview/Jester - jquery ui plugin: http://touchpunch.furf.com/ - jquery plugin: http://labs.rampinteractive.co.uk/touchSwipe/demos/ - moar jquery: https://github.com/HotStudio/touchy On 4/17/13 9:42 AM, "jbo...@openmv.com" wrote: >I'm experimenting with Cordova on And