[GitHub] cordova-plugin-inappbrowser pull request: CB-3360: Set custom inap...

2016-04-18 Thread Quelu
Github user Quelu commented on the pull request:


https://github.com/apache/cordova-plugin-inappbrowser/pull/94#issuecomment-211265699
  
Any chances to get this merged ? :smile: 


---
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-wkwebview-engine pull request: Fixes CB-11074: WKWe...

2016-04-18 Thread akofman
Github user akofman commented on the pull request:


https://github.com/apache/cordova-plugin-wkwebview-engine/pull/7#issuecomment-211276741
  
Any feedback ?


---
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-11022 Duplicate www files on plugin i...

2016-04-18 Thread asfgit
Github user asfgit closed the pull request at:

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


---
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-lib pull request: CB-11022 Save modulesMetadata to both ww...

2016-04-18 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-lib/pull/427


---
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: CB-11022 Duplicate www files on plug...

2016-04-18 Thread vladimir-kotikov
Github user vladimir-kotikov commented on a diff in the pull request:

https://github.com/apache/cordova-windows/pull/167#discussion_r60028006
  
--- Diff: template/cordova/lib/PluginHandler.js ---
@@ -123,24 +123,27 @@ var handlers = {
 throw new CordovaError(' tag without required 
"target" attribute');
 }
 
-var www = options.usePlatformWww ? project.platformWww : 
project.www;
-copyFile(plugin.dir, obj.src, www, obj.target);
+copyFile(plugin.dir, obj.src, project.www, obj.target);
+if (options && options.usePlatformWww) copyFile(plugin.dir, 
obj.src, project.platformWww, obj.target);
 },
 uninstall:function(obj, plugin, project, options) {
 var target = obj.target || obj.src;
 
 if (!target) throw new CordovaError(' tag without 
required "target" attribute');
 
-var www = options.usePlatformWww ? project.platformWww : 
project.www;
-removeFile(www, target);
-shell.rm('-Rf', path.resolve(www, 'plugins', plugin.id));
+removeFile(project.www, target);
+removeFile(project.www, path.join('plugins', plugin.id));
+if (options && options.usePlatformWww) {
+removeFile(project.platformWww, target);
+removeFile(project.platformWww, path.join('plugins', 
plugin.id));
+}
 }
 },
 'js-module': {
 install: function (obj, plugin, project, options) {
 // Copy the plugin's files into the www directory.
 var moduleSource = path.resolve(plugin.dir, obj.src);
-var moduleName = plugin.id + '.' + (obj.name || 
path.parse(obj.src).name);
+var moduleName = plugin.id + '.' + (obj.name || 
path.basename(obj.src, path.extname (obj.src)));
--- End diff --

Yup, these are the same, but `path.parse` is not available in Node v0.10


---
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: CB-11022 Duplicate www files on plug...

2016-04-18 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-windows/pull/167


---
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-common@1.2.0 release

2016-04-18 Thread Vladimir Kotikov (Akvelon)
Does anyone have any reason to delay the release? Any outstanding patches to 
land?
If not, I will start the release tomorrow.

-
Best regards, Vladimir

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



RE: [DISCUSS] Cordova-common@1.2.0 release

2016-04-18 Thread Vladimir Kotikov (Akvelon)
The release notes are:

* CB-11022 Save modulesMetadata to both www and platform_www when necessary
* CB-10833 Deduplicate common logic for plugin installation/uninstallation
* CB-10822 Manage plugins/modules metadata using PlatformJson
* CB-10940 Can't add Android platform from path
* CB-10965 xml helper allows multiple instances to be merge in config.xml

-
Best regards, Vladimir

-Original Message-
From: Vladimir Kotikov (Akvelon) [mailto:v-vlk...@microsoft.com] 
Sent: Monday, April 18, 2016 2:41 PM
To: dev@cordova.apache.org
Subject: [DISCUSS] Cordova-common@1.2.0 release

Does anyone have any reason to delay the release? Any outstanding patches to 
land?
If not, I will start the release tomorrow.

-
Best regards, Vladimir

-
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-battery-status pull request: CB-10398 Added Appium ...

2016-04-18 Thread alsorokin
Github user alsorokin closed the pull request at:

https://github.com/apache/cordova-plugin-battery-status/pull/29


---
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-11077 backbutton does not minimize a...

2016-04-18 Thread daserge
GitHub user daserge opened a pull request:

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

CB-11077 backbutton does not minimize app

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

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

$ git pull https://github.com/MSOpenTech/cordova-docs CB-11077

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

https://github.com/apache/cordova-docs/pull/580.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 #580


commit 4902c413d7cb7198e02546639509f8f29bef6a16
Author: daserge 
Date:   2016-04-18T14:03:36Z

CB-11077 backbutton does not minimize app




---
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: Update CoreAndroid.java

2016-04-18 Thread dheeran1
GitHub user dheeran1 opened a pull request:

https://github.com/apache/cordova-android/pull/293

Update CoreAndroid.java

No modifier (package-private) class to public class

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

$ git pull https://github.com/dheeran1/cordova-android patch-1

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

https://github.com/apache/cordova-android/pull/293.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 #293


commit be5e34ad2285c94a0692ef9a02ad0378fff0558e
Author: dheeran1 
Date:   2016-04-18T14:45:41Z

Update CoreAndroid.java

No modifier (package-private) class to public class




---
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: CB-11066 Remove uap prefixed capabil...

2016-04-18 Thread vladimir-kotikov
GitHub user vladimir-kotikov opened a pull request:

https://github.com/apache/cordova-windows/pull/168

CB-11066 Remove uap prefixed capabilities when plugin has added regular ones

This fixes a problem when some of capabilities, added by plugin are being 
modified at 'prepare' stage due to special Windows logic and then aren't 
removed when uninstalling plugin. For details see 
[CB-11066](https://issues.apache.org/jira/browse/CB-11066)

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

$ git pull https://github.com/MSOpenTech/cordova-windows CB-11066

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

https://github.com/apache/cordova-windows/pull/168.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 #168


commit 3300b14cb59d16d0dd60aadae2608401c6f635a0
Author: Vladimir Kotikov 
Date:   2016-04-18T09:00:51Z

CB-11066 Remove uap prefixed capabilities along with regular ones




---
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-11019 Handle app name change more acc...

2016-04-18 Thread sgrebnov
Github user sgrebnov commented on the pull request:

https://github.com/apache/cordova-ios/pull/213#issuecomment-211430445
  
:+1: lgtm


---
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-11019 Handle app name change more acc...

2016-04-18 Thread vladimir-kotikov
Github user vladimir-kotikov closed the pull request at:

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


---
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: overrideBackbutton(boolean) from Cor...

2016-04-18 Thread dheeran1
GitHub user dheeran1 opened a pull request:

https://github.com/apache/cordova-android/pull/294

overrideBackbutton(boolean) from CoreAndroid.java has no effect

Can't override android back button

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

$ git pull https://github.com/dheeran1/cordova-android patch-2

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

https://github.com/apache/cordova-android/pull/294.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 #294


commit c32f874969febaae4eb9f867b764c8512831a005
Author: dheeran1 
Date:   2016-04-18T15:36:28Z

overrideBackbutton(boolean) from CoreAndroid.java has no effect




---
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: Apache Con NA May 11-13 in Vancouver, BC

2016-04-18 Thread Ryan J. Salva
Regrettably, Microsoft won't be attending ApacheCon this year either. Without 
critical mass from the other Cordova contributors, it simply doesn't make sense 
(as much as I'd love to visit Vancouver).

Does anyone have a recommended destination, host or occasion for the  F2F?

rjs


Ryan J. Salva  |  Principal PM Manager
Visual Studio Tools for Apache Cordova
rsa...@microsoft.com
425 706 5270 office
206 612 5079 mobile

-Original Message-
From: Carlos Santana [mailto:csantan...@gmail.com] 
Sent: Friday, April 15, 2016 5:47 PM
To: dev@cordova.apache.org
Subject: Re: Apache Con NA May 11-13 in Vancouver, BC

No one from IBM MobileFirst going we don't have travel budget :-(

A Cordova Face 2 Face might be useful and there might be a better chance to get 
approval than Apache Con, also we stop doing the Monthly Hangouts I think they 
we're useful and community builder. 

- Carlos
@csantanapr

> On Apr 15, 2016, at 4:13 PM, Simon MacDonald  
> wrote:
> 
> I decided not to go as ApacheCon is sandwiched between two other trips 
> I need to make in May.
> 
> That being said it would be nice to get another Cordova Face 2 Face 
> sometime in the next few months.
> 
> Simon Mac Donald
> https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.im%
> 2fsimonmacdonald&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb728c7b34
> 8a9bc9908d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=WoSAD
> 1sazA7ZjJBS8Xp8GznZi4nfnvua8peua88n3xA%3d
> 
>> On Fri, Apr 15, 2016 at 3:35 PM, Steven Gill  wrote:
>> 
>> Hey Tony,
>> 
>> Due to the lack of committer response and the upcoming PGDAY EU 
>> event, I ended up not submitting a talk. I don't believe anyone from 
>> the Adobe Cordova team is going.
>> 
>> 
>> 
>>> On Fri, Apr 15, 2016 at 6:21 AM, Homer, Tony  wrote:
>>> 
>>> I haven't seen any discussion about this lately - is anyone going?
>>> I think I'm going to go and I need to book my travel today.
>>> 
>>> I was in Austin at the same time as ApacheCon and dropped in to meet 
>>> up with some of you but I wasn't an attendee.
>>> How is the conference itself?
>>> 
>>> This year there is one Cordova session on the schedule (Advanced 
>>> Apache Cordova - Hazem Saleh, IBM[1]).
>>> It would be nice to meet up again this year.
>>> 
>>> [1]
>> https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fapach
>> econ2016.sched.org%2fevent%2f6OIr%2fadvanced-apache-cordova-hazem-sal
>> eh-ibm&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb728c7b348a9bc9908
>> d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=TINIM%2bbV3Ut
>> nD7vaivuEaOsOVXuyODWREz0D8rwL1Xg%3d
>>> 
>>> Tony
>>> 
>>> 
>>> 
>>> 
 On 1/20/16, 1:48 AM, "Simon MacDonald" 
>>> wrote:
>>> 
 Yup, that was exactly what I was thinking. Check in see if we've 
 made progress on what we talked about last time.
 
 
 Simon Mac Donald
 https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.
 im%2fsimonmacdonald&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb72
 8c7b348a9bc9908d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sd
 ata=WoSAD1sazA7ZjJBS8Xp8GznZi4nfnvua8peua88n3xA%3d
 
 On Tue, Jan 19, 2016 at 10:05 PM, Parashuram N 
 
 wrote:
 
> Like another Cordova Face to Face ? It would be almost 6 months 
> since
>> we
> had the last one.
> 
> -Original Message-
> From: Simon MacDonald [mailto:simon.macdon...@gmail.com]
> Sent: Tuesday, January 19, 2016 6:02 PM
> To: dev@cordova.apache.org
> Subject: Re: Apache Con NA May 11-13 in Vancouver, BC
> 
> I would be interested in going as well. Might be an easier sell if 
> we could schedule a Cordova check up around the same time.
> 
> Simon Mac Donald
>> https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.im
>> %2fsimonmacdonald&data=01%7c01%7cpanarasi%40microsoft.com%7c2adb8eb8a
>> cd348e2632108d3213dc71f%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=
>> OSg6OMGtiPCppvOA4TuM5hv%2fjkfa8mqcyk1WqT8VSn4%3d
> 
> On Tue, Jan 19, 2016 at 4:20 PM, Anis KADRI 
>>> wrote:
> 
>> I'd be down to go. I went last year and our project had a few 
>> talks but still was super under represented so everyone that can 
>> make it should go I think.
>> 
>> On Tue, Jan 19, 2016 at 11:49 AM Steven Gill <
>> stevengil...@gmail.com>
>> wrote:
>> 
>>> I'm planning on going but it seems i'm the only one so far.
>>> 
>>> On Tue, Jan 19, 2016 at 11:23 AM, Joe Bowser 
> wrote:
>>> 
 As usual, I'm not going to be attending this conference.  I'm 
 pretty
>> sure
 I'm banned from attending this.
 
 On Tue, Jan 19, 2016 at 11:16 AM, Ryan J. Salva 
 
 wrote:
 
> If we can get critical mass among other committers, I'd love
>> to
> head
>> up
 to
> Vancouver for a few days. Without other Cordova committers 
> attending,
>>> I'm
>

[GitHub] cordova-plugin-media pull request: Protect setVolume call in case ...

2016-04-18 Thread nikhilkh
Github user nikhilkh commented on the pull request:


https://github.com/apache/cordova-plugin-media/pull/93#issuecomment-211453937
  
Instead of catching the `NullPointerException`, should you test for 
`if(this.player)` - I'm assuming that's what is null in this scenario.


---
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: overrideBackbutton(boolean) from Cor...

2016-04-18 Thread dheeran1
Github user dheeran1 closed the pull request at:

https://github.com/apache/cordova-android/pull/294


---
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: [VOTE] Plugins Release April 15, 2016

2016-04-18 Thread Alexander Sorokin (Akvelon)
I vote +1.

* Verified signatures and hashes
* Verified tags
* Verified that plugins can be added correctly to blank app
* Verified that blank app can be successfully built and ran (windows and 
android)
* Verified that browserified app can be successfully built and ran (windows and 
android)
* Ran smoke testing of mobilespec app (windows, ios and android)

-Original Message-
From: Steven Gill [mailto:stevengil...@gmail.com] 
Sent: Friday, April 15, 2016 11:58 PM
To: dev@cordova.apache.org
Subject: [VOTE] Plugins Release April 15, 2016

Please review and vote on the release of this plugins release by replying to 
this email (and keep discussion on the DISCUSS thread)

Release issue: 
https://na01.safelinks.protection.outlook.com/?url=https%3a%2f%2fissues.apache.org%2fjira%2fbrowse%2fCB-11091&data=01%7c01%7cv-alsoro%40microsoft.com%7c647723744fcb448f487b08d36570bea3%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=ETNYUYNnaAkqKuxogQ9HAteidpiIol2JOU5PUMT0oyM%3d

The plugins have been published to
dist/dev:https://dist.apache.org/repos/dist/dev/cordova/CB-11091/

The packages were published from their corresponding git tags:
cordova-plugin-battery-status: 1.1.2 (f33cfa1216)
cordova-plugin-camera: 2.2.0 (d124e03cb9)
cordova-plugin-console: 1.0.3 (450752ba59)
cordova-plugin-contacts: 2.1.0 (b50b9fc625)
cordova-plugin-device: 1.1.2 (c18039bf27)
cordova-plugin-device-motion: 1.2.1 (6e6cb6ad38)
cordova-plugin-device-orientation: 1.0.3 (3b8d616628)
cordova-plugin-dialogs: 1.2.1 (523de37e5b)
cordova-plugin-file: 4.2.0 (d9b90461f1)
cordova-plugin-file-transfer: 1.5.1 (a4031db700)
cordova-plugin-geolocation: 2.2.0 (936c9435aa)
cordova-plugin-inappbrowser: 1.4.0 (56bb457c5e)
cordova-plugin-media: 2.3.0 (79f623264e)
cordova-plugin-media-capture: 1.3.0 (a6ab97dff5)
cordova-plugin-network-information: 1.2.1 (09b46b2c61)
cordova-plugin-splashscreen: 3.2.2 (14061d1999)
cordova-plugin-statusbar: 2.1.3 (ef7266874a)
cordova-plugin-test-framework: 1.1.2 (12b4e16ba8)
cordova-plugin-vibration: 2.1.1 (5910bdc808)
cordova-plugin-whitelist: 1.2.2 (876e3b2433)
cordova-plugin-wkwebview-engine: 1.0.3 (ac8bc9968b)
cordova-plugin-compat: 1.0.0 (e9e3f38caf)

Upon a successful vote I will upload the archives to dist/, upload them to npm, 
and post the corresponding blog post.

Voting guidelines:
https://github.com/apache/cordova-coho/blob/master/docs/release-voting.md

Voting will go on for a minimum of 48 hours.

I vote +1:
* Ran coho audit-license-headers over the relevant repos
* Ran coho check-license to ensure all dependencies and subdependencies have 
Apache-compatible licenses
* Ran mobile spec on android (browserify and non browserify)
* CI looked good


RE: [DISCUSS] Cordova-common@1.2.0 release

2016-04-18 Thread Steven Gill
+1
On Apr 18, 2016 4:41 AM, "Vladimir Kotikov (Akvelon)" <
v-vlk...@microsoft.com> wrote:

> The release notes are:
>
> * CB-11022 Save modulesMetadata to both www and platform_www when necessary
> * CB-10833 Deduplicate common logic for plugin installation/uninstallation
> * CB-10822 Manage plugins/modules metadata using PlatformJson
> * CB-10940 Can't add Android platform from path
> * CB-10965 xml helper allows multiple instances to be merge in config.xml
>
> -
> Best regards, Vladimir
>
> -Original Message-
> From: Vladimir Kotikov (Akvelon) [mailto:v-vlk...@microsoft.com]
> Sent: Monday, April 18, 2016 2:41 PM
> To: dev@cordova.apache.org
> Subject: [DISCUSS] Cordova-common@1.2.0 release
>
> Does anyone have any reason to delay the release? Any outstanding patches
> to land?
> If not, I will start the release tomorrow.
>
> -
> Best regards, Vladimir
>
> -
> 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: Apache Con NA May 11-13 in Vancouver, BC

2016-04-18 Thread Jesse
Vancouver would be awesome! Just not as soon as ApacheCon.


@purplecabbage
risingj.com

On Mon, Apr 18, 2016 at 8:42 AM, Ryan J. Salva  wrote:

> Regrettably, Microsoft won't be attending ApacheCon this year either.
> Without critical mass from the other Cordova contributors, it simply
> doesn't make sense (as much as I'd love to visit Vancouver).
>
> Does anyone have a recommended destination, host or occasion for the  F2F?
>
> rjs
>
>
> Ryan J. Salva  |  Principal PM Manager
> Visual Studio Tools for Apache Cordova
> rsa...@microsoft.com
> 425 706 5270 office
> 206 612 5079 mobile
>
> -Original Message-
> From: Carlos Santana [mailto:csantan...@gmail.com]
> Sent: Friday, April 15, 2016 5:47 PM
> To: dev@cordova.apache.org
> Subject: Re: Apache Con NA May 11-13 in Vancouver, BC
>
> No one from IBM MobileFirst going we don't have travel budget :-(
>
> A Cordova Face 2 Face might be useful and there might be a better chance
> to get approval than Apache Con, also we stop doing the Monthly Hangouts I
> think they we're useful and community builder.
>
> - Carlos
> @csantanapr
>
> > On Apr 15, 2016, at 4:13 PM, Simon MacDonald 
> wrote:
> >
> > I decided not to go as ApacheCon is sandwiched between two other trips
> > I need to make in May.
> >
> > That being said it would be nice to get another Cordova Face 2 Face
> > sometime in the next few months.
> >
> > Simon Mac Donald
> > https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.im%
> > 2fsimonmacdonald&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb728c7b34
> > 8a9bc9908d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=WoSAD
> > 1sazA7ZjJBS8Xp8GznZi4nfnvua8peua88n3xA%3d
> >
> >> On Fri, Apr 15, 2016 at 3:35 PM, Steven Gill 
> wrote:
> >>
> >> Hey Tony,
> >>
> >> Due to the lack of committer response and the upcoming PGDAY EU
> >> event, I ended up not submitting a talk. I don't believe anyone from
> >> the Adobe Cordova team is going.
> >>
> >>
> >>
> >>> On Fri, Apr 15, 2016 at 6:21 AM, Homer, Tony 
> wrote:
> >>>
> >>> I haven't seen any discussion about this lately - is anyone going?
> >>> I think I'm going to go and I need to book my travel today.
> >>>
> >>> I was in Austin at the same time as ApacheCon and dropped in to meet
> >>> up with some of you but I wasn't an attendee.
> >>> How is the conference itself?
> >>>
> >>> This year there is one Cordova session on the schedule (Advanced
> >>> Apache Cordova - Hazem Saleh, IBM[1]).
> >>> It would be nice to meet up again this year.
> >>>
> >>> [1]
> >> https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fapach
> >> econ2016.sched.org%2fevent%2f6OIr%2fadvanced-apache-cordova-hazem-sal
> >> eh-ibm&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb728c7b348a9bc9908
> >> d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=TINIM%2bbV3Ut
> >> nD7vaivuEaOsOVXuyODWREz0D8rwL1Xg%3d
> >>>
> >>> Tony
> >>>
> >>>
> >>>
> >>>
>  On 1/20/16, 1:48 AM, "Simon MacDonald" 
> >>> wrote:
> >>>
>  Yup, that was exactly what I was thinking. Check in see if we've
>  made progress on what we talked about last time.
> 
> 
>  Simon Mac Donald
>  https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.
>  im%2fsimonmacdonald&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb72
>  8c7b348a9bc9908d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sd
>  ata=WoSAD1sazA7ZjJBS8Xp8GznZi4nfnvua8peua88n3xA%3d
> 
>  On Tue, Jan 19, 2016 at 10:05 PM, Parashuram N
>  
>  wrote:
> 
> > Like another Cordova Face to Face ? It would be almost 6 months
> > since
> >> we
> > had the last one.
> >
> > -Original Message-
> > From: Simon MacDonald [mailto:simon.macdon...@gmail.com]
> > Sent: Tuesday, January 19, 2016 6:02 PM
> > To: dev@cordova.apache.org
> > Subject: Re: Apache Con NA May 11-13 in Vancouver, BC
> >
> > I would be interested in going as well. Might be an easier sell if
> > we could schedule a Cordova check up around the same time.
> >
> > Simon Mac Donald
> >> https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.im
> >> %2fsimonmacdonald&data=01%7c01%7cpanarasi%40microsoft.com%7c2adb8eb8a
> >> cd348e2632108d3213dc71f%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=
> >> OSg6OMGtiPCppvOA4TuM5hv%2fjkfa8mqcyk1WqT8VSn4%3d
> >
> > On Tue, Jan 19, 2016 at 4:20 PM, Anis KADRI 
> >>> wrote:
> >
> >> I'd be down to go. I went last year and our project had a few
> >> talks but still was super under represented so everyone that can
> >> make it should go I think.
> >>
> >> On Tue, Jan 19, 2016 at 11:49 AM Steven Gill <
> >> stevengil...@gmail.com>
> >> wrote:
> >>
> >>> I'm planning on going but it seems i'm the only one so far.
> >>>
> >>> On Tue, Jan 19, 2016 at 11:23 AM, Joe Bowser 
> > wrote:
> >>>
>  As usual, I'm not going to be attending this conference.  I'm
>  pretty
> >> sure
> >>>

[GitHub] cordova-plugin-wkwebview-engine pull request: Fixes CB-11074: WKWe...

2016-04-18 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-wkwebview-engine/pull/7#issuecomment-211493781
  
It still needs to be able to update it dynamically. I would refactor it to 
not remove the existing code, but create a new `- (WKWebViewConfiguration*) 
createConfigurationFromSettings:(NSDictionary*)settings;`

That way it can be used in both updateSettings and initWithFrame


---
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-test-framework pull request: Add spec started/compl...

2016-04-18 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-plugin-test-framework/pull/19


---
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-medic pull request: Ensure Android adb logs have timestamp

2016-04-18 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-medic/pull/90


---
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-cli pull request: CB-11042: Add cordova run option to skip...

2016-04-18 Thread nikhilkh
Github user nikhilkh commented on the pull request:

https://github.com/apache/cordova-cli/pull/244#issuecomment-211497103
  
Merged with commit: 6e2d201. Could you please close this PR now?


---
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: Apache Con NA May 11-13 in Vancouver, BC

2016-04-18 Thread Shazron
Also, I would recommend an autumn date, where (presumably) everybody will
be available. Preferably at one of our contributor sites that hasn't hosted
before?

We've had Google (Waterloo, ON) and Microsoft (Redmond, WA) previously.

On Mon, Apr 18, 2016 at 11:34 AM, Jesse  wrote:

> Vancouver would be awesome! Just not as soon as ApacheCon.
>
>
> @purplecabbage
> risingj.com
>
> On Mon, Apr 18, 2016 at 8:42 AM, Ryan J. Salva 
> wrote:
>
> > Regrettably, Microsoft won't be attending ApacheCon this year either.
> > Without critical mass from the other Cordova contributors, it simply
> > doesn't make sense (as much as I'd love to visit Vancouver).
> >
> > Does anyone have a recommended destination, host or occasion for the
> F2F?
> >
> > rjs
> >
> >
> > Ryan J. Salva  |  Principal PM Manager
> > Visual Studio Tools for Apache Cordova
> > rsa...@microsoft.com
> > 425 706 5270 office
> > 206 612 5079 mobile
> >
> > -Original Message-
> > From: Carlos Santana [mailto:csantan...@gmail.com]
> > Sent: Friday, April 15, 2016 5:47 PM
> > To: dev@cordova.apache.org
> > Subject: Re: Apache Con NA May 11-13 in Vancouver, BC
> >
> > No one from IBM MobileFirst going we don't have travel budget :-(
> >
> > A Cordova Face 2 Face might be useful and there might be a better chance
> > to get approval than Apache Con, also we stop doing the Monthly Hangouts
> I
> > think they we're useful and community builder.
> >
> > - Carlos
> > @csantanapr
> >
> > > On Apr 15, 2016, at 4:13 PM, Simon MacDonald <
> simon.macdon...@gmail.com>
> > wrote:
> > >
> > > I decided not to go as ApacheCon is sandwiched between two other trips
> > > I need to make in May.
> > >
> > > That being said it would be nice to get another Cordova Face 2 Face
> > > sometime in the next few months.
> > >
> > > Simon Mac Donald
> > > https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.im%
> > > 2fsimonmacdonald&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb728c7b34
> > > 8a9bc9908d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=WoSAD
> > > 1sazA7ZjJBS8Xp8GznZi4nfnvua8peua88n3xA%3d
> > >
> > >> On Fri, Apr 15, 2016 at 3:35 PM, Steven Gill 
> > wrote:
> > >>
> > >> Hey Tony,
> > >>
> > >> Due to the lack of committer response and the upcoming PGDAY EU
> > >> event, I ended up not submitting a talk. I don't believe anyone from
> > >> the Adobe Cordova team is going.
> > >>
> > >>
> > >>
> > >>> On Fri, Apr 15, 2016 at 6:21 AM, Homer, Tony 
> > wrote:
> > >>>
> > >>> I haven't seen any discussion about this lately - is anyone going?
> > >>> I think I'm going to go and I need to book my travel today.
> > >>>
> > >>> I was in Austin at the same time as ApacheCon and dropped in to meet
> > >>> up with some of you but I wasn't an attendee.
> > >>> How is the conference itself?
> > >>>
> > >>> This year there is one Cordova session on the schedule (Advanced
> > >>> Apache Cordova - Hazem Saleh, IBM[1]).
> > >>> It would be nice to meet up again this year.
> > >>>
> > >>> [1]
> > >> https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fapach
> > >> econ2016.sched.org%2fevent%2f6OIr%2fadvanced-apache-cordova-hazem-sal
> > >> eh-ibm&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb728c7b348a9bc9908
> > >> d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=TINIM%2bbV3Ut
> > >> nD7vaivuEaOsOVXuyODWREz0D8rwL1Xg%3d
> > >>>
> > >>> Tony
> > >>>
> > >>>
> > >>>
> > >>>
> >  On 1/20/16, 1:48 AM, "Simon MacDonald" 
> > >>> wrote:
> > >>>
> >  Yup, that was exactly what I was thinking. Check in see if we've
> >  made progress on what we talked about last time.
> > 
> > 
> >  Simon Mac Donald
> >  https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.
> >  im%2fsimonmacdonald&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb72
> >  8c7b348a9bc9908d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sd
> >  ata=WoSAD1sazA7ZjJBS8Xp8GznZi4nfnvua8peua88n3xA%3d
> > 
> >  On Tue, Jan 19, 2016 at 10:05 PM, Parashuram N
> >  
> >  wrote:
> > 
> > > Like another Cordova Face to Face ? It would be almost 6 months
> > > since
> > >> we
> > > had the last one.
> > >
> > > -Original Message-
> > > From: Simon MacDonald [mailto:simon.macdon...@gmail.com]
> > > Sent: Tuesday, January 19, 2016 6:02 PM
> > > To: dev@cordova.apache.org
> > > Subject: Re: Apache Con NA May 11-13 in Vancouver, BC
> > >
> > > I would be interested in going as well. Might be an easier sell if
> > > we could schedule a Cordova check up around the same time.
> > >
> > > Simon Mac Donald
> > >> https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.im
> > >> %2fsimonmacdonald&data=01%7c01%7cpanarasi%40microsoft.com%7c2adb8eb8a
> > >> cd348e2632108d3213dc71f%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=
> > >> OSg6OMGtiPCppvOA4TuM5hv%2fjkfa8mqcyk1WqT8VSn4%3d
> > >
> > > On Tue, Jan 19, 2016 at 4:20 PM, Anis KADRI 
> > >>> wrote:
> > >

RE: Apache Con NA May 11-13 in Vancouver, BC

2016-04-18 Thread Ryan J. Salva
Is there still an Adobe office in Vancover?


Ryan J. Salva  |  Principal PM Manager
Visual Studio Tools for Apache Cordova
rsa...@microsoft.com
425 706 5270 office
206 612 5079 mobile

-Original Message-
From: Shazron [mailto:shaz...@gmail.com] 
Sent: Monday, April 18, 2016 1:51 PM
To: dev@cordova.apache.org
Subject: Re: Apache Con NA May 11-13 in Vancouver, BC

Also, I would recommend an autumn date, where (presumably) everybody will be 
available. Preferably at one of our contributor sites that hasn't hosted before?

We've had Google (Waterloo, ON) and Microsoft (Redmond, WA) previously.

On Mon, Apr 18, 2016 at 11:34 AM, Jesse  wrote:

> Vancouver would be awesome! Just not as soon as ApacheCon.
>
>
> @purplecabbage
> https://na01.safelinks.protection.outlook.com/?url=risingj.com&data=01
> %7c01%7crsalva%40microsoft.com%7cbb0edb0b618e454eb92008d367b213f1%7c72
> f988bf86f141af91ab2d7cd011db47%7c1&sdata=rS4UBTFrNoY%2bRtI3xRmMzmLSAiR
> ksEdFDsbhWSh%2ftYk%3d
>
> On Mon, Apr 18, 2016 at 8:42 AM, Ryan J. Salva 
> wrote:
>
> > Regrettably, Microsoft won't be attending ApacheCon this year either.
> > Without critical mass from the other Cordova contributors, it simply 
> > doesn't make sense (as much as I'd love to visit Vancouver).
> >
> > Does anyone have a recommended destination, host or occasion for the
> F2F?
> >
> > rjs
> >
> >
> > Ryan J. Salva  |  Principal PM Manager Visual Studio Tools for 
> > Apache Cordova rsa...@microsoft.com
> > 425 706 5270 office
> > 206 612 5079 mobile
> >
> > -Original Message-
> > From: Carlos Santana [mailto:csantan...@gmail.com]
> > Sent: Friday, April 15, 2016 5:47 PM
> > To: dev@cordova.apache.org
> > Subject: Re: Apache Con NA May 11-13 in Vancouver, BC
> >
> > No one from IBM MobileFirst going we don't have travel budget :-(
> >
> > A Cordova Face 2 Face might be useful and there might be a better 
> > chance to get approval than Apache Con, also we stop doing the 
> > Monthly Hangouts
> I
> > think they we're useful and community builder.
> >
> > - Carlos
> > @csantanapr
> >
> > > On Apr 15, 2016, at 4:13 PM, Simon MacDonald <
> simon.macdon...@gmail.com>
> > wrote:
> > >
> > > I decided not to go as ApacheCon is sandwiched between two other 
> > > trips I need to make in May.
> > >
> > > That being said it would be nice to get another Cordova Face 2 
> > > Face sometime in the next few months.
> > >
> > > Simon Mac Donald
> > > https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi
> > > .im%
> > > 2fsimonmacdonald&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb728c
> > > 7b34 
> > > 8a9bc9908d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=W
> > > oSAD 1sazA7ZjJBS8Xp8GznZi4nfnvua8peua88n3xA%3d
> > >
> > >> On Fri, Apr 15, 2016 at 3:35 PM, Steven Gill 
> > >> 
> > wrote:
> > >>
> > >> Hey Tony,
> > >>
> > >> Due to the lack of committer response and the upcoming PGDAY EU 
> > >> event, I ended up not submitting a talk. I don't believe anyone 
> > >> from the Adobe Cordova team is going.
> > >>
> > >>
> > >>
> > >>> On Fri, Apr 15, 2016 at 6:21 AM, Homer, Tony 
> > >>> 
> > wrote:
> > >>>
> > >>> I haven't seen any discussion about this lately - is anyone going?
> > >>> I think I'm going to go and I need to book my travel today.
> > >>>
> > >>> I was in Austin at the same time as ApacheCon and dropped in to 
> > >>> meet up with some of you but I wasn't an attendee.
> > >>> How is the conference itself?
> > >>>
> > >>> This year there is one Cordova session on the schedule (Advanced 
> > >>> Apache Cordova - Hazem Saleh, IBM[1]).
> > >>> It would be nice to meet up again this year.
> > >>>
> > >>> [1]
> > >> https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fa
> > >> pach 
> > >> econ2016.sched.org%2fevent%2f6OIr%2fadvanced-apache-cordova-hazem
> > >> -sal
> > >> eh-ibm&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb728c7b348a9bc
> > >> 9908 
> > >> d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=TINIM%2bb
> > >> V3Ut nD7vaivuEaOsOVXuyODWREz0D8rwL1Xg%3d
> > >>>
> > >>> Tony
> > >>>
> > >>>
> > >>>
> > >>>
> >  On 1/20/16, 1:48 AM, "Simon MacDonald" 
> >  
> > >>> wrote:
> > >>>
> >  Yup, that was exactly what I was thinking. Check in see if 
> >  we've made progress on what we talked about last time.
> > 
> > 
> >  Simon Mac Donald
> >  https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.
> >  im%2fsimonmacdonald&data=01%7c01%7crsalva%40microsoft.com%7c8e6
> >  fb72 
> >  8c7b348a9bc9908d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c
> >  1&sd ata=WoSAD1sazA7ZjJBS8Xp8GznZi4nfnvua8peua88n3xA%3d
> > 
> >  On Tue, Jan 19, 2016 at 10:05 PM, Parashuram N 
> >  
> >  wrote:
> > 
> > > Like another Cordova Face to Face ? It would be almost 6 
> > > months since
> > >> we
> > > had the last one.
> > >
> > > -Original Message-
> > > From: Simon MacDonald [mailto:simon.macdon...@gmail.com]
> > > Sent: Tuesd

[GitHub] cordova-cli pull request: CB-11042: Add cordova run option to skip...

2016-04-18 Thread jasongin
Github user jasongin closed the pull request at:

https://github.com/apache/cordova-cli/pull/244


---
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: Apache Con NA May 11-13 in Vancouver, BC

2016-04-18 Thread Jesse
No, unfortunately the PhoneGap Vancouver office was closed.


@purplecabbage
risingj.com

On Mon, Apr 18, 2016 at 10:53 AM, Ryan J. Salva 
wrote:

> Is there still an Adobe office in Vancover?
>
>
> Ryan J. Salva  |  Principal PM Manager
> Visual Studio Tools for Apache Cordova
> rsa...@microsoft.com
> 425 706 5270 office
> 206 612 5079 mobile
>
> -Original Message-
> From: Shazron [mailto:shaz...@gmail.com]
> Sent: Monday, April 18, 2016 1:51 PM
> To: dev@cordova.apache.org
> Subject: Re: Apache Con NA May 11-13 in Vancouver, BC
>
> Also, I would recommend an autumn date, where (presumably) everybody will
> be available. Preferably at one of our contributor sites that hasn't hosted
> before?
>
> We've had Google (Waterloo, ON) and Microsoft (Redmond, WA) previously.
>
> On Mon, Apr 18, 2016 at 11:34 AM, Jesse  wrote:
>
> > Vancouver would be awesome! Just not as soon as ApacheCon.
> >
> >
> > @purplecabbage
> > https://na01.safelinks.protection.outlook.com/?url=risingj.com&data=01
> > %7c01%7crsalva%40microsoft.com%7cbb0edb0b618e454eb92008d367b213f1%7c72
> > f988bf86f141af91ab2d7cd011db47%7c1&sdata=rS4UBTFrNoY%2bRtI3xRmMzmLSAiR
> > ksEdFDsbhWSh%2ftYk%3d
> >
> > On Mon, Apr 18, 2016 at 8:42 AM, Ryan J. Salva 
> > wrote:
> >
> > > Regrettably, Microsoft won't be attending ApacheCon this year either.
> > > Without critical mass from the other Cordova contributors, it simply
> > > doesn't make sense (as much as I'd love to visit Vancouver).
> > >
> > > Does anyone have a recommended destination, host or occasion for the
> > F2F?
> > >
> > > rjs
> > >
> > >
> > > Ryan J. Salva  |  Principal PM Manager Visual Studio Tools for
> > > Apache Cordova rsa...@microsoft.com
> > > 425 706 5270 office
> > > 206 612 5079 mobile
> > >
> > > -Original Message-
> > > From: Carlos Santana [mailto:csantan...@gmail.com]
> > > Sent: Friday, April 15, 2016 5:47 PM
> > > To: dev@cordova.apache.org
> > > Subject: Re: Apache Con NA May 11-13 in Vancouver, BC
> > >
> > > No one from IBM MobileFirst going we don't have travel budget :-(
> > >
> > > A Cordova Face 2 Face might be useful and there might be a better
> > > chance to get approval than Apache Con, also we stop doing the
> > > Monthly Hangouts
> > I
> > > think they we're useful and community builder.
> > >
> > > - Carlos
> > > @csantanapr
> > >
> > > > On Apr 15, 2016, at 4:13 PM, Simon MacDonald <
> > simon.macdon...@gmail.com>
> > > wrote:
> > > >
> > > > I decided not to go as ApacheCon is sandwiched between two other
> > > > trips I need to make in May.
> > > >
> > > > That being said it would be nice to get another Cordova Face 2
> > > > Face sometime in the next few months.
> > > >
> > > > Simon Mac Donald
> > > > https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi
> > > > .im%
> > > > 2fsimonmacdonald&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb728c
> > > > 7b34
> > > > 8a9bc9908d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=W
> > > > oSAD 1sazA7ZjJBS8Xp8GznZi4nfnvua8peua88n3xA%3d
> > > >
> > > >> On Fri, Apr 15, 2016 at 3:35 PM, Steven Gill
> > > >> 
> > > wrote:
> > > >>
> > > >> Hey Tony,
> > > >>
> > > >> Due to the lack of committer response and the upcoming PGDAY EU
> > > >> event, I ended up not submitting a talk. I don't believe anyone
> > > >> from the Adobe Cordova team is going.
> > > >>
> > > >>
> > > >>
> > > >>> On Fri, Apr 15, 2016 at 6:21 AM, Homer, Tony
> > > >>> 
> > > wrote:
> > > >>>
> > > >>> I haven't seen any discussion about this lately - is anyone going?
> > > >>> I think I'm going to go and I need to book my travel today.
> > > >>>
> > > >>> I was in Austin at the same time as ApacheCon and dropped in to
> > > >>> meet up with some of you but I wasn't an attendee.
> > > >>> How is the conference itself?
> > > >>>
> > > >>> This year there is one Cordova session on the schedule (Advanced
> > > >>> Apache Cordova - Hazem Saleh, IBM[1]).
> > > >>> It would be nice to meet up again this year.
> > > >>>
> > > >>> [1]
> > > >> https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fa
> > > >> pach
> > > >> econ2016.sched.org%2fevent%2f6OIr%2fadvanced-apache-cordova-hazem
> > > >> -sal
> > > >> eh-ibm&data=01%7c01%7crsalva%40microsoft.com%7c8e6fb728c7b348a9bc
> > > >> 9908
> > > >> d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=TINIM%2bb
> > > >> V3Ut nD7vaivuEaOsOVXuyODWREz0D8rwL1Xg%3d
> > > >>>
> > > >>> Tony
> > > >>>
> > > >>>
> > > >>>
> > > >>>
> > >  On 1/20/16, 1:48 AM, "Simon MacDonald"
> > >  
> > > >>> wrote:
> > > >>>
> > >  Yup, that was exactly what I was thinking. Check in see if
> > >  we've made progress on what we talked about last time.
> > > 
> > > 
> > >  Simon Mac Donald
> > > 
> https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fhi.
> > >  im%2fsimonmacdonald&data=01%7c01%7crsalva%40microsoft.com%7c8e6
> > >  fb72
> > >  8c7b348a9bc9908d365776f95%7c72f988bf86f141af91ab2d7cd011db47%7c
> > >  1&sd ata=WoSAD1sa

