[GitHub] cordova-js pull request: CB-9370 Fixes failing tests on Node 0.12 ...

2015-07-16 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-js/pull/121


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



[GitHub] cordova-android pull request: CB-9334 loop on CordovaPlugins befor...

2015-07-16 Thread spirann
Github user spirann commented on a diff in the pull request:

https://github.com/apache/cordova-android/pull/195#discussion_r34771734
  
--- Diff: framework/src/org/apache/cordova/PluginManager.java ---
@@ -381,15 +374,16 @@ public void onReset() {
 }
 
 Uri remapUri(Uri uri) {
+Uri remap = uri;
 for (CordovaPlugin plugin : this.pluginMap.values()) {
 if (plugin != null) {
-Uri ret = plugin.remapUri(uri);
+Uri ret = plugin.remapUri(remap);
 if (ret != null) {
-return ret;
+remap = ret;
 }
 }
 }
-return null;
+return uri.equals(remap) ? null : remap;
--- End diff --

It was the default behavior to return null if no plugins ends up remapping 
the uri. The only change is that it also return null if a plugin remap the uri 
to the same uri, because there's no need to act like there's a change when 
there's not (some plugins like JsHybuggerPlugin for example always remap every 
uri, to the same when no action is needed)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



Re: [DISCUSS] Release Cordova Plugin npm Search

2015-07-16 Thread Carlos Santana
Where and how npmsearch getting the npmjs data then?
I have to seat and read on what npmsearch is then and better understand .
Do they have a service API with SLA and CDN pricing model etc etc...
I'm asking because I don't think we want another unreliable registry web
page that doesn't scale in our hands.

On Thu, Jul 16, 2015 at 1:45 AM Murat Sutunc  wrote:

> There's no such thing as dumb questions! npmjs sadly doesn't give out much
> information about packages..
>
> From what I recall, they didnt have author name and license information..
> which are important for us.
>
> > On Jul 15, 2015, at 9:06 PM, Carlos Santana 
> wrote:
> >
> > dumb question why we are using npmsearch? and not a direct api to npmjs,
> > like I said it might be a dumb question
> >
> >> On Mon, Jul 13, 2015 at 6:39 PM Steven Gill 
> wrote:
> >>
> >> Murat and I are going to meet tomorrow to try and launch this to
> >> plugins.cordova.io. Once it is out there, we can collect more feedback
> and
> >> make improvements.
> >>
> >> On Mon, Jul 13, 2015 at 3:21 PM, Murat Sutunc 
> >> wrote:
> >>
> >>> There were two issues:
> >>> - Npmsearch uses npm2es on backend (
> https://www.npmjs.com/package/npm2es
> >> ).
> >>> The process running npm2es was hung.
> >>> - Elijah (owner of npmsearch) also changed the mappings in
> elasticsearch,
> >>> but never pointed the http server at the new index.
> >>>
> >>> He fixed both issues and npmsearch is now in sync with npm. Gulp also
> >>> relies on npmsearch for its plugin discovery so I'm hoping it will
> remain
> >>> stable.
> >>>
> >>> -Original Message-
> >>> From: Homer, Tony [mailto:tony.ho...@intel.com]
> >>> Sent: Monday, July 13, 2015 2:59 PM
> >>> To: dev@cordova.apache.org
> >>> Subject: Re: [DISCUSS] Release Cordova Plugin npm Search
> >>>
> >>> Great, looks much better now - thanks Murat!
> >>>
> >>> Can you shed some light on why this happened (and if it might happen
> >>> again)?
> >>> If the data is stale, it will hamper discovery of newly published
> >> plugins.
> >>>
> >>> Thanks!
> >>> Tony
> >>>
>  On 7/13/15, 5:43 PM, "Murat Sutunc"  wrote:
> 
>  Ok, we've managed to resolve the result set issues. It should be now
> in
>  sync with npm. Woo!
> 
>  -Original Message-
>  From: Murat Sutunc [mailto:mura...@microsoft.com]
>  Sent: Friday, July 10, 2015 12:50 PM
>  To: 
>  Subject: Re: [DISCUSS] Release Cordova Plugin npm Search
> 
>  I've reached out to npmsearch.com - trying to figure out why it's not
>  updating. Will keep you guys updated. :/
> 
> > On Jul 10, 2015, at 12:46 PM, Homer, Tony 
> >> wrote:
> >
> > That's true, but that doesn't account for the difference in the size
> > of the result set.
> > The query to both npmsearch.com and npmjs.com/search is
> > "ecosystem:cordova".
> >
> > Tony
> >
> >> On 7/10/15, 2:26 PM, "Jesse"  wrote:
> >>
> >> The 370 results include lots of non-plugins.
> >>
> >> cordova-app-hello-world, cordova-wp8-testtest
> >>
> >>
> >> My team is hiring!
> >> @purplecabbage
> >> risingj.com
> >>
> >> On Fri, Jul 10, 2015 at 10:57 AM, Homer, Tony  >
> >> wrote:
> >>
> >>> I was just checking out the page - nice work, thanks for doing
> this!
> >>>
> >>> I had a question about the number of results.
> >>> There are 191 results listed on Cordova Plugin NPM search [1].
> >>> I also get 191 if I visit (a slightly modified version of) the
> >>> search URL directly [2].
> >>> But if I visit npmjs and search there for ecosystem:cordova [3], I
> >>> get
> >>> 370
> >>> results.
> >>>
> >>> Is the large difference in results valid?
> >>>
> >>> 1. http://people.apache.org/~muratsu/?q=
> >>> 2.
> >>>
> >>>
> http://npmsearch.com/query?fields=name&q=keywords:%22ecosystem:cord
> >>> o
> >>> va%22
> >>> &s
> >>> ize=500&start=0
> >>> 3. https://www.npmjs.com/search?q=ecosystem%3Acordova
> >>>
> >>> Thanks!
> >>> Tony
> >>>
>  On 7/10/15, 1:32 PM, "Jesse"  wrote:
> 
>  Sorting/filtering would be nice.
>  Resist the urge to duplicate the data shown on npm!
> 
> 
>  My team is hiring!
>  @purplecabbage
>  risingj.com
> 
>  On Fri, Jul 10, 2015 at 10:30 AM, Murat Sutunc
>  
>  wrote:
> 
> > Can I also get access to remote couchdb? It would be great to go
> > live today.
> >
> > -Original Message-
> > From: Murat Sutunc
> > Sent: Friday, July 10, 2015 10:29 AM
> > To: dev@cordova.apache.org
> > Subject: RE: [DISCUSS] Release Cordova Plugin npm Search
> >
> > Nikhil just profiled the website to identify bottlenecks. It's
> > definitely something I'll be improving.
> >
> > I think giving

Re: Cordova July Hangout

2015-07-16 Thread Carlos Santana
Looking forward to Hangout today, I will bring doughnuts :-)
On Mon, Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
v-vlk...@microsoft.com> wrote:

> Hey, guys. I've just opened a PR (
> https://github.com/cordova/cordova-discuss/pull/12) with high level
> overview of cordova-lib refactoring proposal, so anyone interested may get
> familiar with it. Feel free to leave your questions and notes, to be able
> to discuss them during hangout.
>
> ---
> Best regards, Vladimir
>
> -Original Message-
> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> Sent: Thursday, 9 July, 2015 3:30
> To: dev@cordova.apache.org
> Subject: RE: Cordova July Hangout
>
> Thanks, Nikhil.
>
> Looking forward to it.
>
>
> --
> tommy-carlos williams
>
> On 9 July 2015 at 08:18:24, Nikhil Khandelwal (nikhi...@microsoft.com)
> wrote:
>
> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has the
> maximum folks. Please add it to your calendars. I will send out a hangout
> link closer to the event.
>
> Thanks,
> Nikhil
>
>
> -Original Message-
> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> Sent: Tuesday, July 7, 2015 1:50 PM
> To: dev@cordova.apache.org
> Subject: RE: Cordova July Hangout
>
> In case you are interested in this and have not responded. Here's the
> doodle link:
> http://doodle.com/vut5qrb4gy7dtmw9
>
> I plan to close this by tomorrow and send out the final date/time. Thanks!
>
> Thanks,
> Nikhil
>
>
> -Original Message-
> From: Steven Gill [mailto:stevengil...@gmail.com]
> Sent: Monday, July 6, 2015 10:16 AM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Let's do it!
> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal" 
> wrote:
>
> > I was wondering if it is a good time for a hangout. Here are few good
> > topics for discussion:
> > 1. Re-working cordova-lib <-> cordova platform interactions.
> > Review new API - Vladimir
> > https://github.com/cordova/cordova-discuss/pull/9
> > 2. Status of testing infrastructure - what are the next steps here ?
> > Is there scope for consolidation & fixing failing tests? Better
> > release testing. - Dmitry 3. Documentation website and workflow
> > improvements - Dmitry
> > https://github.com/cordova/cordova-discuss/pull/11
> > 4. iOS 4 release - status update - Shazron 5. Browserify updates -
> > Steve Gill 6. Cordova plugin npm search - Demo & next steps - Murat
> > https://github.com/cordova/cordova-discuss/issues/7
> >
> > Feel free to add to this list:
> > https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTGDm5A
> > w-dFGpjRc/edit
> >
> > I propose we meet in the week of 7/13. Here's the doodle for this:
> > http://doodle.com/vut5qrb4gy7dtmw9
> >
> > Thanks,
> > Nikhil
> >
> > (I understand folks for Adobe are out this week - hopefully we can see
> > some responses next week to meet the week after)
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > For additional commands, e-mail: dev-h...@cordova.apache.org
> >
> >
>


Re: Cordova July Hangout

2015-07-16 Thread Tommy-Carlos Williams
Alarm set for 4:30am. 

Better go to bed now ;)



> On 16 Jul 2015, at 21:20, Carlos Santana  wrote:
> 
> Looking forward to Hangout today, I will bring doughnuts :-)
> On Mon, Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
> v-vlk...@microsoft.com> wrote:
> 
>> Hey, guys. I've just opened a PR (
>> https://github.com/cordova/cordova-discuss/pull/12) with high level
>> overview of cordova-lib refactoring proposal, so anyone interested may get
>> familiar with it. Feel free to leave your questions and notes, to be able
>> to discuss them during hangout.
>> 
>> ---
>> Best regards, Vladimir
>> 
>> -Original Message-
>> From: tommy-carlos williams [mailto:to...@devgeeks.org]
>> Sent: Thursday, 9 July, 2015 3:30
>> To: dev@cordova.apache.org
>> Subject: RE: Cordova July Hangout
>> 
>> Thanks, Nikhil.
>> 
>> Looking forward to it.
>> 
>> 
>> --
>> tommy-carlos williams
>> 
>> On 9 July 2015 at 08:18:24, Nikhil Khandelwal (nikhi...@microsoft.com)
>> wrote:
>> 
>> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has the
>> maximum folks. Please add it to your calendars. I will send out a hangout
>> link closer to the event.
>> 
>> Thanks,
>> Nikhil
>> 
>> 
>> -Original Message-
>> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
>> Sent: Tuesday, July 7, 2015 1:50 PM
>> To: dev@cordova.apache.org
>> Subject: RE: Cordova July Hangout
>> 
>> In case you are interested in this and have not responded. Here's the
>> doodle link:
>> http://doodle.com/vut5qrb4gy7dtmw9
>> 
>> I plan to close this by tomorrow and send out the final date/time. Thanks!
>> 
>> Thanks,
>> Nikhil
>> 
>> 
>> -Original Message-
>> From: Steven Gill [mailto:stevengil...@gmail.com]
>> Sent: Monday, July 6, 2015 10:16 AM
>> To: dev@cordova.apache.org
>> Subject: Re: Cordova July Hangout
>> 
>> Let's do it!
>> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal" 
>> wrote:
>> 
>>> I was wondering if it is a good time for a hangout. Here are few good
>>> topics for discussion:
>>> 1. Re-working cordova-lib <-> cordova platform interactions.
>>> Review new API - Vladimir
>>> https://github.com/cordova/cordova-discuss/pull/9
>>> 2. Status of testing infrastructure - what are the next steps here ?
>>> Is there scope for consolidation & fixing failing tests? Better
>>> release testing. - Dmitry 3. Documentation website and workflow
>>> improvements - Dmitry
>>> https://github.com/cordova/cordova-discuss/pull/11
>>> 4. iOS 4 release - status update - Shazron 5. Browserify updates -
>>> Steve Gill 6. Cordova plugin npm search - Demo & next steps - Murat
>>> https://github.com/cordova/cordova-discuss/issues/7
>>> 
>>> Feel free to add to this list:
>>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTGDm5A
>>> w-dFGpjRc/edit
>>> 
>>> I propose we meet in the week of 7/13. Here's the doodle for this:
>>> http://doodle.com/vut5qrb4gy7dtmw9
>>> 
>>> Thanks,
>>> Nikhil
>>> 
>>> (I understand folks for Adobe are out this week - hopefully we can see
>>> some responses next week to meet the week after)
>>> 
>>> -
>>> To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
>>> For additional commands, e-mail: dev-h...@cordova.apache.org
>> 

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



Discuss Android plugin compatibility problem

2015-07-16 Thread Sergey Grebnov (Akvelon)
Hi guys, I want to raise the following question - what we should recommend  
plugin developers to avoid 'Multiple dex files defined' issue on Android, for 
example [3]

UNEXPECTED TOP-LEVEL EXCEPTION:
com.android.dex.DexException: Multiple dex files define 
Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;


To reproduce this problem you can add both Facebook [1] and PushPlugin[2] and 
then build android platform.

This happens due to we still use jars to add plugin dependencies, but there are 
several very popular among them (like android-support, gson) so we bring the 
same dependencies several times so build fails.

I think we should start recommending people to start adding 
utility/common/popular dependencies via corresponding gradle configuration (not 
using libs folder) as the only way to support multiple plugins which could rely 
on the same dependency. In this case gradle will be able to handle this 
situation correctly using its smart Dependency Management/Versioning logic [4].

For example,


->


Disadvantage of this approach is that Ant build won't be supported (I know some 
tricky/more complex way to correctly support both Ant and Gradle but I don't 
think it is worth adding more complexity for plugins developers just to 
continue supporting Ant).

Guys, any recommendations/thoughts how we should proceed in this situation? 
Maybe someone has better solution for this problem?

[1] https://github.com/Wizcorp/phonegap-facebook-plugin  
[2] https://github.com/phonegap-build/PushPlugin 
[3] https://github.com/Wizcorp/phonegap-facebook-plugin/issues/1028 
[4] https://docs.gradle.org/current/userguide/dependency_management.html

Thx!
Sergey


-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



Re: Discuss Android plugin compatibility problem

2015-07-16 Thread Carlos Santana
+1 gradle declared dependencies only, cli to warn users about plugins
having libraries that will conflict, future is gradle no ANT I'm ok to
start deprecating ant going forward.


On Thu, Jul 16, 2015 at 11:27 AM Sergey Grebnov (Akvelon) <
v-seg...@microsoft.com> wrote:

> Hi guys, I want to raise the following question - what we should
> recommend  plugin developers to avoid 'Multiple dex files defined' issue on
> Android, for example [3]
>
> UNEXPECTED TOP-LEVEL EXCEPTION:
> com.android.dex.DexException: Multiple dex files define
> Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;
>
>
> To reproduce this problem you can add both Facebook [1] and PushPlugin[2]
> and then build android platform.
>
> This happens due to we still use jars to add plugin dependencies, but
> there are several very popular among them (like android-support, gson) so
> we bring the same dependencies several times so build fails.
>
> I think we should start recommending people to start adding
> utility/common/popular dependencies via corresponding gradle configuration
> (not using libs folder) as the only way to support multiple plugins which
> could rely on the same dependency. In this case gradle will be able to
> handle this situation correctly using its smart Dependency
> Management/Versioning logic [4].
>
> For example,
>
>  target-dir="libs/" />
> ->
> 
>
> Disadvantage of this approach is that Ant build won't be supported (I know
> some tricky/more complex way to correctly support both Ant and Gradle but I
> don't think it is worth adding more complexity for plugins developers just
> to continue supporting Ant).
>
> Guys, any recommendations/thoughts how we should proceed in this
> situation? Maybe someone has better solution for this problem?
>
> [1] https://github.com/Wizcorp/phonegap-facebook-plugin
> [2] https://github.com/phonegap-build/PushPlugin
> [3] https://github.com/Wizcorp/phonegap-facebook-plugin/issues/1028
> [4] https://docs.gradle.org/current/userguide/dependency_management.html
>
> Thx!
> Sergey
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> For additional commands, e-mail: dev-h...@cordova.apache.org
>
>


Re: Discuss Android plugin compatibility problem

2015-07-16 Thread Joe Bowser
Is there a bug created for this? It sounds like we should have the local
scripts handle dependency adding on Android.

On Thu, Jul 16, 2015 at 9:14 AM Carlos Santana  wrote:

