Nightly build #461 for cordova has succeeded!

2017-08-21 Thread Apache Jenkins Server
Nightly build #461 for cordova has succeeded!
The latest nightly has been published and you can try it out with 'npm i -g 
cordova@nightly'

For details check build console at 
https://builds.apache.org/job/cordova-nightly/461/consoleFull

-
Jenkins for Apache Cordova

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

[GitHub] cordova-docs issue #719: CB-13076,CB-13068 : Removed references of cordova d...

2017-08-21 Thread stevengill
Github user stevengill commented on the issue:

https://github.com/apache/cordova-docs/pull/719
  
hmm, @filmaj screen shot makes it seem like he is testing on dev and not on 
7.x. Maybe there are other references that still need to be removed. 


---
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 issue #719: CB-13076,CB-13068 : Removed references of cordova d...

2017-08-21 Thread maverickmishra
Github user maverickmishra commented on the issue:

https://github.com/apache/cordova-docs/pull/719
  
I updated the plugin references from the latest `dev` version only. When 
the updated `dev` version is merged into 7.x, this error should get fixed.


---
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 issue #37: CB-10376, CB-12037: (ios) Fix bug...

2017-08-21 Thread onderceylan
Github user onderceylan commented on the issue:

https://github.com/apache/cordova-plugin-wkwebview-engine/pull/37
  
I just created a class catalog as a cordova plugin to enable focus on 
WKWebView. You can install it from 
https://www.npmjs.com/package/cordova-plugin-wkwebview-inputfocusfix.


---
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 #238: added cookies support for And...

2017-08-21 Thread denisx304
GitHub user denisx304 opened a pull request:

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

added cookies support for Android



### Platforms affected
Android

### What does this PR do?
Allows the `cordova.InAppBrowser.open()` function to receive another 
parameter, `cookies`, an object described like `name: value`. It sets then 
those cookies through Android native code.

### What testing has been done on this change?
`cordova.InAppBrowser.open(page, "_self", null, { "cookieName": 
"cookieValue" });`
The cookies were verified on the server-side.

### Checklist
- [ ] [Reported an issue](http://cordova.apache.org/contribute/issues.html) 
in the JIRA database
- [ ] Commit message follows the format: "CB-3232: (android) Fix bug with 
resolving file paths", where CB- is the JIRA ID & "android" is the platform 
affected.
- [ ] Added automated test coverage as appropriate for this change.


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

$ git pull https://github.com/denisx304/cordova-plugin-inappbrowser master

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

https://github.com/apache/cordova-plugin-inappbrowser/pull/238.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 #238


commit 9a6f4c4dc5164073ac183eba2954e732de92519b
Author: Denis Visan 
Date:   2017-08-21T16:40:04Z

added cookies support for Android




---
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-file-transfer pull request #187: CB-12809: Google Play Blocke...

2017-08-21 Thread macdonst
GitHub user macdonst opened a pull request:

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

CB-12809: Google Play Blocker: Unsafe SSL TrustManager Defined

### Platforms affected

Android

### What does this PR do?

It removes the `trustAllHosts` parameter from the Android FileTransfer 
code. Google will start [blocking apps from the 
PlayStore](https://support.google.com/faqs/answer/6346016) that include unsafe 
implementations of the TrustManager.

### What testing has been done on this change?

I've run a number of successful manual download tests after the change 
where the parameters are:

```
download(uri, fileURL, win, fail, false, options);
download(uri, fileURL, win, fail, true, options);
download(uri, fileURL, win, fail, options);
download(uri, fileURL, win, fail);
```

I ran the automatic test coverage and before my changes 25 tests failed and 
2 tests were pending. After my changes 25 tests failed and 2 tests were pending.

### Checklist
- [x] [Reported an issue](http://cordova.apache.org/contribute/issues.html) 
in the JIRA database
- [x] Commit message follows the format: "CB-3232: (android) Fix bug with 
resolving file paths", where CB- is the JIRA ID & "android" is the platform 
affected.
- [ ] Added automated test coverage as appropriate for this change.


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

$ git pull https://github.com/macdonst/cordova-plugin-file-transfer master

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

https://github.com/apache/cordova-plugin-file-transfer/pull/187.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 #187


commit 751d229d0fdc9c36b63979dd66754a212a020c9a
Author: Simon MacDonald 
Date:   2017-08-21T15:42:25Z

CB-12809: Google Play Blocker: Unsafe SSL TrustManager Defined




---
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 issue #221: CB-12834: (android) Fix bug when ope...

2017-08-21 Thread RafaelKr
Github user RafaelKr commented on the issue:

https://github.com/apache/cordova-plugin-inappbrowser/pull/221
  
Hi @adirel, of course this `let` must be changed to `var`. Thank you!


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