[GitHub] cordova-plugin-inappbrowser pull request: CB-3360: Set custom inap...

2016-04-18 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-inappbrowser/pull/94#issuecomment-211515374
  
This has been merged already. A plugin release is pending: 
https://github.com/apache/cordova-plugin-inappbrowser/commit/98b63cc37e49466acc9b6b7f027c073fa5313e97

@cjpearson you can close this PR now.


---
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-inappbrowser pull request: CB-3360: Set custom inap...

2016-04-18 Thread Quelu
Github user Quelu commented on the pull request:


https://github.com/apache/cordova-plugin-inappbrowser/pull/94#issuecomment-211519224
  
My bad ! Thank you for the information !


---
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



[CI] Status for 04/18/16

2016-04-18 Thread Mefire O .
Hey everyone,



Here is the CI status for last week.



Build Status (Pass/Total):

430 / 430 - Android on Windows

430 / 430 - Android on OS X

408 / 421 - iOS (CI failing, see CB-10475)

421 / 421 - WP 8.1

421 / 421 - Windows Store 8.1



JIRAs that need attention:

- CB-10475: iOS Contacts Permission Modal causes test failure - Omar Mefire

- CB-11016: Flaky Android emulator on Windows CI - Richard Knoll

- CB-11050: Flaky XHR tests on Windows Phone 8.1 - Raghav Katyal