> +1 gradle declared dependencies only, cli to warn users about plugins
> having libraries that will conflict, future is gradle no ANT I'm ok to
> start deprecating ant going forward.
>
>
> On Thu, Jul 16, 2015 at 11:27 AM Sergey Grebnov (Akvelon) <
> v-seg...@microsoft.com> wrote:
>
> > Hi guys, I want to raise the following question - what we should
> > recommend  plugin developers to avoid 'Multiple dex files defined' issue
> on
> > Android, for example [3]
> >
> > UNEXPECTED TOP-LEVEL EXCEPTION:
> > com.android.dex.DexException: Multiple dex files define
> >
> Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;
> >
> >
> > To reproduce this problem you can add both Facebook [1] and PushPlugin[2]
> > and then build android platform.
> >
> > This happens due to we still use jars to add plugin dependencies, but
> > there are several very popular among them (like android-support, gson) so
> > we bring the same dependencies several times so build fails.
> >
> > I think we should start recommending people to start adding
> > utility/common/popular dependencies via corresponding gradle
> configuration
> > (not using libs folder) as the only way to support multiple plugins which
> > could rely on the same dependency. In this case gradle will be able to
> > handle this situation correctly using its smart Dependency
> > Management/Versioning logic [4].
> >
> > For example,
> >
> >  > target-dir="libs/" />
> > ->
> > 
> >
> > Disadvantage of this approach is that Ant build won't be supported (I
> know
> > some tricky/more complex way to correctly support both Ant and Gradle
> but I
> > don't think it is worth adding more complexity for plugins developers
> just
> > to continue supporting Ant).
> >
> > Guys, any recommendations/thoughts how we should proceed in this
> > situation? Maybe someone has better solution for this problem?
> >
> > [1] https://github.com/Wizcorp/phonegap-facebook-plugin
> > [2] https://github.com/phonegap-build/PushPlugin
> > [3] https://github.com/Wizcorp/phonegap-facebook-plugin/issues/1028
> > [4] https://docs.gradle.org/current/userguide/dependency_management.html
> >
> > Thx!
> > Sergey
> >
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > For additional commands, e-mail: dev-h...@cordova.apache.org
> >
> >
>


Re: Discuss Android plugin compatibility problem

2015-07-16 Thread Carlos Santana
you mean the scripts in cordova-android right? then yes

+1 create jira bug, enhancements etc.. if doesn't get track it doesn't get
done

On Thu, Jul 16, 2015 at 12:26 PM Joe Bowser  wrote:

> Is there a bug created for this? It sounds like we should have the local
> scripts handle dependency adding on Android.
>
> On Thu, Jul 16, 2015 at 9:14 AM Carlos Santana 
> wrote:
>
> > +1 gradle declared dependencies only, cli to warn users about plugins
> > having libraries that will conflict, future is gradle no ANT I'm ok to
> > start deprecating ant going forward.
> >
> >
> > On Thu, Jul 16, 2015 at 11:27 AM Sergey Grebnov (Akvelon) <
> > v-seg...@microsoft.com> wrote:
> >
> > > Hi guys, I want to raise the following question - what we should
> > > recommend  plugin developers to avoid 'Multiple dex files defined'
> issue
> > on
> > > Android, for example [3]
> > >
> > > UNEXPECTED TOP-LEVEL EXCEPTION:
> > > com.android.dex.DexException: Multiple dex files define
> > >
> >
> Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;
> > >
> > >
> > > To reproduce this problem you can add both Facebook [1] and
> PushPlugin[2]
> > > and then build android platform.
> > >
> > > This happens due to we still use jars to add plugin dependencies, but
> > > there are several very popular among them (like android-support, gson)
> so
> > > we bring the same dependencies several times so build fails.
> > >
> > > I think we should start recommending people to start adding
> > > utility/common/popular dependencies via corresponding gradle
> > configuration
> > > (not using libs folder) as the only way to support multiple plugins
> which
> > > could rely on the same dependency. In this case gradle will be able to
> > > handle this situation correctly using its smart Dependency
> > > Management/Versioning logic [4].
> > >
> > > For example,
> > >
> > >  > > target-dir="libs/" />
> > > ->
> > > 
> > >
> > > Disadvantage of this approach is that Ant build won't be supported (I
> > know
> > > some tricky/more complex way to correctly support both Ant and Gradle
> > but I
> > > don't think it is worth adding more complexity for plugins developers
> > just
> > > to continue supporting Ant).
> > >
> > > Guys, any recommendations/thoughts how we should proceed in this
> > > situation? Maybe someone has better solution for this problem?
> > >
> > > [1] https://github.com/Wizcorp/phonegap-facebook-plugin
> > > [2] https://github.com/phonegap-build/PushPlugin
> > > [3] https://github.com/Wizcorp/phonegap-facebook-plugin/issues/1028
> > > [4]
> https://docs.gradle.org/current/userguide/dependency_management.html
> > >
> > > Thx!
> > > Sergey
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > > For additional commands, e-mail: dev-h...@cordova.apache.org
> > >
> > >
> >
>


Re: Discuss Android plugin compatibility problem

2015-07-16 Thread Mefire O .
+1 on moving deps to gradle.

On Jul 16, 2015 9:37 AM, Carlos Santana  wrote:
you mean the scripts in cordova-android right? then yes

+1 create jira bug, enhancements etc.. if doesn't get track it doesn't get
done

On Thu, Jul 16, 2015 at 12:26 PM Joe Bowser  wrote:

> Is there a bug created for this? It sounds like we should have the local
> scripts handle dependency adding on Android.
>
> On Thu, Jul 16, 2015 at 9:14 AM Carlos Santana 
> wrote:
>
> > +1 gradle declared dependencies only, cli to warn users about plugins
> > having libraries that will conflict, future is gradle no ANT I'm ok to
> > start deprecating ant going forward.
> >
> >
> > On Thu, Jul 16, 2015 at 11:27 AM Sergey Grebnov (Akvelon) <
> > v-seg...@microsoft.com> wrote:
> >
> > > Hi guys, I want to raise the following question - what we should
> > > recommend  plugin developers to avoid 'Multiple dex files defined'
> issue
> > on
> > > Android, for example [3]
> > >
> > > UNEXPECTED TOP-LEVEL EXCEPTION:
> > > com.android.dex.DexException: Multiple dex files define
> > >
> >
> Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;
> > >
> > >
> > > To reproduce this problem you can add both Facebook [1] and
> PushPlugin[2]
> > > and then build android platform.
> > >
> > > This happens due to we still use jars to add plugin dependencies, but
> > > there are several very popular among them (like android-support, gson)
> so
> > > we bring the same dependencies several times so build fails.
> > >
> > > I think we should start recommending people to start adding
> > > utility/common/popular dependencies via corresponding gradle
> > configuration
> > > (not using libs folder) as the only way to support multiple plugins
> which
> > > could rely on the same dependency. In this case gradle will be able to
> > > handle this situation correctly using its smart Dependency
> > > Management/Versioning logic [4].
> > >
> > > For example,
> > >
> > >  > > target-dir="libs/" />
> > > ->
> > > 
> > >
> > > Disadvantage of this approach is that Ant build won't be supported (I
> > know
> > > some tricky/more complex way to correctly support both Ant and Gradle
> > but I
> > > don't think it is worth adding more complexity for plugins developers
> > just
> > > to continue supporting Ant).
> > >
> > > Guys, any recommendations/thoughts how we should proceed in this
> > > situation? Maybe someone has better solution for this problem?
> > >
> > > [1] https://github.com/Wizcorp/phonegap-facebook-plugin
> > > [2] https://github.com/phonegap-build/PushPlugin
> > > [3] https://github.com/Wizcorp/phonegap-facebook-plugin/issues/1028
> > > [4]
> https://docs.gradle.org/current/userguide/dependency_management.html
> > >
> > > Thx!
> > > Sergey
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > > For additional commands, e-mail: dev-h...@cordova.apache.org
> > >
> > >
> >
>


[GitHub] cordova-plugin-dialogs pull request: CB-9347 - fix to allow to sta...

2015-07-16 Thread jcesarmobile
GitHub user jcesarmobile opened a pull request:

https://github.com/apache/cordova-plugin-dialogs/pull/54

CB-9347 - fix to allow to stack multiple UIAlertControllers

Now you can stack multiple UIAlertControllers

I had to add a 0.5s delay in case the user tries to present a new
UIAlertController while one is currently being presented (on presenting
animation)

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jcesarmobile/cordova-plugin-dialogs master

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-dialogs/pull/54.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #54


commit 98d3e90cd3b4879bed06c655dc9641107037c678
Author: Julio César 
Date:   2015-07-16T17:10:06Z

CB-9347 - fix to allow to stack multiple UIAlertControllers

Now you can stack multiple UIAlertControllers

I had to add a 0.5s delay in case the user tries to present a new
UIAlertController while one is currently being presented (on presenting
animation)




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



Re: Discuss Android plugin compatibility problem

2015-07-16 Thread Steven Gill
Would this be added to plugin.xml?

On Thu, Jul 16, 2015 at 10:09 AM, Mefire O.  wrote:

> +1 on moving deps to gradle.
>
> On Jul 16, 2015 9:37 AM, Carlos Santana  wrote:
> you mean the scripts in cordova-android right? then yes
>
> +1 create jira bug, enhancements etc.. if doesn't get track it doesn't get
> done
>
> On Thu, Jul 16, 2015 at 12:26 PM Joe Bowser  wrote:
>
> > Is there a bug created for this? It sounds like we should have the local
> > scripts handle dependency adding on Android.
> >
> > On Thu, Jul 16, 2015 at 9:14 AM Carlos Santana 
> > wrote:
> >
> > > +1 gradle declared dependencies only, cli to warn users about plugins
> > > having libraries that will conflict, future is gradle no ANT I'm ok to
> > > start deprecating ant going forward.
> > >
> > >
> > > On Thu, Jul 16, 2015 at 11:27 AM Sergey Grebnov (Akvelon) <
> > > v-seg...@microsoft.com> wrote:
> > >
> > > > Hi guys, I want to raise the following question - what we should
> > > > recommend  plugin developers to avoid 'Multiple dex files defined'
> > issue
> > > on
> > > > Android, for example [3]
> > > >
> > > > UNEXPECTED TOP-LEVEL EXCEPTION:
> > > > com.android.dex.DexException: Multiple dex files define
> > > >
> > >
> >
> Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;
> > > >
> > > >
> > > > To reproduce this problem you can add both Facebook [1] and
> > PushPlugin[2]
> > > > and then build android platform.
> > > >
> > > > This happens due to we still use jars to add plugin dependencies, but
> > > > there are several very popular among them (like android-support,
> gson)
> > so
> > > > we bring the same dependencies several times so build fails.
> > > >
> > > > I think we should start recommending people to start adding
> > > > utility/common/popular dependencies via corresponding gradle
> > > configuration
> > > > (not using libs folder) as the only way to support multiple plugins
> > which
> > > > could rely on the same dependency. In this case gradle will be able
> to
> > > > handle this situation correctly using its smart Dependency
> > > > Management/Versioning logic [4].
> > > >
> > > > For example,
> > > >
> > > >  > > > target-dir="libs/" />
> > > > ->
> > > > 
> > > >
> > > > Disadvantage of this approach is that Ant build won't be supported (I
> > > know
> > > > some tricky/more complex way to correctly support both Ant and Gradle
> > > but I
> > > > don't think it is worth adding more complexity for plugins developers
> > > just
> > > > to continue supporting Ant).
> > > >
> > > > Guys, any recommendations/thoughts how we should proceed in this
> > > > situation? Maybe someone has better solution for this problem?
> > > >
> > > > [1] https://github.com/Wizcorp/phonegap-facebook-plugin
> > > > [2] https://github.com/phonegap-build/PushPlugin
> > > > [3] https://github.com/Wizcorp/phonegap-facebook-plugin/issues/1028
> > > > [4]
> > https://docs.gradle.org/current/userguide/dependency_management.html
> > > >
> > > > Thx!
> > > > Sergey
> > > >
> > > >
> > > > -
> > > > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > > > For additional commands, e-mail: dev-h...@cordova.apache.org
> > > >
> > > >
> > >
> >
>


[GitHub] cordova-plugin-file-transfer pull request: CB-9376 Fix FileTransfe...

2015-07-16 Thread daserge
GitHub user daserge opened a pull request:

https://github.com/apache/cordova-plugin-file-transfer/pull/94

CB-9376 Fix FileTransfer plugin manual tests issue - 'undefined' in p…

…aths

[Jira issue](https://issues.apache.org/jira/browse/CB-9376)

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-plugin-file-transfer 
CB-9376

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-file-transfer/pull/94.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #94


commit 499ec5c07b4087829623facc07f1b1f3e31e9afc
Author: daserge 
Date:   2015-07-16T12:40:44Z

CB-9376 Fix FileTransfer plugin manual tests issue - 'undefined' in paths




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



Re: Discuss Android plugin compatibility problem

2015-07-16 Thread Joe Bowser
Ideally Maven should handle all this shit, and it should be invisible.  Our
plugin system should not handle Java dependencies or any other platform
dependencies, and we should work behind the scenes to make this work like
how Crosswalk works.

On Thu, Jul 16, 2015 at 10:18 AM Steven Gill  wrote:

> Would this be added to plugin.xml?
>
> On Thu, Jul 16, 2015 at 10:09 AM, Mefire O. 
> wrote:
>
> > +1 on moving deps to gradle.
> >
> > On Jul 16, 2015 9:37 AM, Carlos Santana  wrote:
> > you mean the scripts in cordova-android right? then yes
> >
> > +1 create jira bug, enhancements etc.. if doesn't get track it doesn't
> get
> > done
> >
> > On Thu, Jul 16, 2015 at 12:26 PM Joe Bowser  wrote:
> >
> > > Is there a bug created for this? It sounds like we should have the
> local
> > > scripts handle dependency adding on Android.
> > >
> > > On Thu, Jul 16, 2015 at 9:14 AM Carlos Santana 
> > > wrote:
> > >
> > > > +1 gradle declared dependencies only, cli to warn users about plugins
> > > > having libraries that will conflict, future is gradle no ANT I'm ok
> to
> > > > start deprecating ant going forward.
> > > >
> > > >
> > > > On Thu, Jul 16, 2015 at 11:27 AM Sergey Grebnov (Akvelon) <
> > > > v-seg...@microsoft.com> wrote:
> > > >
> > > > > Hi guys, I want to raise the following question - what we should
> > > > > recommend  plugin developers to avoid 'Multiple dex files defined'
> > > issue
> > > > on
> > > > > Android, for example [3]
> > > > >
> > > > > UNEXPECTED TOP-LEVEL EXCEPTION:
> > > > > com.android.dex.DexException: Multiple dex files define
> > > > >
> > > >
> > >
> >
> Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;
> > > > >
> > > > >
> > > > > To reproduce this problem you can add both Facebook [1] and
> > > PushPlugin[2]
> > > > > and then build android platform.
> > > > >
> > > > > This happens due to we still use jars to add plugin dependencies,
> but
> > > > > there are several very popular among them (like android-support,
> > gson)
> > > so
> > > > > we bring the same dependencies several times so build fails.
> > > > >
> > > > > I think we should start recommending people to start adding
> > > > > utility/common/popular dependencies via corresponding gradle
> > > > configuration
> > > > > (not using libs folder) as the only way to support multiple plugins
> > > which
> > > > > could rely on the same dependency. In this case gradle will be able
> > to
> > > > > handle this situation correctly using its smart Dependency
> > > > > Management/Versioning logic [4].
> > > > >
> > > > > For example,
> > > > >
> > > > >  > > > > target-dir="libs/" />
> > > > > ->
> > > > > 
> > > > >
> > > > > Disadvantage of this approach is that Ant build won't be supported
> (I
> > > > know
> > > > > some tricky/more complex way to correctly support both Ant and
> Gradle
> > > > but I
> > > > > don't think it is worth adding more complexity for plugins
> developers
> > > > just
> > > > > to continue supporting Ant).
> > > > >
> > > > > Guys, any recommendations/thoughts how we should proceed in this
> > > > > situation? Maybe someone has better solution for this problem?
> > > > >
> > > > > [1] https://github.com/Wizcorp/phonegap-facebook-plugin
> > > > > [2] https://github.com/phonegap-build/PushPlugin
> > > > > [3]
> https://github.com/Wizcorp/phonegap-facebook-plugin/issues/1028
> > > > > [4]
> > > https://docs.gradle.org/current/userguide/dependency_management.html
> > > > >
> > > > > Thx!
> > > > > Sergey
> > > > >
> > > > >
> > > > >
> -
> > > > > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > > > > For additional commands, e-mail: dev-h...@cordova.apache.org
> > > > >
> > > > >
> > > >
> > >
> >
>


[GitHub] cordova-windows pull request: CB-9239 Fixes issue with windows pre...

2015-07-16 Thread nikhilkh
Github user nikhilkh commented on the pull request:

https://github.com/apache/cordova-windows/pull/99#issuecomment-122037715
  
@robpaveza Any update to this?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



[GitHub] cordova-docs pull request: CB-9330 Update documentation about plug...

2015-07-16 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-docs/pull/296


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



[GitHub] cordova-docs pull request: CB-9344 Fix license headers for transla...

2015-07-16 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-docs/pull/297


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



[GitHub] cordova-plugman pull request: CB-9330 Adds notice about removed pl...

2015-07-16 Thread vladimir-kotikov
Github user vladimir-kotikov commented on the pull request:

https://github.com/apache/cordova-plugman/pull/84#issuecomment-122040896
  
@stevengill, could you please take a look on this?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



RE: Cordova July Hangout

2015-07-16 Thread Nikhil Khandelwal
Hangout link here:
https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia

-Nikhil

-Original Message-
From: Tommy-Carlos Williams [mailto:to...@devgeeks.org] 
Sent: Thursday, July 16, 2015 4:57 AM
To: dev@cordova.apache.org
Subject: Re: Cordova July Hangout

Alarm set for 4:30am. 

Better go to bed now ;)