- CB-11057: Flaky file transfer tests (on all platforms) - Sarangan Rajamanickam



Next build sheriff: Raghav Katyal



Thanks,

Omar Mefire



[GitHub] cordova-plugin-media pull request: Protect setVolume call in case ...

2016-04-18 Thread omefire
Github user omefire commented on the pull request:


https://github.com/apache/cordova-plugin-media/pull/93#issuecomment-211529912
  
Should you instead use the ```readyPlayer(...)``` followed by seeking to 
the end of the file in this case ? It seems like a pattern used by 
```startPlaying(...)``` and ```seekToPlaying(...)```.


---
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-mobile-spec pull request: CB-11098 Allowed media from both...

2016-04-18 Thread alsorokin
GitHub user alsorokin opened a pull request:

https://github.com/apache/cordova-mobile-spec/pull/139

CB-11098 Allowed media from both http and https in CSP tag

https://issues.apache.org/jira/browse/CB-11098

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

$ git pull https://github.com/MSOpenTech/cordova-mobile-spec CB-11098

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

https://github.com/apache/cordova-mobile-spec/pull/139.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 #139


commit a6b53c89f31be7a8a69f35693dc5cf8a54fe4b90
Author: Alexander Sorokin 
Date:   2016-04-18T19:18:46Z

CB-11098 Allowed media from both http and https in CSP tag




---
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-11104: Integrate Algolia Search to c...

2016-04-18 Thread sarangan12
GitHub user sarangan12 opened a pull request:

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

CB-11104: Integrate Algolia Search to cordova docs

@nikhilkh @dblotsky @riknoll @rakatyal Could you please review this PR?

Note: Please do NOT merge this PR now. 

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

$ git pull https://github.com/sarangan12/cordova-docs 
AlgoilaSearchIntegration

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

https://github.com/apache/cordova-docs/pull/581.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 #581


commit e7590ad0539235be495c4613e0c5aabda34e
Author: Sarangan Rajamanickam 
Date:   2016-04-18T19:19:05Z

CB-11104: Integrate Algolia Search to cordova docs




---
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-mobile-spec pull request: CB-11098 Allowed media from both...

2016-04-18 Thread riknoll
Github user riknoll commented on the pull request:


https://github.com/apache/cordova-mobile-spec/pull/139#issuecomment-211554359
  
LGTM


---
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-paramedic pull request: Code changes for Collecting Device...

2016-04-18 Thread omefire
Github user omefire commented on a diff in the pull request:

https://github.com/apache/cordova-paramedic/pull/4#discussion_r60128184
  
--- Diff: lib/ParamedicPermissions.js ---
@@ -0,0 +1,60 @@
+#!/usr/bin/env node
+
+/* jshint node: true */
+var path= require('path');
+var fs  = require('fs');
+var shelljs  = require("shelljs");
+var logger  = require('./utils').logger;
+
+function ParamedicPermissions(appName, simulatorsFolder, dbPath) {
+   this.appName = appName;
+   this.simulatorsFolder = simulatorsFolder;
+   this.dbPath = dbPath;
--- End diff --

nitpick: 'dbPath' -> 'tccDbPath'


---
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-11104: Integrate Algolia Search to c...

2016-04-18 Thread rakatyal
Github user rakatyal commented on the pull request:

https://github.com/apache/cordova-docs/pull/581#issuecomment-211563103
  
LGTM.


---
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: [VOTE] Plugins Release April 15, 2016

2016-04-18 Thread Shazron
I vote +1.

* Verified signatures and hashes
* Verified tags


On Fri, Apr 15, 2016 at 2:58 PM, Steven Gill  wrote:

> Please review and vote on the release of this plugins release
> by replying to this email (and keep discussion on the DISCUSS thread)
>
> Release issue: https://issues.apache.org/jira/browse/CB-11091
>
> The plugins have been published to
> dist/dev:https://dist.apache.org/repos/dist/dev/cordova/CB-11091/
>
> The packages were published from their corresponding git tags:
> cordova-plugin-battery-status: 1.1.2 (f33cfa1216)
> cordova-plugin-camera: 2.2.0 (d124e03cb9)
> cordova-plugin-console: 1.0.3 (450752ba59)
> cordova-plugin-contacts: 2.1.0 (b50b9fc625)
> cordova-plugin-device: 1.1.2 (c18039bf27)
> cordova-plugin-device-motion: 1.2.1 (6e6cb6ad38)
> cordova-plugin-device-orientation: 1.0.3 (3b8d616628)
> cordova-plugin-dialogs: 1.2.1 (523de37e5b)
> cordova-plugin-file: 4.2.0 (d9b90461f1)
> cordova-plugin-file-transfer: 1.5.1 (a4031db700)
> cordova-plugin-geolocation: 2.2.0 (936c9435aa)
> cordova-plugin-inappbrowser: 1.4.0 (56bb457c5e)
> cordova-plugin-media: 2.3.0 (79f623264e)
> cordova-plugin-media-capture: 1.3.0 (a6ab97dff5)
> cordova-plugin-network-information: 1.2.1 (09b46b2c61)
> cordova-plugin-splashscreen: 3.2.2 (14061d1999)
> cordova-plugin-statusbar: 2.1.3 (ef7266874a)
> cordova-plugin-test-framework: 1.1.2 (12b4e16ba8)
> cordova-plugin-vibration: 2.1.1 (5910bdc808)
> cordova-plugin-whitelist: 1.2.2 (876e3b2433)
> cordova-plugin-wkwebview-engine: 1.0.3 (ac8bc9968b)
> cordova-plugin-compat: 1.0.0 (e9e3f38caf)
>
> Upon a successful vote I will upload the archives to dist/, upload
> them to npm, and post the corresponding blog post.
>
> Voting guidelines:
> https://github.com/apache/cordova-coho/blob/master/docs/release-voting.md
>
> Voting will go on for a minimum of 48 hours.
>
> I vote +1:
> * Ran coho audit-license-headers over the relevant repos
> * Ran coho check-license to ensure all dependencies and
> subdependencies have Apache-compatible licenses
> * Ran mobile spec on android (browserify and non browserify)
> * CI looked good
>


[GitHub] cordova-lib pull request: CB-10981 Remove cordova-common from bund...

2016-04-18 Thread stevengill
Github user stevengill commented on the pull request:

https://github.com/apache/cordova-lib/pull/419#issuecomment-211626986
  
+1


---
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-11104: Integrate Algolia Search to c...

2016-04-18 Thread nikhilkh
Github user nikhilkh commented on the pull request:

https://github.com/apache/cordova-docs/pull/581#issuecomment-211647212
  
Let's merge this only after indexing is complete


---
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: Does Cordova have a problem making developers happy?

2016-04-18 Thread Shazron
Please see my comments on Robert's document, do chime in:
https://github.com/cordova/cordova-discuss/pull/36

On Tuesday, March 29, 2016, Robert Posener  wrote:

> I did, but as my reply said, it wasn't showing up.
>
> Regards
> *Rob Posener*
> 0419 012 627
>
> On 30 March 2016 at 05:01, Jesse >
> wrote:
>
> > Good observations Julio, we should definitely talk to stack-overflow
> about
> > the merged tags.
> >
> > Robert, you didn't send the pull request back to cordova/cordova-discuss,
> > so no one could see it.  I have done so here:
> > https://github.com/cordova/cordova-discuss/pull/35
> >
> >
> >
> >
> > @purplecabbage
> > risingj.com
> >
> > On Tue, Mar 29, 2016 at 4:29 AM, julio cesar sanchez <
> > jcesarmob...@gmail.com 
> > > wrote:
> >
> > > Joe said:
> > >
> > > "I also find it interesting that people are hating on Cordova, and not
> > > PhoneGap, Ionic, Taco or the other distributions."
> > >
> > > It's curious that Ionic has it's own tag, with about the same number of
> > > questions that Cordova tag, but it's not on any of the lists (and it's
> > not
> > > because all Ionic questios are tagged with Cordova tag too, in fact,
> most
> > > of them aren't)
> > >
> > > But when people is using Phonegap and add the Phonegap tag to the
> > question,
> > > stack overflow replaces it with a Cordova tag because they decided long
> > > time ago that they were synonyms, so you can't use Phonegap tag and we
> > > can't be sure if they are using Cordova or Phonegap unless they tell it
> > on
> > > the question.
> > >
> > > I think that's a mistake by stack overflow part, because people using
> > > phonegap doesn't follow same workflow that people using cordova as
> > Phonegap
> > > docs are different, they mostly use the developer app to test, and
> > phonegap
> > > users might have different problems.
> > >
> > > There are a lot of questions about  "- 3rd party plugin isn't
> > > working on my app", and the problem is they are using the phonegap
> > > developer app. But they don't mention that they are using phonegap,
> they
> > > just add the phonegap tag, and stack overflow replaces it with a
> Cordova
> > > tag. They don't mention that they are using the Phonegap developer app
> > > neither because they think that's the way of running Phonegap apps. I
> see
> > > at least one of those everyday on stack overflow or some other forums.
> > >
> > > I've filed a few issues on the phonegap docs page so they can make
> > clearer
> > > to users that when using the phonegap developer app they are not really
> > > running their app, and they have some issues open to list the developer
> > app
> > > limitations. Once they are addressed, maybe the developers are a bit
> > > happier.
> > >
> > > But I'm not sure what to do about the stack overflow synonym, should we
> > > tell them to remove the synonym so people can use Phonegap and Cordova
> as
> > > different tags?
> > >
> > >
> > >
> > >
> > > 2016-03-29 8:23 GMT+02:00 Robert Posener  >:
> > >
> > > > I think I have created a discussion, but it is not showing up... yet
> > > > another frustrations!
> > > >
> > > > Rob
> > > >
> > > > Regards
> > > > *Rob Posener*
> > > > 0419 012 627
> > > >
> > > > On 29 March 2016 at 16:48, Parashuram N  >
> > wrote:
> > > >
> > > > > I am not sure if everyone got the attachment. Rob, can I request
> you
> > > to
> > > > > create an issue on https://github.com/cordova/cordova-discuss so
> > that
> > > we
> > > > > could start following up on specific issues there ?
> > > > >
> > > > > From: Robert Posener >
> > > > > Reply-To: "dev@cordova.apache.org " <
> dev@cordova.apache.org >
> > > > > Date: Monday, March 28, 2016 at 10:08 PM
> > > > > To: "dev@cordova.apache.org " <
> dev@cordova.apache.org >
> > > > > Subject: Re: Does Cordova have a problem making developers happy?
> > > > >
> > > > > Gerday all,
> > > > > Because of the serious nature of this thread, I have produced a
> > 6-page
> > > > > contribution of issues together with recommendations for fixing
> them
> > in
> > > > the
> > > > > attachment to this email.
> > > > >
> > > > > Regards
> > > > >
> > > > > Rob Posener
> > > > >
> > > > > Regards
> > > > > Rob Posener
> > > > > 0419 012 627
> > > > >
> > > > > On 19 March 2016 at 08:31, Joe Bowser   > > > > bows...@gmail.com >> wrote:
> > > > > I don't entirely agree with this, since usually we do respond.  We
> > > don't
> > > > > just accept things that get thrown at us, which I think is the
> > > > expectation.
> > > > >
> > > > > I think we need to make sure we come to some resolution and
> actually
> > > > solve
> > > > > the problem in a timely manner.  We've had both extremes of
> > discussing
> > > a
> > > > > problem to death and cowboy coding, and neither extreme works well.
> > > > >
> > > > > As for getting there, I have no idea.  Any thoughts?
> > > > >
> > > > > On Fri, Mar 18, 2016, 2:23 PM Raghav Katyal <
> rakat...@microsoft.com 
> > > > > > wrote:
> > > > >

[GitHub] cordova-lib pull request: CB-10981 Remove cordova-common from bund...

2016-04-18 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-lib/pull/419


---
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