> On 16 Jul 2015, at 21:20, Carlos Santana  wrote:
> 
> Looking forward to Hangout today, I will bring doughnuts :-) On Mon, 
> Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) < 
> v-vlk...@microsoft.com> wrote:
> 
>> Hey, guys. I've just opened a PR (
>> https://github.com/cordova/cordova-discuss/pull/12) with high level 
>> overview of cordova-lib refactoring proposal, so anyone interested 
>> may get familiar with it. Feel free to leave your questions and 
>> notes, to be able to discuss them during hangout.
>> 
>> ---
>> Best regards, Vladimir
>> 
>> -Original Message-
>> From: tommy-carlos williams [mailto:to...@devgeeks.org]
>> Sent: Thursday, 9 July, 2015 3:30
>> To: dev@cordova.apache.org
>> Subject: RE: Cordova July Hangout
>> 
>> Thanks, Nikhil.
>> 
>> Looking forward to it.
>> 
>> 
>> --
>> tommy-carlos williams
>> 
>> On 9 July 2015 at 08:18:24, Nikhil Khandelwal 
>> (nikhi...@microsoft.com)
>> wrote:
>> 
>> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has the 
>> maximum folks. Please add it to your calendars. I will send out a 
>> hangout link closer to the event.
>> 
>> Thanks,
>> Nikhil
>> 
>> 
>> -Original Message-
>> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
>> Sent: Tuesday, July 7, 2015 1:50 PM
>> To: dev@cordova.apache.org
>> Subject: RE: Cordova July Hangout
>> 
>> In case you are interested in this and have not responded. Here's the 
>> doodle link:
>> http://doodle.com/vut5qrb4gy7dtmw9
>> 
>> I plan to close this by tomorrow and send out the final date/time. Thanks!
>> 
>> Thanks,
>> Nikhil
>> 
>> 
>> -Original Message-
>> From: Steven Gill [mailto:stevengil...@gmail.com]
>> Sent: Monday, July 6, 2015 10:16 AM
>> To: dev@cordova.apache.org
>> Subject: Re: Cordova July Hangout
>> 
>> Let's do it!
>> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal" 
>> wrote:
>> 
>>> I was wondering if it is a good time for a hangout. Here are few 
>>> good topics for discussion:
>>> 1. Re-working cordova-lib <-> cordova platform interactions.
>>> Review new API - Vladimir
>>> https://github.com/cordova/cordova-discuss/pull/9
>>> 2. Status of testing infrastructure - what are the next steps here ?
>>> Is there scope for consolidation & fixing failing tests? Better 
>>> release testing. - Dmitry 3. Documentation website and workflow 
>>> improvements - Dmitry
>>> https://github.com/cordova/cordova-discuss/pull/11
>>> 4. iOS 4 release - status update - Shazron 5. Browserify updates - 
>>> Steve Gill 6. Cordova plugin npm search - Demo & next steps - Murat
>>> https://github.com/cordova/cordova-discuss/issues/7
>>> 
>>> Feel free to add to this list:
>>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTGDm
>>> 5A
>>> w-dFGpjRc/edit
>>> 
>>> I propose we meet in the week of 7/13. Here's the doodle for this:
>>> http://doodle.com/vut5qrb4gy7dtmw9
>>> 
>>> Thanks,
>>> Nikhil
>>> 
>>> (I understand folks for Adobe are out this week - hopefully we can 
>>> see some responses next week to meet the week after)
>>> 
>>> 
>>> - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
>>> For additional commands, e-mail: dev-h...@cordova.apache.org
>> 

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



[GitHub] cordova-plugin-inappbrowser pull request: CB-9378 Fix InAppBrowser...

2015-07-16 Thread daserge
GitHub user daserge opened a pull request:

https://github.com/apache/cordova-plugin-inappbrowser/pull/109

CB-9378 Fix InAppBrowser not taking whole screen on Windows



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-plugin-inappbrowser CB-9378

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-inappbrowser/pull/109.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #109


commit 368cbcbc416d49eef40f951dc4cf3f968f448fc2
Author: daserge 
Date:   2015-07-16T18:35:59Z

CB-9378 Fix InAppBrowser not taking whole screen on Windows




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



RE: Cordova July Hangout

2015-07-16 Thread Parashuram N
Looks like this link is not hangouts on air. Nikhil is creating a link and will 
email it out soon.

-Original Message-
From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com] 
Sent: Thursday, July 16, 2015 11:37 AM
To: dev@cordova.apache.org
Subject: RE: Cordova July Hangout

Hangout link here:
https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia

-Nikhil

-Original Message-
From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
Sent: Thursday, July 16, 2015 4:57 AM
To: dev@cordova.apache.org
Subject: Re: Cordova July Hangout

Alarm set for 4:30am. 

Better go to bed now ;)



> On 16 Jul 2015, at 21:20, Carlos Santana  wrote:
> 
> Looking forward to Hangout today, I will bring doughnuts :-) On Mon, 
> Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) < 
> v-vlk...@microsoft.com> wrote:
> 
>> Hey, guys. I've just opened a PR (
>> https://github.com/cordova/cordova-discuss/pull/12) with high level 
>> overview of cordova-lib refactoring proposal, so anyone interested 
>> may get familiar with it. Feel free to leave your questions and 
>> notes, to be able to discuss them during hangout.
>> 
>> ---
>> Best regards, Vladimir
>> 
>> -Original Message-
>> From: tommy-carlos williams [mailto:to...@devgeeks.org]
>> Sent: Thursday, 9 July, 2015 3:30
>> To: dev@cordova.apache.org
>> Subject: RE: Cordova July Hangout
>> 
>> Thanks, Nikhil.
>> 
>> Looking forward to it.
>> 
>> 
>> --
>> tommy-carlos williams
>> 
>> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
>> (nikhi...@microsoft.com)
>> wrote:
>> 
>> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has the 
>> maximum folks. Please add it to your calendars. I will send out a 
>> hangout link closer to the event.
>> 
>> Thanks,
>> Nikhil
>> 
>> 
>> -Original Message-
>> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
>> Sent: Tuesday, July 7, 2015 1:50 PM
>> To: dev@cordova.apache.org
>> Subject: RE: Cordova July Hangout
>> 
>> In case you are interested in this and have not responded. Here's the 
>> doodle link:
>> http://doodle.com/vut5qrb4gy7dtmw9
>> 
>> I plan to close this by tomorrow and send out the final date/time. Thanks!
>> 
>> Thanks,
>> Nikhil
>> 
>> 
>> -Original Message-
>> From: Steven Gill [mailto:stevengil...@gmail.com]
>> Sent: Monday, July 6, 2015 10:16 AM
>> To: dev@cordova.apache.org
>> Subject: Re: Cordova July Hangout
>> 
>> Let's do it!
>> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal" 
>> wrote:
>> 
>>> I was wondering if it is a good time for a hangout. Here are few 
>>> good topics for discussion:
>>> 1. Re-working cordova-lib <-> cordova platform interactions.
>>> Review new API - Vladimir
>>> https://github.com/cordova/cordova-discuss/pull/9
>>> 2. Status of testing infrastructure - what are the next steps here ?
>>> Is there scope for consolidation & fixing failing tests? Better 
>>> release testing. - Dmitry 3. Documentation website and workflow 
>>> improvements - Dmitry
>>> https://github.com/cordova/cordova-discuss/pull/11
>>> 4. iOS 4 release - status update - Shazron 5. Browserify updates - 
>>> Steve Gill 6. Cordova plugin npm search - Demo & next steps - Murat
>>> https://github.com/cordova/cordova-discuss/issues/7
>>> 
>>> Feel free to add to this list:
>>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTGDm
>>> 5A
>>> w-dFGpjRc/edit
>>> 
>>> I propose we meet in the week of 7/13. Here's the doodle for this:
>>> http://doodle.com/vut5qrb4gy7dtmw9
>>> 
>>> Thanks,
>>> Nikhil
>>> 
>>> (I understand folks for Adobe are out this week - hopefully we can 
>>> see some responses next week to meet the week after)
>>> 
>>> 
>>> - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
>>> For additional commands, e-mail: dev-h...@cordova.apache.org
>> 

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



RE: Cordova July Hangout

2015-07-16 Thread Nikhil Khandelwal
Try this for hangout on air:

https://plus.google.com/hangouts/_/hoaevent/AP36tYehZnPZgH6ZayZvU9sq-6UY18zT38BGF0dMjtg3qpQeVfQ5DA



-Original Message-
From: Parashuram N [mailto:panar...@microsoft.com] 
Sent: Thursday, July 16, 2015 12:10 PM
To: dev@cordova.apache.org
Subject: RE: Cordova July Hangout

Looks like this link is not hangouts on air. Nikhil is creating a link and will 
email it out soon.

-Original Message-
From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
Sent: Thursday, July 16, 2015 11:37 AM
To: dev@cordova.apache.org
Subject: RE: Cordova July Hangout

Hangout link here:
https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia

-Nikhil

-Original Message-
From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
Sent: Thursday, July 16, 2015 4:57 AM
To: dev@cordova.apache.org
Subject: Re: Cordova July Hangout

Alarm set for 4:30am. 

Better go to bed now ;)



> On 16 Jul 2015, at 21:20, Carlos Santana  wrote:
> 
> Looking forward to Hangout today, I will bring doughnuts :-) On Mon, 
> Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) < 
> v-vlk...@microsoft.com> wrote:
> 
>> Hey, guys. I've just opened a PR (
>> https://github.com/cordova/cordova-discuss/pull/12) with high level 
>> overview of cordova-lib refactoring proposal, so anyone interested 
>> may get familiar with it. Feel free to leave your questions and 
>> notes, to be able to discuss them during hangout.
>> 
>> ---
>> Best regards, Vladimir
>> 
>> -Original Message-
>> From: tommy-carlos williams [mailto:to...@devgeeks.org]
>> Sent: Thursday, 9 July, 2015 3:30
>> To: dev@cordova.apache.org
>> Subject: RE: Cordova July Hangout
>> 
>> Thanks, Nikhil.
>> 
>> Looking forward to it.
>> 
>> 
>> --
>> tommy-carlos williams
>> 
>> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
>> (nikhi...@microsoft.com)
>> wrote:
>> 
>> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has the 
>> maximum folks. Please add it to your calendars. I will send out a 
>> hangout link closer to the event.
>> 
>> Thanks,
>> Nikhil
>> 
>> 
>> -Original Message-
>> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
>> Sent: Tuesday, July 7, 2015 1:50 PM
>> To: dev@cordova.apache.org
>> Subject: RE: Cordova July Hangout
>> 
>> In case you are interested in this and have not responded. Here's the 
>> doodle link:
>> http://doodle.com/vut5qrb4gy7dtmw9
>> 
>> I plan to close this by tomorrow and send out the final date/time. Thanks!
>> 
>> Thanks,
>> Nikhil
>> 
>> 
>> -Original Message-
>> From: Steven Gill [mailto:stevengil...@gmail.com]
>> Sent: Monday, July 6, 2015 10:16 AM
>> To: dev@cordova.apache.org
>> Subject: Re: Cordova July Hangout
>> 
>> Let's do it!
>> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal" 
>> wrote:
>> 
>>> I was wondering if it is a good time for a hangout. Here are few 
>>> good topics for discussion:
>>> 1. Re-working cordova-lib <-> cordova platform interactions.
>>> Review new API - Vladimir
>>> https://github.com/cordova/cordova-discuss/pull/9
>>> 2. Status of testing infrastructure - what are the next steps here ?
>>> Is there scope for consolidation & fixing failing tests? Better 
>>> release testing. - Dmitry 3. Documentation website and workflow 
>>> improvements - Dmitry
>>> https://github.com/cordova/cordova-discuss/pull/11
>>> 4. iOS 4 release - status update - Shazron 5. Browserify updates - 
>>> Steve Gill 6. Cordova plugin npm search - Demo & next steps - Murat
>>> https://github.com/cordova/cordova-discuss/issues/7
>>> 
>>> Feel free to add to this list:
>>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTGDm
>>> 5A
>>> w-dFGpjRc/edit
>>> 
>>> I propose we meet in the week of 7/13. Here's the doodle for this:
>>> http://doodle.com/vut5qrb4gy7dtmw9
>>> 
>>> Thanks,
>>> Nikhil
>>> 
>>> (I understand folks for Adobe are out this week - hopefully we can 
>>> see some responses next week to meet the week after)
>>> 
>>> 
>>> - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
>>> For additional commands, e-mail: dev-h...@cordova.apache.org
>> 

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



Re: Cordova July Hangout

2015-07-16 Thread Andrey Kurdumov
Maybe it is too late, but ask anyway. Any change to look/participate at the
conversation, since I particularly interested in the Docs part?

2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :

> Hangout link here:
> https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
>
> -Nikhil
>
> -Original Message-
> From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> Sent: Thursday, July 16, 2015 4:57 AM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Alarm set for 4:30am.
>
> Better go to bed now ;)
>
>
>
> > On 16 Jul 2015, at 21:20, Carlos Santana  wrote:
> >
> > Looking forward to Hangout today, I will bring doughnuts :-) On Mon,
> > Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
> > v-vlk...@microsoft.com> wrote:
> >
> >> Hey, guys. I've just opened a PR (
> >> https://github.com/cordova/cordova-discuss/pull/12) with high level
> >> overview of cordova-lib refactoring proposal, so anyone interested
> >> may get familiar with it. Feel free to leave your questions and
> >> notes, to be able to discuss them during hangout.
> >>
> >> ---
> >> Best regards, Vladimir
> >>
> >> -Original Message-
> >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> >> Sent: Thursday, 9 July, 2015 3:30
> >> To: dev@cordova.apache.org
> >> Subject: RE: Cordova July Hangout
> >>
> >> Thanks, Nikhil.
> >>
> >> Looking forward to it.
> >>
> >>
> >> --
> >> tommy-carlos williams
> >>
> >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> >> (nikhi...@microsoft.com)
> >> wrote:
> >>
> >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has the
> >> maximum folks. Please add it to your calendars. I will send out a
> >> hangout link closer to the event.
> >>
> >> Thanks,
> >> Nikhil
> >>
> >>
> >> -Original Message-
> >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> >> Sent: Tuesday, July 7, 2015 1:50 PM
> >> To: dev@cordova.apache.org
> >> Subject: RE: Cordova July Hangout
> >>
> >> In case you are interested in this and have not responded. Here's the
> >> doodle link:
> >> http://doodle.com/vut5qrb4gy7dtmw9
> >>
> >> I plan to close this by tomorrow and send out the final date/time.
> Thanks!
> >>
> >> Thanks,
> >> Nikhil
> >>
> >>
> >> -Original Message-
> >> From: Steven Gill [mailto:stevengil...@gmail.com]
> >> Sent: Monday, July 6, 2015 10:16 AM
> >> To: dev@cordova.apache.org
> >> Subject: Re: Cordova July Hangout
> >>
> >> Let's do it!
> >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal" 
> >> wrote:
> >>
> >>> I was wondering if it is a good time for a hangout. Here are few
> >>> good topics for discussion:
> >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> >>> Review new API - Vladimir
> >>> https://github.com/cordova/cordova-discuss/pull/9
> >>> 2. Status of testing infrastructure - what are the next steps here ?
> >>> Is there scope for consolidation & fixing failing tests? Better
> >>> release testing. - Dmitry 3. Documentation website and workflow
> >>> improvements - Dmitry
> >>> https://github.com/cordova/cordova-discuss/pull/11
> >>> 4. iOS 4 release - status update - Shazron 5. Browserify updates -
> >>> Steve Gill 6. Cordova plugin npm search - Demo & next steps - Murat
> >>> https://github.com/cordova/cordova-discuss/issues/7
> >>>
> >>> Feel free to add to this list:
> >>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTGDm
> >>> 5A
> >>> w-dFGpjRc/edit
> >>>
> >>> I propose we meet in the week of 7/13. Here's the doodle for this:
> >>> http://doodle.com/vut5qrb4gy7dtmw9
> >>>
> >>> Thanks,
> >>> Nikhil
> >>>
> >>> (I understand folks for Adobe are out this week - hopefully we can
> >>> see some responses next week to meet the week after)
> >>>
> >>> 
> >>> - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> >>> For additional commands, e-mail: dev-h...@cordova.apache.org
> >>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> For additional commands, e-mail: dev-h...@cordova.apache.org
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> For additional commands, e-mail: dev-h...@cordova.apache.org
>
>


RE: Cordova July Hangout

2015-07-16 Thread Nikhil Khandelwal
This is the broadcast link :

http://youtu.be/FWJPawUs3to

-Nikhil

-Original Message-
From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com] 
Sent: Thursday, July 16, 2015 12:11 PM
To: dev@cordova.apache.org
Subject: RE: Cordova July Hangout

Try this for hangout on air:

https://plus.google.com/hangouts/_/hoaevent/AP36tYehZnPZgH6ZayZvU9sq-6UY18zT38BGF0dMjtg3qpQeVfQ5DA



-Original Message-
From: Parashuram N [mailto:panar...@microsoft.com]
Sent: Thursday, July 16, 2015 12:10 PM
To: dev@cordova.apache.org
Subject: RE: Cordova July Hangout

Looks like this link is not hangouts on air. Nikhil is creating a link and will 
email it out soon.

-Original Message-
From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
Sent: Thursday, July 16, 2015 11:37 AM
To: dev@cordova.apache.org
Subject: RE: Cordova July Hangout

Hangout link here:
https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia

-Nikhil

-Original Message-
From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
Sent: Thursday, July 16, 2015 4:57 AM
To: dev@cordova.apache.org
Subject: Re: Cordova July Hangout

Alarm set for 4:30am. 

Better go to bed now ;)



> On 16 Jul 2015, at 21:20, Carlos Santana  wrote:
> 
> Looking forward to Hangout today, I will bring doughnuts :-) On Mon, 
> Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) < 
> v-vlk...@microsoft.com> wrote:
> 
>> Hey, guys. I've just opened a PR (
>> https://github.com/cordova/cordova-discuss/pull/12) with high level 
>> overview of cordova-lib refactoring proposal, so anyone interested 
>> may get familiar with it. Feel free to leave your questions and 
>> notes, to be able to discuss them during hangout.
>> 
>> ---
>> Best regards, Vladimir
>> 
>> -Original Message-
>> From: tommy-carlos williams [mailto:to...@devgeeks.org]
>> Sent: Thursday, 9 July, 2015 3:30
>> To: dev@cordova.apache.org
>> Subject: RE: Cordova July Hangout
>> 
>> Thanks, Nikhil.
>> 
>> Looking forward to it.
>> 
>> 
>> --
>> tommy-carlos williams
>> 
>> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
>> (nikhi...@microsoft.com)
>> wrote:
>> 
>> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has the 
>> maximum folks. Please add it to your calendars. I will send out a 
>> hangout link closer to the event.
>> 
>> Thanks,
>> Nikhil
>> 
>> 
>> -Original Message-
>> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
>> Sent: Tuesday, July 7, 2015 1:50 PM
>> To: dev@cordova.apache.org
>> Subject: RE: Cordova July Hangout
>> 
>> In case you are interested in this and have not responded. Here's the 
>> doodle link:
>> http://doodle.com/vut5qrb4gy7dtmw9
>> 
>> I plan to close this by tomorrow and send out the final date/time. Thanks!
>> 
>> Thanks,
>> Nikhil
>> 
>> 
>> -Original Message-
>> From: Steven Gill [mailto:stevengil...@gmail.com]
>> Sent: Monday, July 6, 2015 10:16 AM
>> To: dev@cordova.apache.org
>> Subject: Re: Cordova July Hangout
>> 
>> Let's do it!
>> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal" 
>> wrote:
>> 
>>> I was wondering if it is a good time for a hangout. Here are few 
>>> good topics for discussion:
>>> 1. Re-working cordova-lib <-> cordova platform interactions.
>>> Review new API - Vladimir
>>> https://github.com/cordova/cordova-discuss/pull/9
>>> 2. Status of testing infrastructure - what are the next steps here ?
>>> Is there scope for consolidation & fixing failing tests? Better 
>>> release testing. - Dmitry 3. Documentation website and workflow 
>>> improvements - Dmitry
>>> https://github.com/cordova/cordova-discuss/pull/11
>>> 4. iOS 4 release - status update - Shazron 5. Browserify updates - 
>>> Steve Gill 6. Cordova plugin npm search - Demo & next steps - Murat
>>> https://github.com/cordova/cordova-discuss/issues/7
>>> 
>>> Feel free to add to this list:
>>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTGDm
>>> 5A
>>> w-dFGpjRc/edit
>>> 
>>> I propose we meet in the week of 7/13. Here's the doodle for this:
>>> http://doodle.com/vut5qrb4gy7dtmw9
>>> 
>>> Thanks,
>>> Nikhil
>>> 
>>> (I understand folks for Adobe are out this week - hopefully we can 
>>> see some responses next week to meet the week after)
>>> 
>>> 
>>> - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
>>> For additional commands, e-mail: dev-h...@cordova.apache.org
>> 

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.o

RE: Cordova July Hangout

2015-07-16 Thread Parashuram N
I think we can add items to the agenda. Docs is indeed a good thing to discuss. 

-Original Message-
From: Andrey Kurdumov [mailto:kant2...@googlemail.com] 
Sent: Thursday, July 16, 2015 12:10 PM
To: dev@cordova.apache.org
Subject: Re: Cordova July Hangout

Maybe it is too late, but ask anyway. Any change to look/participate at the 
conversation, since I particularly interested in the Docs part?

2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :

> Hangout link here:
> https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
>
> -Nikhil
>
> -Original Message-
> From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> Sent: Thursday, July 16, 2015 4:57 AM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Alarm set for 4:30am.
>
> Better go to bed now ;)
>
>
>
> > On 16 Jul 2015, at 21:20, Carlos Santana  wrote:
> >
> > Looking forward to Hangout today, I will bring doughnuts :-) On Mon, 
> > Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) < 
> > v-vlk...@microsoft.com> wrote:
> >
> >> Hey, guys. I've just opened a PR (
> >> https://github.com/cordova/cordova-discuss/pull/12) with high level 
> >> overview of cordova-lib refactoring proposal, so anyone interested 
> >> may get familiar with it. Feel free to leave your questions and 
> >> notes, to be able to discuss them during hangout.
> >>
> >> ---
> >> Best regards, Vladimir
> >>
> >> -Original Message-
> >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> >> Sent: Thursday, 9 July, 2015 3:30
> >> To: dev@cordova.apache.org
> >> Subject: RE: Cordova July Hangout
> >>
> >> Thanks, Nikhil.
> >>
> >> Looking forward to it.
> >>
> >>
> >> --
> >> tommy-carlos williams
> >>
> >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> >> (nikhi...@microsoft.com)
> >> wrote:
> >>
> >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has 
> >> the maximum folks. Please add it to your calendars. I will send out 
> >> a hangout link closer to the event.
> >>
> >> Thanks,
> >> Nikhil
> >>
> >>
> >> -Original Message-
> >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> >> Sent: Tuesday, July 7, 2015 1:50 PM
> >> To: dev@cordova.apache.org
> >> Subject: RE: Cordova July Hangout
> >>
> >> In case you are interested in this and have not responded. Here's 
> >> the doodle link:
> >> http://doodle.com/vut5qrb4gy7dtmw9
> >>
> >> I plan to close this by tomorrow and send out the final date/time.
> Thanks!
> >>
> >> Thanks,
> >> Nikhil
> >>
> >>
> >> -Original Message-
> >> From: Steven Gill [mailto:stevengil...@gmail.com]
> >> Sent: Monday, July 6, 2015 10:16 AM
> >> To: dev@cordova.apache.org
> >> Subject: Re: Cordova July Hangout
> >>
> >> Let's do it!
> >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal" 
> >> 
> >> wrote:
> >>
> >>> I was wondering if it is a good time for a hangout. Here are few 
> >>> good topics for discussion:
> >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> >>> Review new API - Vladimir
> >>> https://github.com/cordova/cordova-discuss/pull/9
> >>> 2. Status of testing infrastructure - what are the next steps here ?
> >>> Is there scope for consolidation & fixing failing tests? Better 
> >>> release testing. - Dmitry 3. Documentation website and workflow 
> >>> improvements - Dmitry
> >>> https://github.com/cordova/cordova-discuss/pull/11
> >>> 4. iOS 4 release - status update - Shazron 5. Browserify updates - 
> >>> Steve Gill 6. Cordova plugin npm search - Demo & next steps - 
> >>> Murat
> >>> https://github.com/cordova/cordova-discuss/issues/7
> >>>
> >>> Feel free to add to this list:
> >>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTG
> >>> Dm
> >>> 5A
> >>> w-dFGpjRc/edit
> >>>
> >>> I propose we meet in the week of 7/13. Here's the doodle for this:
> >>> http://doodle.com/vut5qrb4gy7dtmw9
> >>>
> >>> Thanks,
> >>> Nikhil
> >>>
> >>> (I understand folks for Adobe are out this week - hopefully we can 
> >>> see some responses next week to meet the week after)
> >>>
> >>> --
> >>> --
> >>> - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> >>> For additional commands, e-mail: dev-h...@cordova.apache.org
> >>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> For additional commands, e-mail: dev-h...@cordova.apache.org
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> For additional commands, e-mail: dev-h...@cordova.apache.org
>
>

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org


Re: [Android] Working with M - An update

2015-07-16 Thread Joe Bowser
Sent you the test app off-list.

On Wed, Jul 15, 2015 at 11:12 AM Andrew Grieve  wrote:

> Thanks for looking into this Joe! The runtime permissions is quite a big
> change!
>
> M is still in preview, so if you find any webview bugs, please feel free to
> send me a repro app and I'll do my best to get it fixed.
>
> In terms of Cordova API changes, here's some thoughts on your branch:
> - Plugins may want to request different perms at different times, so I'd
> remove new functions from CordovaPlugin except onRequestPermissionResult
> - Might be better to copy how CordovaInterfaceImpl does
> startActivityForResult/onActivityResponse rather than have PluginManager do
> it.
>
>
> On Tue, Jul 14, 2015 at 6:07 PM, Joe Bowser  wrote:
>
> > So, since Cordova-Android wasn't completely killed off by Google at the
> > last Google IO like I thought it would be, we're going to have to make
> sure
> > it's compatible with Android M (Marshmellow? Marzipan?).  The good news
> is
> > that this only affects the following plugins:
> >
> > MediaRecorder
> > Contacts
> > File
> > FileTransfer
> > Geolocation
> >
> > Now, for the really bad news.  We might have to write a Geolocation
> plugin
> > for Android again, because Google's Android WebView doesn't play nice
> with
> > Android's new permission system, and even when you do grant the
> application
> > containing the process permission to use geolocation, you still get a
> > location error.  I still have to test this further, but it also may be
> > possible that file URIs no longer have the ability to get the geolocation
> > either, which would be weird, since this would be a Chrome thing and not
> an
> > Android thing.
> >
> > Given our poor track record of maintaining plugins in general, and the
> > weird errors with Geolocation, I'm not really wanting to bring back the
> > code, so I'm hoping that this gets resolved in M3 with the next dev
> version
> > of M.
> >
> > But so far, I have the changes that I made to Cordova on a private branch
> > on Github that people can see here:
> >
> > https://github.com/infil00p/cordova-android/tree/m-compat
> >
> > Let me know if you have any questions.  I'm not sure whether this makes
> > perfect sense yet, but I think these API changes indicate that we should
> > probably bump the version to 5.0 once M comes out.
> >
> > Thoughts? Questions?
> >
>


Re: Cordova July Hangout

2015-07-16 Thread Andrey Kurdumov
Does hangout on air stopped?

2015-07-17 1:12 GMT+06:00 Parashuram N :

> I think we can add items to the agenda. Docs is indeed a good thing to
> discuss.
>
> -Original Message-
> From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> Sent: Thursday, July 16, 2015 12:10 PM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Maybe it is too late, but ask anyway. Any change to look/participate at
> the conversation, since I particularly interested in the Docs part?
>
> 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :
>
> > Hangout link here:
> > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
> >
> > -Nikhil
> >
> > -Original Message-
> > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> > Sent: Thursday, July 16, 2015 4:57 AM
> > To: dev@cordova.apache.org
> > Subject: Re: Cordova July Hangout
> >
> > Alarm set for 4:30am.
> >
> > Better go to bed now ;)
> >
> >
> >
> > > On 16 Jul 2015, at 21:20, Carlos Santana  wrote:
> > >
> > > Looking forward to Hangout today, I will bring doughnuts :-) On Mon,
> > > Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
> > > v-vlk...@microsoft.com> wrote:
> > >
> > >> Hey, guys. I've just opened a PR (
> > >> https://github.com/cordova/cordova-discuss/pull/12) with high level
> > >> overview of cordova-lib refactoring proposal, so anyone interested
> > >> may get familiar with it. Feel free to leave your questions and
> > >> notes, to be able to discuss them during hangout.
> > >>
> > >> ---
> > >> Best regards, Vladimir
> > >>
> > >> -Original Message-
> > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> > >> Sent: Thursday, 9 July, 2015 3:30
> > >> To: dev@cordova.apache.org
> > >> Subject: RE: Cordova July Hangout
> > >>
> > >> Thanks, Nikhil.
> > >>
> > >> Looking forward to it.
> > >>
> > >>
> > >> --
> > >> tommy-carlos williams
> > >>
> > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> > >> (nikhi...@microsoft.com)
> > >> wrote:
> > >>
> > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has
> > >> the maximum folks. Please add it to your calendars. I will send out
> > >> a hangout link closer to the event.
> > >>
> > >> Thanks,
> > >> Nikhil
> > >>
> > >>
> > >> -Original Message-
> > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> > >> Sent: Tuesday, July 7, 2015 1:50 PM
> > >> To: dev@cordova.apache.org
> > >> Subject: RE: Cordova July Hangout
> > >>
> > >> In case you are interested in this and have not responded. Here's
> > >> the doodle link:
> > >> http://doodle.com/vut5qrb4gy7dtmw9
> > >>
> > >> I plan to close this by tomorrow and send out the final date/time.
> > Thanks!
> > >>
> > >> Thanks,
> > >> Nikhil
> > >>
> > >>
> > >> -Original Message-
> > >> From: Steven Gill [mailto:stevengil...@gmail.com]
> > >> Sent: Monday, July 6, 2015 10:16 AM
> > >> To: dev@cordova.apache.org
> > >> Subject: Re: Cordova July Hangout
> > >>
> > >> Let's do it!
> > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"
> > >> 
> > >> wrote:
> > >>
> > >>> I was wondering if it is a good time for a hangout. Here are few
> > >>> good topics for discussion:
> > >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> > >>> Review new API - Vladimir
> > >>> https://github.com/cordova/cordova-discuss/pull/9
> > >>> 2. Status of testing infrastructure - what are the next steps here ?
> > >>> Is there scope for consolidation & fixing failing tests? Better
> > >>> release testing. - Dmitry 3. Documentation website and workflow
> > >>> improvements - Dmitry
> > >>> https://github.com/cordova/cordova-discuss/pull/11
> > >>> 4. iOS 4 release - status update - Shazron 5. Browserify updates -
> > >>> Steve Gill 6. Cordova plugin npm search - Demo & next steps -
> > >>> Murat
> > >>> https://github.com/cordova/cordova-discuss/issues/7
> > >>>
> > >>> Feel free to add to this list:
> > >>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTG
> > >>> Dm
> > >>> 5A
> > >>> w-dFGpjRc/edit
> > >>>
> > >>> I propose we meet in the week of 7/13. Here's the doodle for this:
> > >>> http://doodle.com/vut5qrb4gy7dtmw9
> > >>>
> > >>> Thanks,
> > >>> Nikhil
> > >>>
> > >>> (I understand folks for Adobe are out this week - hopefully we can
> > >>> see some responses next week to meet the week after)
> > >>>
> > >>> --
> > >>> --
> > >>> - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > >>> For additional commands, e-mail: dev-h...@cordova.apache.org
> > >>
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > For additional commands, e-mail: dev-h...@cordova.apache.org
> >
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > For additional commands, e-mail: dev-h...@cordova.apache.org
> >

Re: Cordova July Hangout

2015-07-16 Thread Rob Paveza
We'll have it back momentarily, we just noticed as well.

From: Andrey Kurdumov 
Sent: Thursday, July 16, 2015 12:31 PM
To: dev@cordova.apache.org
Subject: Re: Cordova July Hangout

Does hangout on air stopped?

2015-07-17 1:12 GMT+06:00 Parashuram N :

> I think we can add items to the agenda. Docs is indeed a good thing to
> discuss.
>
> -Original Message-
> From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> Sent: Thursday, July 16, 2015 12:10 PM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Maybe it is too late, but ask anyway. Any change to look/participate at
> the conversation, since I particularly interested in the Docs part?
>
> 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :
>
> > Hangout link here:
> > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
> >
> > -Nikhil
> >
> > -Original Message-
> > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> > Sent: Thursday, July 16, 2015 4:57 AM
> > To: dev@cordova.apache.org
> > Subject: Re: Cordova July Hangout
> >
> > Alarm set for 4:30am.
> >
> > Better go to bed now ;)
> >
> >
> >
> > > On 16 Jul 2015, at 21:20, Carlos Santana  wrote:
> > >
> > > Looking forward to Hangout today, I will bring doughnuts :-) On Mon,
> > > Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
> > > v-vlk...@microsoft.com> wrote:
> > >
> > >> Hey, guys. I've just opened a PR (
> > >> https://github.com/cordova/cordova-discuss/pull/12) with high level
> > >> overview of cordova-lib refactoring proposal, so anyone interested
> > >> may get familiar with it. Feel free to leave your questions and
> > >> notes, to be able to discuss them during hangout.
> > >>
> > >> ---
> > >> Best regards, Vladimir
> > >>
> > >> -Original Message-
> > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> > >> Sent: Thursday, 9 July, 2015 3:30
> > >> To: dev@cordova.apache.org
> > >> Subject: RE: Cordova July Hangout
> > >>
> > >> Thanks, Nikhil.
> > >>
> > >> Looking forward to it.
> > >>
> > >>
> > >> --
> > >> tommy-carlos williams
> > >>
> > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> > >> (nikhi...@microsoft.com)
> > >> wrote:
> > >>
> > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has
> > >> the maximum folks. Please add it to your calendars. I will send out
> > >> a hangout link closer to the event.
> > >>
> > >> Thanks,
> > >> Nikhil
> > >>
> > >>
> > >> -Original Message-
> > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> > >> Sent: Tuesday, July 7, 2015 1:50 PM
> > >> To: dev@cordova.apache.org
> > >> Subject: RE: Cordova July Hangout
> > >>
> > >> In case you are interested in this and have not responded. Here's
> > >> the doodle link:
> > >> http://doodle.com/vut5qrb4gy7dtmw9
> > >>
> > >> I plan to close this by tomorrow and send out the final date/time.
> > Thanks!
> > >>
> > >> Thanks,
> > >> Nikhil
> > >>
> > >>
> > >> -Original Message-
> > >> From: Steven Gill [mailto:stevengil...@gmail.com]
> > >> Sent: Monday, July 6, 2015 10:16 AM
> > >> To: dev@cordova.apache.org
> > >> Subject: Re: Cordova July Hangout
> > >>
> > >> Let's do it!
> > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"
> > >> 
> > >> wrote:
> > >>
> > >>> I was wondering if it is a good time for a hangout. Here are few
> > >>> good topics for discussion:
> > >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> > >>> Review new API - Vladimir
> > >>> https://github.com/cordova/cordova-discuss/pull/9
> > >>> 2. Status of testing infrastructure - what are the next steps here ?
> > >>> Is there scope for consolidation & fixing failing tests? Better
> > >>> release testing. - Dmitry 3. Documentation website and workflow
> > >>> improvements - Dmitry
> > >>> https://github.com/cordova/cordova-discuss/pull/11
> > >>> 4. iOS 4 release - status update - Shazron 5. Browserify updates -
> > >>> Steve Gill 6. Cordova plugin npm search - Demo & next steps -
> > >>> Murat
> > >>> https://github.com/cordova/cordova-discuss/issues/7
> > >>>
> > >>> Feel free to add to this list:
> > >>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTG
> > >>> Dm
> > >>> 5A
> > >>> w-dFGpjRc/edit
> > >>>
> > >>> I propose we meet in the week of 7/13. Here's the doodle for this:
> > >>> http://doodle.com/vut5qrb4gy7dtmw9
> > >>>
> > >>> Thanks,
> > >>> Nikhil
> > >>>
> > >>> (I understand folks for Adobe are out this week - hopefully we can
> > >>> see some responses next week to meet the week after)
> > >>>
> > >>> --
> > >>> --
> > >>> - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > >>> For additional commands, e-mail: dev-h...@cordova.apache.org
> > >>
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > For additional commands, e-mail: dev-h...@cordova.ap

RE: Cordova July Hangout

2015-07-16 Thread Parashuram N
This hangout also failed. Steve is now creating a new link - we will be back in 
a minute. 

-Original Message-
From: Rob Paveza [mailto:rob.pav...@microsoft.com] 
Sent: Thursday, July 16, 2015 12:33 PM
To: dev@cordova.apache.org
Subject: Re: Cordova July Hangout

We'll have it back momentarily, we just noticed as well.

From: Andrey Kurdumov 
Sent: Thursday, July 16, 2015 12:31 PM
To: dev@cordova.apache.org
Subject: Re: Cordova July Hangout

Does hangout on air stopped?

2015-07-17 1:12 GMT+06:00 Parashuram N :

> I think we can add items to the agenda. Docs is indeed a good thing to 
> discuss.
>
> -Original Message-
> From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> Sent: Thursday, July 16, 2015 12:10 PM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Maybe it is too late, but ask anyway. Any change to look/participate 
> at the conversation, since I particularly interested in the Docs part?
>
> 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :
>
> > Hangout link here:
> > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
> >
> > -Nikhil
> >
> > -Original Message-
> > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> > Sent: Thursday, July 16, 2015 4:57 AM
> > To: dev@cordova.apache.org
> > Subject: Re: Cordova July Hangout
> >
> > Alarm set for 4:30am.
> >
> > Better go to bed now ;)
> >
> >
> >
> > > On 16 Jul 2015, at 21:20, Carlos Santana  wrote:
> > >
> > > Looking forward to Hangout today, I will bring doughnuts :-) On 
> > > Mon, Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) < 
> > > v-vlk...@microsoft.com> wrote:
> > >
> > >> Hey, guys. I've just opened a PR (
> > >> https://github.com/cordova/cordova-discuss/pull/12) with high 
> > >> level overview of cordova-lib refactoring proposal, so anyone 
> > >> interested may get familiar with it. Feel free to leave your 
> > >> questions and notes, to be able to discuss them during hangout.
> > >>
> > >> ---
> > >> Best regards, Vladimir
> > >>
> > >> -Original Message-
> > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> > >> Sent: Thursday, 9 July, 2015 3:30
> > >> To: dev@cordova.apache.org
> > >> Subject: RE: Cordova July Hangout
> > >>
> > >> Thanks, Nikhil.
> > >>
> > >> Looking forward to it.
> > >>
> > >>
> > >> --
> > >> tommy-carlos williams
> > >>
> > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> > >> (nikhi...@microsoft.com)
> > >> wrote:
> > >>
> > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has 
> > >> the maximum folks. Please add it to your calendars. I will send 
> > >> out a hangout link closer to the event.
> > >>
> > >> Thanks,
> > >> Nikhil
> > >>
> > >>
> > >> -Original Message-
> > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> > >> Sent: Tuesday, July 7, 2015 1:50 PM
> > >> To: dev@cordova.apache.org
> > >> Subject: RE: Cordova July Hangout
> > >>
> > >> In case you are interested in this and have not responded. Here's 
> > >> the doodle link:
> > >> http://doodle.com/vut5qrb4gy7dtmw9
> > >>
> > >> I plan to close this by tomorrow and send out the final date/time.
> > Thanks!
> > >>
> > >> Thanks,
> > >> Nikhil
> > >>
> > >>
> > >> -Original Message-
> > >> From: Steven Gill [mailto:stevengil...@gmail.com]
> > >> Sent: Monday, July 6, 2015 10:16 AM
> > >> To: dev@cordova.apache.org
> > >> Subject: Re: Cordova July Hangout
> > >>
> > >> Let's do it!
> > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"
> > >> 
> > >> wrote:
> > >>
> > >>> I was wondering if it is a good time for a hangout. Here are few 
> > >>> good topics for discussion:
> > >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> > >>> Review new API - Vladimir
> > >>> https://github.com/cordova/cordova-discuss/pull/9
> > >>> 2. Status of testing infrastructure - what are the next steps here ?
> > >>> Is there scope for consolidation & fixing failing tests? Better 
> > >>> release testing. - Dmitry 3. Documentation website and workflow 
> > >>> improvements - Dmitry
> > >>> https://github.com/cordova/cordova-discuss/pull/11
> > >>> 4. iOS 4 release - status update - Shazron 5. Browserify updates 
> > >>> - Steve Gill 6. Cordova plugin npm search - Demo & next steps - 
> > >>> Murat
> > >>> https://github.com/cordova/cordova-discuss/issues/7
> > >>>
> > >>> Feel free to add to this list:
> > >>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPwe
> > >>> TG
> > >>> Dm
> > >>> 5A
> > >>> w-dFGpjRc/edit
> > >>>
> > >>> I propose we meet in the week of 7/13. Here's the doodle for this:
> > >>> http://doodle.com/vut5qrb4gy7dtmw9
> > >>>
> > >>> Thanks,
> > >>> Nikhil
> > >>>
> > >>> (I understand folks for Adobe are out this week - hopefully we 
> > >>> can see some responses next week to meet the week after)
> > >>>
> > >>> 
> > >>> --
> > >>> --
> > >>> - To unsubscribe, e-mail: d

Re: Cordova July Hangout

2015-07-16 Thread Andrey Kurdumov
Old link not working, would you post new one?


2015-07-17 1:32 GMT+06:00 Rob Paveza :

> We'll have it back momentarily, we just noticed as well.
> 
> From: Andrey Kurdumov 
> Sent: Thursday, July 16, 2015 12:31 PM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Does hangout on air stopped?
>
> 2015-07-17 1:12 GMT+06:00 Parashuram N :
>
> > I think we can add items to the agenda. Docs is indeed a good thing to
> > discuss.
> >
> > -Original Message-
> > From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> > Sent: Thursday, July 16, 2015 12:10 PM
> > To: dev@cordova.apache.org
> > Subject: Re: Cordova July Hangout
> >
> > Maybe it is too late, but ask anyway. Any change to look/participate at
> > the conversation, since I particularly interested in the Docs part?
> >
> > 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :
> >
> > > Hangout link here:
> > > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
> > >
> > > -Nikhil
> > >
> > > -Original Message-
> > > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> > > Sent: Thursday, July 16, 2015 4:57 AM
> > > To: dev@cordova.apache.org
> > > Subject: Re: Cordova July Hangout
> > >
> > > Alarm set for 4:30am.
> > >
> > > Better go to bed now ;)
> > >
> > >
> > >
> > > > On 16 Jul 2015, at 21:20, Carlos Santana 
> wrote:
> > > >
> > > > Looking forward to Hangout today, I will bring doughnuts :-) On Mon,
> > > > Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
> > > > v-vlk...@microsoft.com> wrote:
> > > >
> > > >> Hey, guys. I've just opened a PR (
> > > >> https://github.com/cordova/cordova-discuss/pull/12) with high level
> > > >> overview of cordova-lib refactoring proposal, so anyone interested
> > > >> may get familiar with it. Feel free to leave your questions and
> > > >> notes, to be able to discuss them during hangout.
> > > >>
> > > >> ---
> > > >> Best regards, Vladimir
> > > >>
> > > >> -Original Message-
> > > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> > > >> Sent: Thursday, 9 July, 2015 3:30
> > > >> To: dev@cordova.apache.org
> > > >> Subject: RE: Cordova July Hangout
> > > >>
> > > >> Thanks, Nikhil.
> > > >>
> > > >> Looking forward to it.
> > > >>
> > > >>
> > > >> --
> > > >> tommy-carlos williams
> > > >>
> > > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> > > >> (nikhi...@microsoft.com)
> > > >> wrote:
> > > >>
> > > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has
> > > >> the maximum folks. Please add it to your calendars. I will send out
> > > >> a hangout link closer to the event.
> > > >>
> > > >> Thanks,
> > > >> Nikhil
> > > >>
> > > >>
> > > >> -Original Message-
> > > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> > > >> Sent: Tuesday, July 7, 2015 1:50 PM
> > > >> To: dev@cordova.apache.org
> > > >> Subject: RE: Cordova July Hangout
> > > >>
> > > >> In case you are interested in this and have not responded. Here's
> > > >> the doodle link:
> > > >> http://doodle.com/vut5qrb4gy7dtmw9
> > > >>
> > > >> I plan to close this by tomorrow and send out the final date/time.
> > > Thanks!
> > > >>
> > > >> Thanks,
> > > >> Nikhil
> > > >>
> > > >>
> > > >> -Original Message-
> > > >> From: Steven Gill [mailto:stevengil...@gmail.com]
> > > >> Sent: Monday, July 6, 2015 10:16 AM
> > > >> To: dev@cordova.apache.org
> > > >> Subject: Re: Cordova July Hangout
> > > >>
> > > >> Let's do it!
> > > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"
> > > >> 
> > > >> wrote:
> > > >>
> > > >>> I was wondering if it is a good time for a hangout. Here are few
> > > >>> good topics for discussion:
> > > >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> > > >>> Review new API - Vladimir
> > > >>> https://github.com/cordova/cordova-discuss/pull/9
> > > >>> 2. Status of testing infrastructure - what are the next steps here
> ?
> > > >>> Is there scope for consolidation & fixing failing tests? Better
> > > >>> release testing. - Dmitry 3. Documentation website and workflow
> > > >>> improvements - Dmitry
> > > >>> https://github.com/cordova/cordova-discuss/pull/11
> > > >>> 4. iOS 4 release - status update - Shazron 5. Browserify updates -
> > > >>> Steve Gill 6. Cordova plugin npm search - Demo & next steps -
> > > >>> Murat
> > > >>> https://github.com/cordova/cordova-discuss/issues/7
> > > >>>
> > > >>> Feel free to add to this list:
> > > >>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTG
> > > >>> Dm
> > > >>> 5A
> > > >>> w-dFGpjRc/edit
> > > >>>
> > > >>> I propose we meet in the week of 7/13. Here's the doodle for this:
> > > >>> http://doodle.com/vut5qrb4gy7dtmw9
> > > >>>
> > > >>> Thanks,
> > > >>> Nikhil
> > > >>>
> > > >>> (I understand folks for Adobe are out this week - hopefully we can
> > > >>> see some responses next week to meet the week after)
> > > >>>
> > > >>> ---

RE: Cordova July Hangout

2015-07-16 Thread Parashuram N
Steve has created a new link. 
https://plus.google.com/events/cu7bp8n2adp53rkmg2e8o5jd4vk

-Original Message-
From: Andrey Kurdumov [mailto:kant2...@googlemail.com] 
Sent: Thursday, July 16, 2015 12:38 PM
To: dev@cordova.apache.org
Subject: Re: Cordova July Hangout

Old link not working, would you post new one?


2015-07-17 1:32 GMT+06:00 Rob Paveza :

> We'll have it back momentarily, we just noticed as well.
> 
> From: Andrey Kurdumov 
> Sent: Thursday, July 16, 2015 12:31 PM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Does hangout on air stopped?
>
> 2015-07-17 1:12 GMT+06:00 Parashuram N :
>
> > I think we can add items to the agenda. Docs is indeed a good thing 
> > to discuss.
> >
> > -Original Message-
> > From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> > Sent: Thursday, July 16, 2015 12:10 PM
> > To: dev@cordova.apache.org
> > Subject: Re: Cordova July Hangout
> >
> > Maybe it is too late, but ask anyway. Any change to look/participate 
> > at the conversation, since I particularly interested in the Docs part?
> >
> > 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :
> >
> > > Hangout link here:
> > > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
> > >
> > > -Nikhil
> > >
> > > -Original Message-
> > > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> > > Sent: Thursday, July 16, 2015 4:57 AM
> > > To: dev@cordova.apache.org
> > > Subject: Re: Cordova July Hangout
> > >
> > > Alarm set for 4:30am.
> > >
> > > Better go to bed now ;)
> > >
> > >
> > >
> > > > On 16 Jul 2015, at 21:20, Carlos Santana 
> wrote:
> > > >
> > > > Looking forward to Hangout today, I will bring doughnuts :-) On 
> > > > Mon, Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) < 
> > > > v-vlk...@microsoft.com> wrote:
> > > >
> > > >> Hey, guys. I've just opened a PR (
> > > >> https://github.com/cordova/cordova-discuss/pull/12) with high 
> > > >> level overview of cordova-lib refactoring proposal, so anyone 
> > > >> interested may get familiar with it. Feel free to leave your 
> > > >> questions and notes, to be able to discuss them during hangout.
> > > >>
> > > >> ---
> > > >> Best regards, Vladimir
> > > >>
> > > >> -Original Message-
> > > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> > > >> Sent: Thursday, 9 July, 2015 3:30
> > > >> To: dev@cordova.apache.org
> > > >> Subject: RE: Cordova July Hangout
> > > >>
> > > >> Thanks, Nikhil.
> > > >>
> > > >> Looking forward to it.
> > > >>
> > > >>
> > > >> --
> > > >> tommy-carlos williams
> > > >>
> > > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> > > >> (nikhi...@microsoft.com)
> > > >> wrote:
> > > >>
> > > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST 
> > > >> has the maximum folks. Please add it to your calendars. I will 
> > > >> send out a hangout link closer to the event.
> > > >>
> > > >> Thanks,
> > > >> Nikhil
> > > >>
> > > >>
> > > >> -Original Message-
> > > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> > > >> Sent: Tuesday, July 7, 2015 1:50 PM
> > > >> To: dev@cordova.apache.org
> > > >> Subject: RE: Cordova July Hangout
> > > >>
> > > >> In case you are interested in this and have not responded. 
> > > >> Here's the doodle link:
> > > >> http://doodle.com/vut5qrb4gy7dtmw9
> > > >>
> > > >> I plan to close this by tomorrow and send out the final date/time.
> > > Thanks!
> > > >>
> > > >> Thanks,
> > > >> Nikhil
> > > >>
> > > >>
> > > >> -Original Message-
> > > >> From: Steven Gill [mailto:stevengil...@gmail.com]
> > > >> Sent: Monday, July 6, 2015 10:16 AM
> > > >> To: dev@cordova.apache.org
> > > >> Subject: Re: Cordova July Hangout
> > > >>
> > > >> Let's do it!
> > > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"
> > > >> 
> > > >> wrote:
> > > >>
> > > >>> I was wondering if it is a good time for a hangout. Here are 
> > > >>> few good topics for discussion:
> > > >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> > > >>> Review new API - Vladimir
> > > >>> https://github.com/cordova/cordova-discuss/pull/9
> > > >>> 2. Status of testing infrastructure - what are the next steps 
> > > >>> here
> ?
> > > >>> Is there scope for consolidation & fixing failing tests? 
> > > >>> Better release testing. - Dmitry 3. Documentation website and 
> > > >>> workflow improvements - Dmitry
> > > >>> https://github.com/cordova/cordova-discuss/pull/11
> > > >>> 4. iOS 4 release - status update - Shazron 5. Browserify 
> > > >>> updates - Steve Gill 6. Cordova plugin npm search - Demo & 
> > > >>> next steps - Murat
> > > >>> https://github.com/cordova/cordova-discuss/issues/7
> > > >>>
> > > >>> Feel free to add to this list:
> > > >>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufP
> > > >>> weTG
> > > >>> Dm
> > > >>> 5A
> > > >>> w-dFGpjRc/edit
> > > >>>
> > > >>> I propose we meet in the week of 7/13. Here's the doodle for t

Re: Cordova July Hangout

2015-07-16 Thread Steven Gill
Participants: https://plus.google.com/events/cu7bp8n2adp53rkmg2e8o5jd4vk
Public link: http://youtu.be/WoWOmilXUTI
Slack discussion: https://cordova.slack.com/messages/hangouts/

On Thu, Jul 16, 2015 at 12:32 PM, Rob Paveza 
wrote:

> We'll have it back momentarily, we just noticed as well.
> 
> From: Andrey Kurdumov 
> Sent: Thursday, July 16, 2015 12:31 PM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Does hangout on air stopped?
>
> 2015-07-17 1:12 GMT+06:00 Parashuram N :
>
> > I think we can add items to the agenda. Docs is indeed a good thing to
> > discuss.
> >
> > -Original Message-
> > From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> > Sent: Thursday, July 16, 2015 12:10 PM
> > To: dev@cordova.apache.org
> > Subject: Re: Cordova July Hangout
> >
> > Maybe it is too late, but ask anyway. Any change to look/participate at
> > the conversation, since I particularly interested in the Docs part?
> >
> > 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :
> >
> > > Hangout link here:
> > > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
> > >
> > > -Nikhil
> > >
> > > -Original Message-
> > > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> > > Sent: Thursday, July 16, 2015 4:57 AM
> > > To: dev@cordova.apache.org
> > > Subject: Re: Cordova July Hangout
> > >
> > > Alarm set for 4:30am.
> > >
> > > Better go to bed now ;)
> > >
> > >
> > >
> > > > On 16 Jul 2015, at 21:20, Carlos Santana 
> wrote:
> > > >
> > > > Looking forward to Hangout today, I will bring doughnuts :-) On Mon,
> > > > Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
> > > > v-vlk...@microsoft.com> wrote:
> > > >
> > > >> Hey, guys. I've just opened a PR (
> > > >> https://github.com/cordova/cordova-discuss/pull/12) with high level
> > > >> overview of cordova-lib refactoring proposal, so anyone interested
> > > >> may get familiar with it. Feel free to leave your questions and
> > > >> notes, to be able to discuss them during hangout.
> > > >>
> > > >> ---
> > > >> Best regards, Vladimir
> > > >>
> > > >> -Original Message-
> > > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> > > >> Sent: Thursday, 9 July, 2015 3:30
> > > >> To: dev@cordova.apache.org
> > > >> Subject: RE: Cordova July Hangout
> > > >>
> > > >> Thanks, Nikhil.
> > > >>
> > > >> Looking forward to it.
> > > >>
> > > >>
> > > >> --
> > > >> tommy-carlos williams
> > > >>
> > > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> > > >> (nikhi...@microsoft.com)
> > > >> wrote:
> > > >>
> > > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST has
> > > >> the maximum folks. Please add it to your calendars. I will send out
> > > >> a hangout link closer to the event.
> > > >>
> > > >> Thanks,
> > > >> Nikhil
> > > >>
> > > >>
> > > >> -Original Message-
> > > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> > > >> Sent: Tuesday, July 7, 2015 1:50 PM
> > > >> To: dev@cordova.apache.org
> > > >> Subject: RE: Cordova July Hangout
> > > >>
> > > >> In case you are interested in this and have not responded. Here's
> > > >> the doodle link:
> > > >> http://doodle.com/vut5qrb4gy7dtmw9
> > > >>
> > > >> I plan to close this by tomorrow and send out the final date/time.
> > > Thanks!
> > > >>
> > > >> Thanks,
> > > >> Nikhil
> > > >>
> > > >>
> > > >> -Original Message-
> > > >> From: Steven Gill [mailto:stevengil...@gmail.com]
> > > >> Sent: Monday, July 6, 2015 10:16 AM
> > > >> To: dev@cordova.apache.org
> > > >> Subject: Re: Cordova July Hangout
> > > >>
> > > >> Let's do it!
> > > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"
> > > >> 
> > > >> wrote:
> > > >>
> > > >>> I was wondering if it is a good time for a hangout. Here are few
> > > >>> good topics for discussion:
> > > >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> > > >>> Review new API - Vladimir
> > > >>> https://github.com/cordova/cordova-discuss/pull/9
> > > >>> 2. Status of testing infrastructure - what are the next steps here
> ?
> > > >>> Is there scope for consolidation & fixing failing tests? Better
> > > >>> release testing. - Dmitry 3. Documentation website and workflow
> > > >>> improvements - Dmitry
> > > >>> https://github.com/cordova/cordova-discuss/pull/11
> > > >>> 4. iOS 4 release - status update - Shazron 5. Browserify updates -
> > > >>> Steve Gill 6. Cordova plugin npm search - Demo & next steps -
> > > >>> Murat
> > > >>> https://github.com/cordova/cordova-discuss/issues/7
> > > >>>
> > > >>> Feel free to add to this list:
> > > >>> https://docs.google.com/document/d/1Ig-qAyIbqKPtTCGkYaqJ2VYufPweTG
> > > >>> Dm
> > > >>> 5A
> > > >>> w-dFGpjRc/edit
> > > >>>
> > > >>> I propose we meet in the week of 7/13. Here's the doodle for this:
> > > >>> http://doodle.com/vut5qrb4gy7dtmw9
> > > >>>
> > > >>> Thanks,
> > > >>> Nikhil
> > > >>>
> > > >>> (I understand folks for Adobe are out this week - hop

RE: Cordova July Hangout

2015-07-16 Thread tommy-carlos williams
That is just the public link, yeah?


-- 
tommy-carlos williams

On 17 July 2015 at 05:40:17, Parashuram N (panar...@microsoft.com) wrote:

Steve has created a new link. 
https://plus.google.com/events/cu7bp8n2adp53rkmg2e8o5jd4vk  

-Original Message-  
From: Andrey Kurdumov [mailto:kant2...@googlemail.com]  
Sent: Thursday, July 16, 2015 12:38 PM  
To: dev@cordova.apache.org  
Subject: Re: Cordova July Hangout  

Old link not working, would you post new one?  


2015-07-17 1:32 GMT+06:00 Rob Paveza :  

> We'll have it back momentarily, we just noticed as well.  
>   
> From: Andrey Kurdumov   
> Sent: Thursday, July 16, 2015 12:31 PM  
> To: dev@cordova.apache.org  
> Subject: Re: Cordova July Hangout  
>  
> Does hangout on air stopped?  
>  
> 2015-07-17 1:12 GMT+06:00 Parashuram N :  
>  
> > I think we can add items to the agenda. Docs is indeed a good thing  
> > to discuss.  
> >  
> > -Original Message-  
> > From: Andrey Kurdumov [mailto:kant2...@googlemail.com]  
> > Sent: Thursday, July 16, 2015 12:10 PM  
> > To: dev@cordova.apache.org  
> > Subject: Re: Cordova July Hangout  
> >  
> > Maybe it is too late, but ask anyway. Any change to look/participate  
> > at the conversation, since I particularly interested in the Docs part?  
> >  
> > 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :  
> >  
> > > Hangout link here:  
> > > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia  
> > >  
> > > -Nikhil  
> > >  
> > > -Original Message-  
> > > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]  
> > > Sent: Thursday, July 16, 2015 4:57 AM  
> > > To: dev@cordova.apache.org  
> > > Subject: Re: Cordova July Hangout  
> > >  
> > > Alarm set for 4:30am.  
> > >  
> > > Better go to bed now ;)  
> > >  
> > >  
> > >  
> > > > On 16 Jul 2015, at 21:20, Carlos Santana   
> wrote:  
> > > >  
> > > > Looking forward to Hangout today, I will bring doughnuts :-) On  
> > > > Mon, Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <  
> > > > v-vlk...@microsoft.com> wrote:  
> > > >  
> > > >> Hey, guys. I've just opened a PR (  
> > > >> https://github.com/cordova/cordova-discuss/pull/12) with high  
> > > >> level overview of cordova-lib refactoring proposal, so anyone  
> > > >> interested may get familiar with it. Feel free to leave your  
> > > >> questions and notes, to be able to discuss them during hangout.  
> > > >>  
> > > >> ---  
> > > >> Best regards, Vladimir  
> > > >>  
> > > >> -Original Message-  
> > > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]  
> > > >> Sent: Thursday, 9 July, 2015 3:30  
> > > >> To: dev@cordova.apache.org  
> > > >> Subject: RE: Cordova July Hangout  
> > > >>  
> > > >> Thanks, Nikhil.  
> > > >>  
> > > >> Looking forward to it.  
> > > >>  
> > > >>  
> > > >> --  
> > > >> tommy-carlos williams  
> > > >>  
> > > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal  
> > > >> (nikhi...@microsoft.com)  
> > > >> wrote:  
> > > >>  
> > > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST  
> > > >> has the maximum folks. Please add it to your calendars. I will  
> > > >> send out a hangout link closer to the event.  
> > > >>  
> > > >> Thanks,  
> > > >> Nikhil  
> > > >>  
> > > >>  
> > > >> -Original Message-  
> > > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]  
> > > >> Sent: Tuesday, July 7, 2015 1:50 PM  
> > > >> To: dev@cordova.apache.org  
> > > >> Subject: RE: Cordova July Hangout  
> > > >>  
> > > >> In case you are interested in this and have not responded.  
> > > >> Here's the doodle link:  
> > > >> http://doodle.com/vut5qrb4gy7dtmw9  
> > > >>  
> > > >> I plan to close this by tomorrow and send out the final date/time.  
> > > Thanks!  
> > > >>  
> > > >> Thanks,  
> > > >> Nikhil  
> > > >>  
> > > >>  
> > > >> -Original Message-  
> > > >> From: Steven Gill [mailto:stevengil...@gmail.com]  
> > > >> Sent: Monday, July 6, 2015 10:16 AM  
> > > >> To: dev@cordova.apache.org  
> > > >> Subject: Re: Cordova July Hangout  
> > > >>  
> > > >> Let's do it!  
> > > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"  
> > > >>   
> > > >> wrote:  
> > > >>  
> > > >>> I was wondering if it is a good time for a hangout. Here are  
> > > >>> few good topics for discussion:  
> > > >>> 1. Re-working cordova-lib <-> cordova platform interactions.  
> > > >>> Review new API - Vladimir  
> > > >>> https://github.com/cordova/cordova-discuss/pull/9  
> > > >>> 2. Status of testing infrastructure - what are the next steps  
> > > >>> here  
> ?  
> > > >>> Is there scope for consolidation & fixing failing tests?  
> > > >>> Better release testing. - Dmitry 3. Documentation website and  
> > > >>> workflow improvements - Dmitry  
> > > >>> https://github.com/cordova/cordova-discuss/pull/11  
> > > >>> 4. iOS 4 release - status update - Shazron 5. Browserify  
> > > >>> updates - Steve Gill 6. Cordova p

Re: Cordova July Hangout

2015-07-16 Thread Joe Bowser
Yeah, this isn't the link to join.

On Thu, Jul 16, 2015 at 12:42 PM tommy-carlos williams 
wrote:

> That is just the public link, yeah?
>
>
> --
> tommy-carlos williams
>
> On 17 July 2015 at 05:40:17, Parashuram N (panar...@microsoft.com) wrote:
>
> Steve has created a new link.
> https://plus.google.com/events/cu7bp8n2adp53rkmg2e8o5jd4vk
>
> -Original Message-
> From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> Sent: Thursday, July 16, 2015 12:38 PM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Old link not working, would you post new one?
>
>
> 2015-07-17 1:32 GMT+06:00 Rob Paveza :
>
> > We'll have it back momentarily, we just noticed as well.
> > 
> > From: Andrey Kurdumov 
> > Sent: Thursday, July 16, 2015 12:31 PM
> > To: dev@cordova.apache.org
> > Subject: Re: Cordova July Hangout
> >
> > Does hangout on air stopped?
> >
> > 2015-07-17 1:12 GMT+06:00 Parashuram N :
> >
> > > I think we can add items to the agenda. Docs is indeed a good thing
> > > to discuss.
> > >
> > > -Original Message-
> > > From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> > > Sent: Thursday, July 16, 2015 12:10 PM
> > > To: dev@cordova.apache.org
> > > Subject: Re: Cordova July Hangout
> > >
> > > Maybe it is too late, but ask anyway. Any change to look/participate
> > > at the conversation, since I particularly interested in the Docs part?
> > >
> > > 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :
> > >
> > > > Hangout link here:
> > > > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
> > > >
> > > > -Nikhil
> > > >
> > > > -Original Message-
> > > > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> > > > Sent: Thursday, July 16, 2015 4:57 AM
> > > > To: dev@cordova.apache.org
> > > > Subject: Re: Cordova July Hangout
> > > >
> > > > Alarm set for 4:30am.
> > > >
> > > > Better go to bed now ;)
> > > >
> > > >
> > > >
> > > > > On 16 Jul 2015, at 21:20, Carlos Santana 
> > wrote:
> > > > >
> > > > > Looking forward to Hangout today, I will bring doughnuts :-) On
> > > > > Mon, Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
> > > > > v-vlk...@microsoft.com> wrote:
> > > > >
> > > > >> Hey, guys. I've just opened a PR (
> > > > >> https://github.com/cordova/cordova-discuss/pull/12) with high
> > > > >> level overview of cordova-lib refactoring proposal, so anyone
> > > > >> interested may get familiar with it. Feel free to leave your
> > > > >> questions and notes, to be able to discuss them during hangout.
> > > > >>
> > > > >> ---
> > > > >> Best regards, Vladimir
> > > > >>
> > > > >> -Original Message-
> > > > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> > > > >> Sent: Thursday, 9 July, 2015 3:30
> > > > >> To: dev@cordova.apache.org
> > > > >> Subject: RE: Cordova July Hangout
> > > > >>
> > > > >> Thanks, Nikhil.
> > > > >>
> > > > >> Looking forward to it.
> > > > >>
> > > > >>
> > > > >> --
> > > > >> tommy-carlos williams
> > > > >>
> > > > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> > > > >> (nikhi...@microsoft.com)
> > > > >> wrote:
> > > > >>
> > > > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST
> > > > >> has the maximum folks. Please add it to your calendars. I will
> > > > >> send out a hangout link closer to the event.
> > > > >>
> > > > >> Thanks,
> > > > >> Nikhil
> > > > >>
> > > > >>
> > > > >> -Original Message-
> > > > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> > > > >> Sent: Tuesday, July 7, 2015 1:50 PM
> > > > >> To: dev@cordova.apache.org
> > > > >> Subject: RE: Cordova July Hangout
> > > > >>
> > > > >> In case you are interested in this and have not responded.
> > > > >> Here's the doodle link:
> > > > >> http://doodle.com/vut5qrb4gy7dtmw9
> > > > >>
> > > > >> I plan to close this by tomorrow and send out the final date/time.
> > > > Thanks!
> > > > >>
> > > > >> Thanks,
> > > > >> Nikhil
> > > > >>
> > > > >>
> > > > >> -Original Message-
> > > > >> From: Steven Gill [mailto:stevengil...@gmail.com]
> > > > >> Sent: Monday, July 6, 2015 10:16 AM
> > > > >> To: dev@cordova.apache.org
> > > > >> Subject: Re: Cordova July Hangout
> > > > >>
> > > > >> Let's do it!
> > > > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"
> > > > >> 
> > > > >> wrote:
> > > > >>
> > > > >>> I was wondering if it is a good time for a hangout. Here are
> > > > >>> few good topics for discussion:
> > > > >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> > > > >>> Review new API - Vladimir
> > > > >>> https://github.com/cordova/cordova-discuss/pull/9
> > > > >>> 2. Status of testing infrastructure - what are the next steps
> > > > >>> here
> > ?
> > > > >>> Is there scope for consolidation & fixing failing tests?
> > > > >>> Better release testing. - Dmitry 3. Documentation website and
> > > > >>> workflow improvements - Dmitry
> > > > >>> https://github.com/cordova/cordova-discuss/pul

RE: Cordova July Hangout

2015-07-16 Thread Parashuram N
Hangouts chat happening on https://cordova.slack.com/messages/hangouts/

-Original Message-
From: Joe Bowser [mailto:bows...@gmail.com] 
Sent: Thursday, July 16, 2015 12:43 PM
To: dev@cordova.apache.org
Subject: Re: Cordova July Hangout

Yeah, this isn't the link to join.

On Thu, Jul 16, 2015 at 12:42 PM tommy-carlos williams 
wrote:

> That is just the public link, yeah?
>
>
> --
> tommy-carlos williams
>
> On 17 July 2015 at 05:40:17, Parashuram N (panar...@microsoft.com) wrote:
>
> Steve has created a new link.
> https://plus.google.com/events/cu7bp8n2adp53rkmg2e8o5jd4vk
>
> -Original Message-
> From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> Sent: Thursday, July 16, 2015 12:38 PM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Old link not working, would you post new one?
>
>
> 2015-07-17 1:32 GMT+06:00 Rob Paveza :
>
> > We'll have it back momentarily, we just noticed as well.
> > 
> > From: Andrey Kurdumov 
> > Sent: Thursday, July 16, 2015 12:31 PM
> > To: dev@cordova.apache.org
> > Subject: Re: Cordova July Hangout
> >
> > Does hangout on air stopped?
> >
> > 2015-07-17 1:12 GMT+06:00 Parashuram N :
> >
> > > I think we can add items to the agenda. Docs is indeed a good 
> > > thing to discuss.
> > >
> > > -Original Message-
> > > From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> > > Sent: Thursday, July 16, 2015 12:10 PM
> > > To: dev@cordova.apache.org
> > > Subject: Re: Cordova July Hangout
> > >
> > > Maybe it is too late, but ask anyway. Any change to 
> > > look/participate at the conversation, since I particularly interested in 
> > > the Docs part?
> > >
> > > 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :
> > >
> > > > Hangout link here:
> > > > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
> > > >
> > > > -Nikhil
> > > >
> > > > -Original Message-
> > > > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> > > > Sent: Thursday, July 16, 2015 4:57 AM
> > > > To: dev@cordova.apache.org
> > > > Subject: Re: Cordova July Hangout
> > > >
> > > > Alarm set for 4:30am.
> > > >
> > > > Better go to bed now ;)
> > > >
> > > >
> > > >
> > > > > On 16 Jul 2015, at 21:20, Carlos Santana 
> > > > > 
> > wrote:
> > > > >
> > > > > Looking forward to Hangout today, I will bring doughnuts :-) 
> > > > > On Mon, Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) < 
> > > > > v-vlk...@microsoft.com> wrote:
> > > > >
> > > > >> Hey, guys. I've just opened a PR (
> > > > >> https://github.com/cordova/cordova-discuss/pull/12) with high 
> > > > >> level overview of cordova-lib refactoring proposal, so anyone 
> > > > >> interested may get familiar with it. Feel free to leave your 
> > > > >> questions and notes, to be able to discuss them during hangout.
> > > > >>
> > > > >> ---
> > > > >> Best regards, Vladimir
> > > > >>
> > > > >> -Original Message-
> > > > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> > > > >> Sent: Thursday, 9 July, 2015 3:30
> > > > >> To: dev@cordova.apache.org
> > > > >> Subject: RE: Cordova July Hangout
> > > > >>
> > > > >> Thanks, Nikhil.
> > > > >>
> > > > >> Looking forward to it.
> > > > >>
> > > > >>
> > > > >> --
> > > > >> tommy-carlos williams
> > > > >>
> > > > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> > > > >> (nikhi...@microsoft.com)
> > > > >> wrote:
> > > > >>
> > > > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST 
> > > > >> has the maximum folks. Please add it to your calendars. I 
> > > > >> will send out a hangout link closer to the event.
> > > > >>
> > > > >> Thanks,
> > > > >> Nikhil
> > > > >>
> > > > >>
> > > > >> -Original Message-
> > > > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> > > > >> Sent: Tuesday, July 7, 2015 1:50 PM
> > > > >> To: dev@cordova.apache.org
> > > > >> Subject: RE: Cordova July Hangout
> > > > >>
> > > > >> In case you are interested in this and have not responded.
> > > > >> Here's the doodle link:
> > > > >> http://doodle.com/vut5qrb4gy7dtmw9
> > > > >>
> > > > >> I plan to close this by tomorrow and send out the final date/time.
> > > > Thanks!
> > > > >>
> > > > >> Thanks,
> > > > >> Nikhil
> > > > >>
> > > > >>
> > > > >> -Original Message-
> > > > >> From: Steven Gill [mailto:stevengil...@gmail.com]
> > > > >> Sent: Monday, July 6, 2015 10:16 AM
> > > > >> To: dev@cordova.apache.org
> > > > >> Subject: Re: Cordova July Hangout
> > > > >>
> > > > >> Let's do it!
> > > > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"
> > > > >> 
> > > > >> wrote:
> > > > >>
> > > > >>> I was wondering if it is a good time for a hangout. Here are 
> > > > >>> few good topics for discussion:
> > > > >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> > > > >>> Review new API - Vladimir
> > > > >>> https://github.com/cordova/cordova-discuss/pull/9
> > > > >>> 2. Status of testing infrastructure - what are the next

Re: Cordova July Hangout

2015-07-16 Thread Carlos Santana
Try this one
https://plus.google.com/hangouts/_/hoaevent/AP36tYevj3-FCg9CSC28Y7k4iSA4KpyqN1PHLEHgCeaVfv_lI7dgBw


On Thu, Jul 16, 2015 at 3:42 PM tommy-carlos williams 
wrote:

> That is just the public link, yeah?
>
>
> --
> tommy-carlos williams
>
> On 17 July 2015 at 05:40:17, Parashuram N (panar...@microsoft.com) wrote:
>
> Steve has created a new link.
> https://plus.google.com/events/cu7bp8n2adp53rkmg2e8o5jd4vk
>
> -Original Message-
> From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> Sent: Thursday, July 16, 2015 12:38 PM
> To: dev@cordova.apache.org
> Subject: Re: Cordova July Hangout
>
> Old link not working, would you post new one?
>
>
> 2015-07-17 1:32 GMT+06:00 Rob Paveza :
>
> > We'll have it back momentarily, we just noticed as well.
> > 
> > From: Andrey Kurdumov 
> > Sent: Thursday, July 16, 2015 12:31 PM
> > To: dev@cordova.apache.org
> > Subject: Re: Cordova July Hangout
> >
> > Does hangout on air stopped?
> >
> > 2015-07-17 1:12 GMT+06:00 Parashuram N :
> >
> > > I think we can add items to the agenda. Docs is indeed a good thing
> > > to discuss.
> > >
> > > -Original Message-
> > > From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> > > Sent: Thursday, July 16, 2015 12:10 PM
> > > To: dev@cordova.apache.org
> > > Subject: Re: Cordova July Hangout
> > >
> > > Maybe it is too late, but ask anyway. Any change to look/participate
> > > at the conversation, since I particularly interested in the Docs part?
> > >
> > > 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :
> > >
> > > > Hangout link here:
> > > > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
> > > >
> > > > -Nikhil
> > > >
> > > > -Original Message-
> > > > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> > > > Sent: Thursday, July 16, 2015 4:57 AM
> > > > To: dev@cordova.apache.org
> > > > Subject: Re: Cordova July Hangout
> > > >
> > > > Alarm set for 4:30am.
> > > >
> > > > Better go to bed now ;)
> > > >
> > > >
> > > >
> > > > > On 16 Jul 2015, at 21:20, Carlos Santana 
> > wrote:
> > > > >
> > > > > Looking forward to Hangout today, I will bring doughnuts :-) On
> > > > > Mon, Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
> > > > > v-vlk...@microsoft.com> wrote:
> > > > >
> > > > >> Hey, guys. I've just opened a PR (
> > > > >> https://github.com/cordova/cordova-discuss/pull/12) with high
> > > > >> level overview of cordova-lib refactoring proposal, so anyone
> > > > >> interested may get familiar with it. Feel free to leave your
> > > > >> questions and notes, to be able to discuss them during hangout.
> > > > >>
> > > > >> ---
> > > > >> Best regards, Vladimir
> > > > >>
> > > > >> -Original Message-
> > > > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> > > > >> Sent: Thursday, 9 July, 2015 3:30
> > > > >> To: dev@cordova.apache.org
> > > > >> Subject: RE: Cordova July Hangout
> > > > >>
> > > > >> Thanks, Nikhil.
> > > > >>
> > > > >> Looking forward to it.
> > > > >>
> > > > >>
> > > > >> --
> > > > >> tommy-carlos williams
> > > > >>
> > > > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> > > > >> (nikhi...@microsoft.com)
> > > > >> wrote:
> > > > >>
> > > > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST
> > > > >> has the maximum folks. Please add it to your calendars. I will
> > > > >> send out a hangout link closer to the event.
> > > > >>
> > > > >> Thanks,
> > > > >> Nikhil
> > > > >>
> > > > >>
> > > > >> -Original Message-
> > > > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> > > > >> Sent: Tuesday, July 7, 2015 1:50 PM
> > > > >> To: dev@cordova.apache.org
> > > > >> Subject: RE: Cordova July Hangout
> > > > >>
> > > > >> In case you are interested in this and have not responded.
> > > > >> Here's the doodle link:
> > > > >> http://doodle.com/vut5qrb4gy7dtmw9
> > > > >>
> > > > >> I plan to close this by tomorrow and send out the final date/time.
> > > > Thanks!
> > > > >>
> > > > >> Thanks,
> > > > >> Nikhil
> > > > >>
> > > > >>
> > > > >> -Original Message-
> > > > >> From: Steven Gill [mailto:stevengil...@gmail.com]
> > > > >> Sent: Monday, July 6, 2015 10:16 AM
> > > > >> To: dev@cordova.apache.org
> > > > >> Subject: Re: Cordova July Hangout
> > > > >>
> > > > >> Let's do it!
> > > > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"
> > > > >> 
> > > > >> wrote:
> > > > >>
> > > > >>> I was wondering if it is a good time for a hangout. Here are
> > > > >>> few good topics for discussion:
> > > > >>> 1. Re-working cordova-lib <-> cordova platform interactions.
> > > > >>> Review new API - Vladimir
> > > > >>> https://github.com/cordova/cordova-discuss/pull/9
> > > > >>> 2. Status of testing infrastructure - what are the next steps
> > > > >>> here
> > ?
> > > > >>> Is there scope for consolidation & fixing failing tests?
> > > > >>> Better release testing. - Dmitry 3. Documentation website and
> > > > >>> workflow imp

Re: Cordova July Hangout

2015-07-16 Thread Carlos Santana
Youtube http://youtu.be/xX2JcfovD2Y


On Thu, Jul 16, 2015 at 3:46 PM Carlos Santana  wrote:

> Try this one
>
> https://plus.google.com/hangouts/_/hoaevent/AP36tYevj3-FCg9CSC28Y7k4iSA4KpyqN1PHLEHgCeaVfv_lI7dgBw
>
>
> On Thu, Jul 16, 2015 at 3:42 PM tommy-carlos williams 
> wrote:
>
>> That is just the public link, yeah?
>>
>>
>> --
>> tommy-carlos williams
>>
>> On 17 July 2015 at 05:40:17, Parashuram N (panar...@microsoft.com) wrote:
>>
>> Steve has created a new link.
>> https://plus.google.com/events/cu7bp8n2adp53rkmg2e8o5jd4vk
>>
>> -Original Message-
>> From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
>> Sent: Thursday, July 16, 2015 12:38 PM
>> To: dev@cordova.apache.org
>> Subject: Re: Cordova July Hangout
>>
>> Old link not working, would you post new one?
>>
>>
>> 2015-07-17 1:32 GMT+06:00 Rob Paveza :
>>
>> > We'll have it back momentarily, we just noticed as well.
>> > 
>> > From: Andrey Kurdumov 
>> > Sent: Thursday, July 16, 2015 12:31 PM
>> > To: dev@cordova.apache.org
>> > Subject: Re: Cordova July Hangout
>> >
>> > Does hangout on air stopped?
>> >
>> > 2015-07-17 1:12 GMT+06:00 Parashuram N :
>> >
>> > > I think we can add items to the agenda. Docs is indeed a good thing
>> > > to discuss.
>> > >
>> > > -Original Message-
>> > > From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
>> > > Sent: Thursday, July 16, 2015 12:10 PM
>> > > To: dev@cordova.apache.org
>> > > Subject: Re: Cordova July Hangout
>> > >
>> > > Maybe it is too late, but ask anyway. Any change to look/participate
>> > > at the conversation, since I particularly interested in the Docs part?
>> > >
>> > > 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal :
>> > >
>> > > > Hangout link here:
>> > > > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
>> > > >
>> > > > -Nikhil
>> > > >
>> > > > -Original Message-
>> > > > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
>> > > > Sent: Thursday, July 16, 2015 4:57 AM
>> > > > To: dev@cordova.apache.org
>> > > > Subject: Re: Cordova July Hangout
>> > > >
>> > > > Alarm set for 4:30am.
>> > > >
>> > > > Better go to bed now ;)
>> > > >
>> > > >
>> > > >
>> > > > > On 16 Jul 2015, at 21:20, Carlos Santana 
>> > wrote:
>> > > > >
>> > > > > Looking forward to Hangout today, I will bring doughnuts :-) On
>> > > > > Mon, Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
>> > > > > v-vlk...@microsoft.com> wrote:
>> > > > >
>> > > > >> Hey, guys. I've just opened a PR (
>> > > > >> https://github.com/cordova/cordova-discuss/pull/12) with high
>> > > > >> level overview of cordova-lib refactoring proposal, so anyone
>> > > > >> interested may get familiar with it. Feel free to leave your
>> > > > >> questions and notes, to be able to discuss them during hangout.
>> > > > >>
>> > > > >> ---
>> > > > >> Best regards, Vladimir
>> > > > >>
>> > > > >> -Original Message-
>> > > > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
>> > > > >> Sent: Thursday, 9 July, 2015 3:30
>> > > > >> To: dev@cordova.apache.org
>> > > > >> Subject: RE: Cordova July Hangout
>> > > > >>
>> > > > >> Thanks, Nikhil.
>> > > > >>
>> > > > >> Looking forward to it.
>> > > > >>
>> > > > >>
>> > > > >> --
>> > > > >> tommy-carlos williams
>> > > > >>
>> > > > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
>> > > > >> (nikhi...@microsoft.com)
>> > > > >> wrote:
>> > > > >>
>> > > > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST
>> > > > >> has the maximum folks. Please add it to your calendars. I will
>> > > > >> send out a hangout link closer to the event.
>> > > > >>
>> > > > >> Thanks,
>> > > > >> Nikhil
>> > > > >>
>> > > > >>
>> > > > >> -Original Message-
>> > > > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
>> > > > >> Sent: Tuesday, July 7, 2015 1:50 PM
>> > > > >> To: dev@cordova.apache.org
>> > > > >> Subject: RE: Cordova July Hangout
>> > > > >>
>> > > > >> In case you are interested in this and have not responded.
>> > > > >> Here's the doodle link:
>> > > > >> http://doodle.com/vut5qrb4gy7dtmw9
>> > > > >>
>> > > > >> I plan to close this by tomorrow and send out the final
>> date/time.
>> > > > Thanks!
>> > > > >>
>> > > > >> Thanks,
>> > > > >> Nikhil
>> > > > >>
>> > > > >>
>> > > > >> -Original Message-
>> > > > >> From: Steven Gill [mailto:stevengil...@gmail.com]
>> > > > >> Sent: Monday, July 6, 2015 10:16 AM
>> > > > >> To: dev@cordova.apache.org
>> > > > >> Subject: Re: Cordova July Hangout
>> > > > >>
>> > > > >> Let's do it!
>> > > > >> On Jul 1, 2015 10:57 AM, "Nikhil Khandelwal"
>> > > > >> 
>> > > > >> wrote:
>> > > > >>
>> > > > >>> I was wondering if it is a good time for a hangout. Here are
>> > > > >>> few good topics for discussion:
>> > > > >>> 1. Re-working cordova-lib <-> cordova platform interactions.
>> > > > >>> Review new API - Vladimir
>> > > > >>> https://github.com/cordova/cordova-discuss/pull/9
>> > > > >>> 2.

[GitHub] cordova-registry-web pull request: Updated the look and feel of th...

2015-07-16 Thread cpsloal
Github user cpsloal closed the pull request at:

https://github.com/apache/cordova-registry-web/pull/18


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



[GitHub] cordova-ios pull request: CB-9273 "Copy www build phase" node is n...

2015-07-16 Thread daserge
GitHub user daserge opened a pull request:

https://github.com/apache/cordova-ios/pull/149

CB-9273 "Copy www build phase" node is not found

[Jira issue](https://issues.apache.org/jira/browse/CB-9273)

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-ios CB-9273

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-ios/pull/149.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #149


commit 57d3dcdc83dd1676124c9c9b3c7ee9f00b53167f
Author: daserge 
Date:   2015-07-16T19:03:12Z

CB-9273 "Copy www build phase" node is not found




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



[GitHub] cordova-plugin-contacts pull request: Making sure the photoCursor ...

2015-07-16 Thread manugb
Github user manugb commented on the pull request:


https://github.com/apache/cordova-plugin-contacts/pull/61#issuecomment-122083722
  
This close() is missing! This pr should be merged!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



Re: Cordova July Hangout

2015-07-16 Thread Shazron
Re-cap:
We had two sequential Hangouts on Air due to technical difficulties.

1. https://www.youtube.com/watch?v=FWJPawUs3to (18 mins)
2. https://www.youtube.com/watch?v=xX2JcfovD2Y (90 mins)

On Thu, Jul 16, 2015 at 12:48 PM, Carlos Santana 
wrote:

> Youtube http://youtu.be/xX2JcfovD2Y
>
>
> On Thu, Jul 16, 2015 at 3:46 PM Carlos Santana 
> wrote:
>
> > Try this one
> >
> >
> https://plus.google.com/hangouts/_/hoaevent/AP36tYevj3-FCg9CSC28Y7k4iSA4KpyqN1PHLEHgCeaVfv_lI7dgBw
> >
> >
> > On Thu, Jul 16, 2015 at 3:42 PM tommy-carlos williams <
> to...@devgeeks.org>
> > wrote:
> >
> >> That is just the public link, yeah?
> >>
> >>
> >> --
> >> tommy-carlos williams
> >>
> >> On 17 July 2015 at 05:40:17, Parashuram N (panar...@microsoft.com)
> wrote:
> >>
> >> Steve has created a new link.
> >> https://plus.google.com/events/cu7bp8n2adp53rkmg2e8o5jd4vk
> >>
> >> -Original Message-
> >> From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> >> Sent: Thursday, July 16, 2015 12:38 PM
> >> To: dev@cordova.apache.org
> >> Subject: Re: Cordova July Hangout
> >>
> >> Old link not working, would you post new one?
> >>
> >>
> >> 2015-07-17 1:32 GMT+06:00 Rob Paveza :
> >>
> >> > We'll have it back momentarily, we just noticed as well.
> >> > 
> >> > From: Andrey Kurdumov 
> >> > Sent: Thursday, July 16, 2015 12:31 PM
> >> > To: dev@cordova.apache.org
> >> > Subject: Re: Cordova July Hangout
> >> >
> >> > Does hangout on air stopped?
> >> >
> >> > 2015-07-17 1:12 GMT+06:00 Parashuram N :
> >> >
> >> > > I think we can add items to the agenda. Docs is indeed a good thing
> >> > > to discuss.
> >> > >
> >> > > -Original Message-
> >> > > From: Andrey Kurdumov [mailto:kant2...@googlemail.com]
> >> > > Sent: Thursday, July 16, 2015 12:10 PM
> >> > > To: dev@cordova.apache.org
> >> > > Subject: Re: Cordova July Hangout
> >> > >
> >> > > Maybe it is too late, but ask anyway. Any change to look/participate
> >> > > at the conversation, since I particularly interested in the Docs
> part?
> >> > >
> >> > > 2015-07-17 0:36 GMT+06:00 Nikhil Khandelwal  >:
> >> > >
> >> > > > Hangout link here:
> >> > > > https://plus.google.com/hangouts/_/gtsa5mhzwcxdaj4n5pfadet5hia
> >> > > >
> >> > > > -Nikhil
> >> > > >
> >> > > > -Original Message-
> >> > > > From: Tommy-Carlos Williams [mailto:to...@devgeeks.org]
> >> > > > Sent: Thursday, July 16, 2015 4:57 AM
> >> > > > To: dev@cordova.apache.org
> >> > > > Subject: Re: Cordova July Hangout
> >> > > >
> >> > > > Alarm set for 4:30am.
> >> > > >
> >> > > > Better go to bed now ;)
> >> > > >
> >> > > >
> >> > > >
> >> > > > > On 16 Jul 2015, at 21:20, Carlos Santana 
> >> > wrote:
> >> > > > >
> >> > > > > Looking forward to Hangout today, I will bring doughnuts :-) On
> >> > > > > Mon, Jul 13, 2015 at 10:42 AM Vladimir Kotikov (Akvelon) <
> >> > > > > v-vlk...@microsoft.com> wrote:
> >> > > > >
> >> > > > >> Hey, guys. I've just opened a PR (
> >> > > > >> https://github.com/cordova/cordova-discuss/pull/12) with high
> >> > > > >> level overview of cordova-lib refactoring proposal, so anyone
> >> > > > >> interested may get familiar with it. Feel free to leave your
> >> > > > >> questions and notes, to be able to discuss them during hangout.
> >> > > > >>
> >> > > > >> ---
> >> > > > >> Best regards, Vladimir
> >> > > > >>
> >> > > > >> -Original Message-
> >> > > > >> From: tommy-carlos williams [mailto:to...@devgeeks.org]
> >> > > > >> Sent: Thursday, 9 July, 2015 3:30
> >> > > > >> To: dev@cordova.apache.org
> >> > > > >> Subject: RE: Cordova July Hangout
> >> > > > >>
> >> > > > >> Thanks, Nikhil.
> >> > > > >>
> >> > > > >> Looking forward to it.
> >> > > > >>
> >> > > > >>
> >> > > > >> --
> >> > > > >> tommy-carlos williams
> >> > > > >>
> >> > > > >> On 9 July 2015 at 08:18:24, Nikhil Khandelwal
> >> > > > >> (nikhi...@microsoft.com)
> >> > > > >> wrote:
> >> > > > >>
> >> > > > >> I'm closing the doodle now. Thursday July 16th 12 - 2 PM PST
> >> > > > >> has the maximum folks. Please add it to your calendars. I will
> >> > > > >> send out a hangout link closer to the event.
> >> > > > >>
> >> > > > >> Thanks,
> >> > > > >> Nikhil
> >> > > > >>
> >> > > > >>
> >> > > > >> -Original Message-
> >> > > > >> From: Nikhil Khandelwal [mailto:nikhi...@microsoft.com]
> >> > > > >> Sent: Tuesday, July 7, 2015 1:50 PM
> >> > > > >> To: dev@cordova.apache.org
> >> > > > >> Subject: RE: Cordova July Hangout
> >> > > > >>
> >> > > > >> In case you are interested in this and have not responded.
> >> > > > >> Here's the doodle link:
> >> > > > >> http://doodle.com/vut5qrb4gy7dtmw9
> >> > > > >>
> >> > > > >> I plan to close this by tomorrow and send out the final
> >> date/time.
> >> > > > Thanks!
> >> > > > >>
> >> > > > >> Thanks,
> >> > > > >> Nikhil
> >> > > > >>
> >> > > > >>
> >> > > > >> -Original Message-
> >> > > > >> From: Steven Gill [mailto:stevengil...@gmail.com]
> >> > > > >> Sent: Mo

[GitHub] cordova-ios pull request: CB-9273 "Copy www build phase" node is n...

2015-07-16 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-ios/pull/149


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



[GitHub] cordova-ios pull request: CB-9273 "Copy www build phase" node is n...

2015-07-16 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-ios/pull/149#issuecomment-122115698
  
Merged in. You can close this PR now (Apache -> Git hooks are not working 
right)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



[GitHub] cordova-windows pull request: Lock AppVeyor environment node versi...

2015-07-16 Thread purplecabbage
Github user purplecabbage commented on the pull request:

https://github.com/apache/cordova-windows/pull/104#issuecomment-122119783
  
Are peeps okay with me merging this?
I ran `npm test` locally with node v0.12 and all tests passed, not sure 
what the issue is with 0.12 and Appveyor.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



[DISCUSS] cordova-ios 3.9.0 release

2015-07-16 Thread Shazron
>From the hangout today someone mentioned fixes that need to go out, 4.x was
holding this back (and won't be ready at least not within the next 4 wks).
I'll be away for the next few weeks so I can't help out on this.

I'd say branch off 3.8.x and cherry-pick commits in.

Thoughts?


[GitHub] cordova-plugin-device pull request: Change UUID to use [UIDevice i...

2015-07-16 Thread tenfef
GitHub user tenfef opened a pull request:

https://github.com/apache/cordova-plugin-device/pull/36

Change UUID to use [UIDevice identifierForVendor]

instead of generating a UUID, just use the unique identifierForVendor for 
device which is valid since iOS 6.0
Since Cordova dropped support for iOS 5, I think this is a safe change and 
the UUID will be persistent across installs.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/tenfef/cordova-plugin-device master

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-device/pull/36.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #36


commit f28cb50cdc7d65a8f0c9cb74e4fdc53ac4516a37
Author: Jordan 
Date:   2015-07-17T00:33:41Z

Changed UUID to use [UIDevice identifierForVendor]

instead of generating a UUID, just use the unique identifierForVendor for 
device which is valid since iOS 6.0
Since Cordova dropped support for iOS 5, I think this is a safe change and 
the UUID will be persistent across installs.

commit 810c3c9fe06003cd916ffe5b668cd9286c506f31
Author: Jordan 
Date:   2015-07-17T00:34:42Z

Remove line incorrectly committed




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



Re: Discuss Android plugin compatibility problem

2015-07-16 Thread Carlos Santana
Steve plugin.xml already supports declaring gradle deps

On Thu, Jul 16, 2015 at 1:29 PM Joe Bowser  wrote:

> Ideally Maven should handle all this shit, and it should be invisible.  Our
> plugin system should not handle Java dependencies or any other platform
> dependencies, and we should work behind the scenes to make this work like
> how Crosswalk works.
>
> On Thu, Jul 16, 2015 at 10:18 AM Steven Gill 
> wrote:
>
> > Would this be added to plugin.xml?
> >
> > On Thu, Jul 16, 2015 at 10:09 AM, Mefire O. 
> > wrote:
> >
> > > +1 on moving deps to gradle.
> > >
> > > On Jul 16, 2015 9:37 AM, Carlos Santana  wrote:
> > > you mean the scripts in cordova-android right? then yes
> > >
> > > +1 create jira bug, enhancements etc.. if doesn't get track it doesn't
> > get
> > > done
> > >
> > > On Thu, Jul 16, 2015 at 12:26 PM Joe Bowser  wrote:
> > >
> > > > Is there a bug created for this? It sounds like we should have the
> > local
> > > > scripts handle dependency adding on Android.
> > > >
> > > > On Thu, Jul 16, 2015 at 9:14 AM Carlos Santana  >
> > > > wrote:
> > > >
> > > > > +1 gradle declared dependencies only, cli to warn users about
> plugins
> > > > > having libraries that will conflict, future is gradle no ANT I'm ok
> > to
> > > > > start deprecating ant going forward.
> > > > >
> > > > >
> > > > > On Thu, Jul 16, 2015 at 11:27 AM Sergey Grebnov (Akvelon) <
> > > > > v-seg...@microsoft.com> wrote:
> > > > >
> > > > > > Hi guys, I want to raise the following question - what we should
> > > > > > recommend  plugin developers to avoid 'Multiple dex files
> defined'
> > > > issue
> > > > > on
> > > > > > Android, for example [3]
> > > > > >
> > > > > > UNEXPECTED TOP-LEVEL EXCEPTION:
> > > > > > com.android.dex.DexException: Multiple dex files define
> > > > > >
> > > > >
> > > >
> > >
> >
> Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;
> > > > > >
> > > > > >
> > > > > > To reproduce this problem you can add both Facebook [1] and
> > > > PushPlugin[2]
> > > > > > and then build android platform.
> > > > > >
> > > > > > This happens due to we still use jars to add plugin dependencies,
> > but
> > > > > > there are several very popular among them (like android-support,
> > > gson)
> > > > so
> > > > > > we bring the same dependencies several times so build fails.
> > > > > >
> > > > > > I think we should start recommending people to start adding
> > > > > > utility/common/popular dependencies via corresponding gradle
> > > > > configuration
> > > > > > (not using libs folder) as the only way to support multiple
> plugins
> > > > which
> > > > > > could rely on the same dependency. In this case gradle will be
> able
> > > to
> > > > > > handle this situation correctly using its smart Dependency
> > > > > > Management/Versioning logic [4].
> > > > > >
> > > > > > For example,
> > > > > >
> > > > > >  > > > > > target-dir="libs/" />
> > > > > > ->
> > > > > > 
> > > > > >
> > > > > > Disadvantage of this approach is that Ant build won't be
> supported
> > (I
> > > > > know
> > > > > > some tricky/more complex way to correctly support both Ant and
> > Gradle
> > > > > but I
> > > > > > don't think it is worth adding more complexity for plugins
> > developers
> > > > > just
> > > > > > to continue supporting Ant).
> > > > > >
> > > > > > Guys, any recommendations/thoughts how we should proceed in this
> > > > > > situation? Maybe someone has better solution for this problem?
> > > > > >
> > > > > > [1] https://github.com/Wizcorp/phonegap-facebook-plugin
> > > > > > [2] https://github.com/phonegap-build/PushPlugin
> > > > > > [3]
> > https://github.com/Wizcorp/phonegap-facebook-plugin/issues/1028
> > > > > > [4]
> > > > https://docs.gradle.org/current/userguide/dependency_management.html
> > > > > >
> > > > > > Thx!
> > > > > > Sergey
> > > > > >
> > > > > >
> > > > > >
> > -
> > > > > > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > > > > > For additional commands, e-mail: dev-h...@cordova.apache.org
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>


Re: [DISCUSS] cordova-ios 3.9.0 release

2015-07-16 Thread Carlos Santana
+1 I think MS mentioned they wanted to cherry pick the signing using
build.json

On Thu, Jul 16, 2015 at 7:25 PM Shazron  wrote:

> From the hangout today someone mentioned fixes that need to go out, 4.x was
> holding this back (and won't be ready at least not within the next 4 wks).
> I'll be away for the next few weeks so I can't help out on this.
>
> I'd say branch off 3.8.x and cherry-pick commits in.
>
> Thoughts?
>


Re: Discuss Android plugin compatibility problem

2015-07-16 Thread Joe Bowser
Wait, yeah, plugin.xml does handle that.  I was thinking config.xml.  WTF?

On Thu, Jul 16, 2015 at 9:21 PM Carlos Santana  wrote:

> Steve plugin.xml already supports declaring gradle deps
>
> On Thu, Jul 16, 2015 at 1:29 PM Joe Bowser  wrote:
>
> > Ideally Maven should handle all this shit, and it should be invisible.
> Our
> > plugin system should not handle Java dependencies or any other platform
> > dependencies, and we should work behind the scenes to make this work like
> > how Crosswalk works.
> >
> > On Thu, Jul 16, 2015 at 10:18 AM Steven Gill 
> > wrote:
> >
> > > Would this be added to plugin.xml?
> > >
> > > On Thu, Jul 16, 2015 at 10:09 AM, Mefire O. 
> > > wrote:
> > >
> > > > +1 on moving deps to gradle.
> > > >
> > > > On Jul 16, 2015 9:37 AM, Carlos Santana 
> wrote:
> > > > you mean the scripts in cordova-android right? then yes
> > > >
> > > > +1 create jira bug, enhancements etc.. if doesn't get track it
> doesn't
> > > get
> > > > done
> > > >
> > > > On Thu, Jul 16, 2015 at 12:26 PM Joe Bowser 
> wrote:
> > > >
> > > > > Is there a bug created for this? It sounds like we should have the
> > > local
> > > > > scripts handle dependency adding on Android.
> > > > >
> > > > > On Thu, Jul 16, 2015 at 9:14 AM Carlos Santana <
> csantan...@gmail.com
> > >
> > > > > wrote:
> > > > >
> > > > > > +1 gradle declared dependencies only, cli to warn users about
> > plugins
> > > > > > having libraries that will conflict, future is gradle no ANT I'm
> ok
> > > to
> > > > > > start deprecating ant going forward.
> > > > > >
> > > > > >
> > > > > > On Thu, Jul 16, 2015 at 11:27 AM Sergey Grebnov (Akvelon) <
> > > > > > v-seg...@microsoft.com> wrote:
> > > > > >
> > > > > > > Hi guys, I want to raise the following question - what we
> should
> > > > > > > recommend  plugin developers to avoid 'Multiple dex files
> > defined'
> > > > > issue
> > > > > > on
> > > > > > > Android, for example [3]
> > > > > > >
> > > > > > > UNEXPECTED TOP-LEVEL EXCEPTION:
> > > > > > > com.android.dex.DexException: Multiple dex files define
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;
> > > > > > >
> > > > > > >
> > > > > > > To reproduce this problem you can add both Facebook [1] and
> > > > > PushPlugin[2]
> > > > > > > and then build android platform.
> > > > > > >
> > > > > > > This happens due to we still use jars to add plugin
> dependencies,
> > > but
> > > > > > > there are several very popular among them (like
> android-support,
> > > > gson)
> > > > > so
> > > > > > > we bring the same dependencies several times so build fails.
> > > > > > >
> > > > > > > I think we should start recommending people to start adding
> > > > > > > utility/common/popular dependencies via corresponding gradle
> > > > > > configuration
> > > > > > > (not using libs folder) as the only way to support multiple
> > plugins
> > > > > which
> > > > > > > could rely on the same dependency. In this case gradle will be
> > able
> > > > to
> > > > > > > handle this situation correctly using its smart Dependency
> > > > > > > Management/Versioning logic [4].
> > > > > > >
> > > > > > > For example,
> > > > > > >
> > > > > > >  src="src/android/com/plugin/android-support-v13.jar"
> > > > > > > target-dir="libs/" />
> > > > > > > ->
> > > > > > > 
> > > > > > >
> > > > > > > Disadvantage of this approach is that Ant build won't be
> > supported
> > > (I
> > > > > > know
> > > > > > > some tricky/more complex way to correctly support both Ant and
> > > Gradle
> > > > > > but I
> > > > > > > don't think it is worth adding more complexity for plugins
> > > developers
> > > > > > just
> > > > > > > to continue supporting Ant).
> > > > > > >
> > > > > > > Guys, any recommendations/thoughts how we should proceed in
> this
> > > > > > > situation? Maybe someone has better solution for this problem?
> > > > > > >
> > > > > > > [1] https://github.com/Wizcorp/phonegap-facebook-plugin
> > > > > > > [2] https://github.com/phonegap-build/PushPlugin
> > > > > > > [3]
> > > https://github.com/Wizcorp/phonegap-facebook-plugin/issues/1028
> > > > > > > [4]
> > > > >
> https://docs.gradle.org/current/userguide/dependency_management.html
> > > > > > >
> > > > > > > Thx!
> > > > > > > Sergey
> > > > > > >
> > > > > > >
> > > > > > >
> > > -
> > > > > > > To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > > > > > > For additional commands, e-mail: dev-h...@cordova.apache.org
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>


[GitHub] cordova-registry-web pull request: Use gulp-serve instead of brows...

2015-07-16 Thread muratsu
GitHub user muratsu opened a pull request:

https://github.com/apache/cordova-registry-web/pull/27

Use gulp-serve instead of browser-sync

Two problems I've encountered:

- On Windows, browser-sync depends on VS and python 2.x.
- On Windows, 2 of my machines ran into 256 char path limit issue while 
compiling browser-sync dependencies

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-registry-web gulp-serve

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-registry-web/pull/27.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #27


commit aefa1cc71c125cb12d8938cfd532a60593b1f21f
Author: Murat Sutunc 
Date:   2015-07-17T06:04:03Z

Use gulp-serve instead of browser-sync




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org



Re: [DISCUSS] cordova-ios 3.9.0 release

2015-07-16 Thread julio cesar sanchez
+1

2015-07-17 6:24 GMT+02:00 Carlos Santana :

> +1 I think MS mentioned they wanted to cherry pick the signing using
> build.json
>
> On Thu, Jul 16, 2015 at 7:25 PM Shazron  wrote:
>
> > From the hangout today someone mentioned fixes that need to go out, 4.x
> was
> > holding this back (and won't be ready at least not within the next 4
> wks).
> > I'll be away for the next few weeks so I can't help out on this.
> >
> > I'd say branch off 3.8.x and cherry-pick commits in.
> >
> > Thoughts?
> >
>


[GitHub] cordova-plugin-device pull request: Change UUID to use [UIDevice i...

2015-07-16 Thread jcesarmobile
Github user jcesarmobile commented on the pull request:


https://github.com/apache/cordova-plugin-device/pull/36#issuecomment-122194054
  
First of all, an issue is needed before merging this, create a new one here 
http://issues.cordova.io/ and use the identifier you get on this pull request 
title.

Second, this change will require a change in the docs too, so people can 
know that the plugin uses the identifierForVendor for the UUID, what is it, and 
it's peculiarities. The whole iOS Quirks section should be changed to document 
this




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org