[jira] [Updated] (CB-12615) cordova requirements command different from android stock command

2017-03-28 Thread huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-12615?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

huang updated CB-12615:
---
Description: 

this bug will cause cordova unable to find target enviroment because of the 
command error that conflicts with stock android platform.

stock android command is 
'cordova requirements check Android target '
while the current command is
return tryCommand('android list targets --compact', msg)

apparently there is an extra 's' at the back of target.

use cordova create project add android platform, in 
platforms\android\cordova\lib\check_reqs.js 254 line, tryCommand('android list 
targets --compact', msg).

in Android.bat ,This Command is android list target --compact 

  was:
stock android command is 
'cordova requirements check Android target '
while the current command is
return tryCommand('android list targets --compact', msg)

apparently there is an extra 's' at the back of target.


> cordova requirements command different from android stock command
> -
>
> Key: CB-12615
> URL: https://issues.apache.org/jira/browse/CB-12615
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 6.5.0
> Environment: Windows 10
>Reporter: huang
>
> this bug will cause cordova unable to find target enviroment because of the 
> command error that conflicts with stock android platform.
> stock android command is 
> 'cordova requirements check Android target '
> while the current command is
> return tryCommand('android list targets --compact', msg)
> apparently there is an extra 's' at the back of target.
> use cordova create project add android platform, in 
> platforms\android\cordova\lib\check_reqs.js 254 line, tryCommand('android 
> list targets --compact', msg).
> in Android.bat ,This Command is android list target --compact 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12615) cordova requirements command different from android stock command

2017-03-28 Thread huang (JIRA)
huang created CB-12615:
--

 Summary: cordova requirements command different from android stock 
command
 Key: CB-12615
 URL: https://issues.apache.org/jira/browse/CB-12615
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 6.5.0
 Environment: Windows 10
Reporter: huang


stock android command is 
'cordova requirements check Android target '
while the current command is
return tryCommand('android list targets --compact', msg)

apparently there is an extra 's' at the back of target.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12612) Remove references to amazon-fireos

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12612?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15946274#comment-15946274
 ] 

ASF GitHub Bot commented on CB-12612:
-

GitHub user audreyso opened a pull request:

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

CB-12612 : removing amazon-fireos code

Not ready for review yet :)



### Platforms affected


### What does this PR do?
Removing amazon-fireos code

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


### 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.
- [X] 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/audreyso/cordova-lib CB-12612

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

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


commit 9a7105f09c44c67a6e6ec058424b7684cc7a33f7
Author: Audrey So 
Date:   2017-03-28T22:41:59Z

CB-12612 : removing old amazon-fireos code




> Remove references to amazon-fireos
> --
>
> Key: CB-12612
> URL: https://issues.apache.org/jira/browse/CB-12612
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-lib
>Reporter: Audrey So
>Priority: Minor
>  Labels: cordova7
> Fix For: cordova7
>
>
> Remove references to amazon-fireos in cordova-lib



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-11868) inappbrowser overrides window.open and doesn't follow allow-intent and allow-navigation restrictions

2017-03-28 Thread Jesse MacFadyen (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-11868?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15946234#comment-15946234
 ] 

Jesse MacFadyen commented on CB-11868:
--

The allow intent + allow navigation tags define what can be loaded by the 
applications root webview.

InAppBrowser can and SHOULD be allowed to open any site on the internet, and 
able to do it safely without affecting the rest of your application.  This is 
the entire goal of InAppBrowser.

If you would like to limit the pages that the IAB can go to, just watch for the 
loadstart event, and if you don't approve just close it.

{code}
var ref = cordova.InAppBrowser.open('http://apache.org', '_blank', 
'location=yes');
ref.addEventListener('loadstart', function(event) { alert(event.url); });
{code}

> inappbrowser overrides window.open and doesn't follow allow-intent and 
> allow-navigation restrictions
> 
>
> Key: CB-11868
> URL: https://issues.apache.org/jira/browse/CB-11868
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
>Affects Versions: 3.5.0
> Environment: android
>Reporter: Mladen Petrovic
>Priority: Critical
>  Labels: security
>
> InappBrowser doesn't follow allow-intent and allow-navigation meta tags only 
> in Android.
> It also overrides default window.open(uri, '_self');
> So when i allow only some urls to be allowed like this:
> http://google.com/"; />
> http://google.com"; />
> I can successfully open yahoo.com via window.open('yahoo.com', '_self');
> But if i remove inappBrowser plugin they it follow restriction and will only 
> open google.com
> This happens only in Android, not in iOS.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-11868) inappbrowser overrides window.open and doesn't follow allow-intent and allow-navigation restrictions

2017-03-28 Thread Jesse MacFadyen (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-11868?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jesse MacFadyen resolved CB-11868.
--
Resolution: Not A Problem

> inappbrowser overrides window.open and doesn't follow allow-intent and 
> allow-navigation restrictions
> 
>
> Key: CB-11868
> URL: https://issues.apache.org/jira/browse/CB-11868
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
>Affects Versions: 3.5.0
> Environment: android
>Reporter: Mladen Petrovic
>Priority: Critical
>  Labels: security
>
> InappBrowser doesn't follow allow-intent and allow-navigation meta tags only 
> in Android.
> It also overrides default window.open(uri, '_self');
> So when i allow only some urls to be allowed like this:
> http://google.com/"; />
> http://google.com"; />
> I can successfully open yahoo.com via window.open('yahoo.com', '_self');
> But if i remove inappBrowser plugin they it follow restriction and will only 
> open google.com
> This happens only in Android, not in iOS.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12591) Update cordova docs for cordova@7 release

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12591?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15946192#comment-15946192
 ] 

ASF GitHub Bot commented on CB-12591:
-

GitHub user audreyso opened a pull request:

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

CB-12591 : Updating cordova docs to reflect cordova@7 changes



### Platforms affected


### What does this PR do?

Updates cordova docs to reflect cordova@7 changes.

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


### 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.
- [X] 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/audreyso/cordova-docs CB-12591

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

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


commit 7d814925f2fd3607bcffed0f4d003df2e5f8a99b
Author: Audrey So 
Date:   2017-03-23T14:48:38Z

CB-12591 : updated info about save and package.json

commit 631711a8f853c03c75f2e5bd4fe93c41f7ae
Author: Audrey So 
Date:   2017-03-23T17:37:55Z

CB-12591 : updated add/remove/save platform and plugin info




> Update cordova docs for cordova@7 release
> -
>
> Key: CB-12591
> URL: https://issues.apache.org/jira/browse/CB-12591
> Project: Apache Cordova
>  Issue Type: Task
>  Components: cordova-cli, cordova-docs
>Affects Versions: cordova7
>Reporter: Audrey So
>  Labels: cordova7
> Fix For: cordova7
>
>
> Update cordova docs for cordova@7 release. Create a new section for the 
> config command. Also, include information about new features including, 
> autosave and autofetch work and package.json.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12050) Add support for integrating Cordova for iOS with Carthage

2017-03-28 Thread Stephen Goldberg (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12050?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15946168#comment-15946168
 ] 

Stephen Goldberg commented on CB-12050:
---

When/If Apache starts attaching the Cordova.framework to tagged releases, 
projects will have the option of using the pre-compiled binary. However, for 
source consumption, we might need to utilize a different name than .xcworkspace 
for the .xcworkspace template file (the output of course will still be an 
.xcworkspace).

> Add support for integrating Cordova for iOS with Carthage
> -
>
> Key: CB-12050
> URL: https://issues.apache.org/jira/browse/CB-12050
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: iOS
>Reporter: Dan Ursu
>Assignee: Shazron Abdullah
> Fix For: cordova-ios@4.4.0
>
>
> Currently the documentation doesn't clearly state how one would integrate the 
> cordova framework into an iOS app using carthage. It would be nice if there 
> would be support. Same with cocoapods.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12609) Cordova-Android Platform Release March 27, 2017

2017-03-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12609?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15946132#comment-15946132
 ] 

ASF subversion and git services commented on CB-12609:
--

Commit 6d084428a8205d4a60462e047b306bbaf2f76317 in cordova-android's branch 
refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=6d08442 ]

CB-12609 Updated RELEASENOTES and Version for release 6.2.0


> Cordova-Android Platform Release March 27, 2017
> ---
>
> Key: CB-12609
> URL: https://issues.apache.org/jira/browse/CB-12609
> Project: Apache Cordova
>  Issue Type: Task
>Reporter: Steve Gill
>Assignee: Steve Gill
>
> "Following steps at 
> https://github.com/apache/cordova-coho/blob/master/docs/platforms-release-process.md";



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12609) Cordova-Android Platform Release March 27, 2017

2017-03-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12609?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15946054#comment-15946054
 ] 

ASF subversion and git services commented on CB-12609:
--

Commit 312efc3878bd505a4a7f70b65429076df4e4ae4b in cordova-android's branch 
refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=312efc3 ]

CB-12609: added missing license headers


> Cordova-Android Platform Release March 27, 2017
> ---
>
> Key: CB-12609
> URL: https://issues.apache.org/jira/browse/CB-12609
> Project: Apache Cordova
>  Issue Type: Task
>Reporter: Steve Gill
>Assignee: Steve Gill
>
> "Following steps at 
> https://github.com/apache/cordova-coho/blob/master/docs/platforms-release-process.md";



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Closed] (CB-12131) Error native camera 100 android

2017-03-28 Thread jcesarmobile (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-12131?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

jcesarmobile closed CB-12131.
-
Resolution: Incomplete

No more information was provided after asking for it, closing as incomplete.

Feel free to reopen if you can provide more information

> Error native camera 100 android
> ---
>
> Key: CB-12131
> URL: https://issues.apache.org/jira/browse/CB-12131
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Ionic
> Environment: Android
>Reporter: Rodolfo Freire
> Fix For: 6.4.0
>
>
> Error native camera 100 android
> Plugin cordova-plugin-media-capture
> >cordova -v
> 6.4.0
> >node -v
> v6.9.1
> >ionic -v
> 2.1.4
> >npm -v
> 3.10.8



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12614) Add headers to all JUnit tests

2017-03-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12614?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945994#comment-15945994
 ] 

ASF subversion and git services commented on CB-12614:
--

Commit 301faebfcc95d375b09c2d77e48a7a6d597feb0c in cordova-android's branch 
refs/heads/master from [~bowserj]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=301faeb ]

CB-12614: Adding headers to tests


> Add headers to all JUnit tests
> --
>
> Key: CB-12614
> URL: https://issues.apache.org/jira/browse/CB-12614
> Project: Apache Cordova
>  Issue Type: Task
>Reporter: Joe Bowser
>Assignee: Joe Bowser
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12614) Add headers to all JUnit tests

2017-03-28 Thread Joe Bowser (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-12614?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joe Bowser resolved CB-12614.
-
Resolution: Fixed

> Add headers to all JUnit tests
> --
>
> Key: CB-12614
> URL: https://issues.apache.org/jira/browse/CB-12614
> Project: Apache Cordova
>  Issue Type: Task
>Reporter: Joe Bowser
>Assignee: Joe Bowser
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12614) Add headers to all JUnit tests

2017-03-28 Thread Joe Bowser (JIRA)
Joe Bowser created CB-12614:
---

 Summary: Add headers to all JUnit tests
 Key: CB-12614
 URL: https://issues.apache.org/jira/browse/CB-12614
 Project: Apache Cordova
  Issue Type: Task
Reporter: Joe Bowser
Assignee: Joe Bowser






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12442) npm install -g cordova fails

2017-03-28 Thread Bill Morgan (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-12442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bill Morgan updated CB-12442:
-

I thought I reported this as fixed.

bill





> npm install -g cordova  fails
> -
>
> Key: CB-12442
> URL: https://issues.apache.org/jira/browse/CB-12442
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
> Environment: windows 7 home premium
>Reporter: Bill Morgan
>Priority: Blocker
> Attachments: request
>
>
> npm install -g cordova fails on Windows...
> recently installed nodejs (upgrade)
> npm ERR! Windows_NT 6.1.7601
> npm ERR! argv "C:\\Program Files (x86)\\nodejs\\node.exe" "C:\\Program Files 
> (x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "-g" "cordova"
> npm ERR! node v6.9.5
> npm ERR! npm  v3.10.10
> npm ERR! path 
> C:\Users\Bill\AppData\Roaming\npm\node_modules\.staging\abbrev-8e8eafc3
> npm ERR! code ENOENT
> npm ERR! errno -4058
> npm ERR! syscall rename



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12442) npm install -g cordova fails

2017-03-28 Thread Jesse MacFadyen (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-12442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jesse MacFadyen resolved CB-12442.
--
Resolution: Not A Problem

I am assuming this is working now.

> npm install -g cordova  fails
> -
>
> Key: CB-12442
> URL: https://issues.apache.org/jira/browse/CB-12442
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
> Environment: windows 7 home premium
>Reporter: Bill Morgan
>Priority: Blocker
> Attachments: request
>
>
> npm install -g cordova fails on Windows...
> recently installed nodejs (upgrade)
> npm ERR! Windows_NT 6.1.7601
> npm ERR! argv "C:\\Program Files (x86)\\nodejs\\node.exe" "C:\\Program Files 
> (x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "-g" "cordova"
> npm ERR! node v6.9.5
> npm ERR! npm  v3.10.10
> npm ERR! path 
> C:\Users\Bill\AppData\Roaming\npm\node_modules\.staging\abbrev-8e8eafc3
> npm ERR! code ENOENT
> npm ERR! errno -4058
> npm ERR! syscall rename



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Assigned] (CB-11189) Deprecation and other Warnings with XCode 7.3 and InAppBrowser 1.4.0

2017-03-28 Thread Jesse MacFadyen (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-11189?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jesse MacFadyen reassigned CB-11189:


Assignee: (was: sterling gerritz)

> Deprecation and other Warnings with XCode 7.3 and InAppBrowser 1.4.0
> 
>
> Key: CB-11189
> URL: https://issues.apache.org/jira/browse/CB-11189
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
>Affects Versions: 1.4.0
> Environment: XCode 7.3
>Reporter: Danilo Cicognani
>Priority: Critical
>  Labels: easyfix, ios, triaged
>
> After adding plugin InAppBrowser XCode 7.3 repors some warning.
> To test I created a test app:
> cordova create testPlugin com.example.testplugin testPlugin
> cd testPlugin
> cordova platform add ios
> cordova plugin add cordova-plugin-inappbrowser
> Then I opened XCode and run the App. I got these warnings:
> 'UIBarButtonItemStyleBordered' is deprecated: first deprecated in iOS 8.0 - 
> Use UIBarButtonItemStylePlain when minimum deployment target is iOS7 or later.
> Null passed to a callee that requires a non-null argument
> Conflicting return type in implementation of 'supported interface 
> orientations': 'UIInterfaceOrientationMask' (aka 'enum 
> UIInterfaceOrientationMask') vs 'NSUInteger' (aka 'unsigned int')



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-11423) Web view shrinks after locking screen orientation

2017-03-28 Thread Jesse MacFadyen (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-11423?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jesse MacFadyen updated CB-11423:
-
Component/s: Ionic

> Web view shrinks after locking screen orientation
> -
>
> Key: CB-11423
> URL: https://issues.apache.org/jira/browse/CB-11423
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Ionic, Plugin Screen Orientation
>Affects Versions: 1.4.2
> Environment: Using:
> - Cordova CLI 6.2.0
> - cordova-ios 4.1.1
> - Xcode 7.3
> - OSX 10.11.5
> Best reproduced on an iOS simulator with iPhone 6s Plus and iOS 9.3.
>Reporter: Rafael Barriuso
>Assignee: Tony Homer
> Attachments: cb-11423-joe1.png, cb-11423-joe2.png
>
>
> Since version 1.4.2 "screen.lockOrientation" works on iOS 9, but for some 
> reason, in some phones the dimensions of the web view are wrong after 
> changing to the new orientation.
> Before locking:
> !https://www.dropbox.com/s/t2jcqqmg1hni22t/Sim-screenshot2.png?dl=1!
> After locking:
> !https://www.dropbox.com/s/p64324riwqzepzz/Sim-screenshot1.png?dl=1!
> Steps to reproduce:
> 1) Prepare a cordova app including cordova-plugin-screen-orientation.
> 2) Run the application on a Xcode simulator for iPhone 6s Plus and iOS 9.3.
> 3) Rotate the simulator to the left (menu -> Hardware -> Rotate left).
> 4) Open the Safari web inspector connected to the app running on the 
> simulator.
> 5) In the console, run: window.screen.lockOrientation("portrait-primary")
> 6) The width of the resulting "" is shrink, as reported by the Safari 
> web inspector (e.g. in my case to 92px whereas it should be 414px).



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12613) Camera encoding type not respected when destination type is NATIVE_URI

2017-03-28 Thread John Czaplewski (JIRA)
John Czaplewski created CB-12613:


 Summary: Camera encoding type not respected when destination type 
is NATIVE_URI
 Key: CB-12613
 URL: https://issues.apache.org/jira/browse/CB-12613
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
 Environment: iOS 10+
Reporter: John Czaplewski


When a png image is selected using the method `getPicture` on iOS with the 
destination encoding type set to JPEG, a png image is returned. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12612) Remove references to amazon-fireos

2017-03-28 Thread Audrey So (JIRA)
Audrey So created CB-12612:
--

 Summary: Remove references to amazon-fireos
 Key: CB-12612
 URL: https://issues.apache.org/jira/browse/CB-12612
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-lib
Reporter: Audrey So
Priority: Minor
 Fix For: cordova7


Remove references to amazon-fireos in cordova-lib



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12612) Remove references to amazon-fireos

2017-03-28 Thread Audrey So (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-12612?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Audrey So updated CB-12612:
---
Issue Type: Improvement  (was: Bug)

> Remove references to amazon-fireos
> --
>
> Key: CB-12612
> URL: https://issues.apache.org/jira/browse/CB-12612
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-lib
>Reporter: Audrey So
>Priority: Minor
>  Labels: cordova7
> Fix For: cordova7
>
>
> Remove references to amazon-fireos in cordova-lib



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12425) Auto-create a package.json if it doesn't exist yet

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12425?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945638#comment-15945638
 ] 

ASF GitHub Bot commented on CB-12425:
-

Github user audreyso commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/521#discussion_r108492723
  
--- Diff: cordova-lib/src/cordova/restore-util.js ---
@@ -64,7 +64,25 @@ function installPlatformsFromConfigXML(platforms, opts) {
 // Combining arrays and checking duplicates.
 comboArray = pkgJsonPlatforms.slice();
 }
+
 engines = cfg.getEngines(projectHome);
+
+// TODO: CB-12592: Eventually refactor out to pacakge manager 
module.
+// If package.json doesn't exist, auto-create one.
+if (engines.length > 0 && !fs.existsSync(pkgJsonPath)) {
--- End diff --

Hmm same errors!


> Auto-create a package.json if it doesn't exist yet
> --
>
> Key: CB-12425
> URL: https://issues.apache.org/jira/browse/CB-12425
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: CordovaLib
>Affects Versions: cordova-7
>Reporter: Audrey So
>Assignee: Audrey So
>  Labels: cordova-7.0.0
>
> When restoring during cordova prepare, auto-create a package.json if it 
> doesn't exist yet.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12425) Auto-create a package.json if it doesn't exist yet

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12425?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945624#comment-15945624
 ] 

ASF GitHub Bot commented on CB-12425:
-

Github user stevengill commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/521#discussion_r108489174
  
--- Diff: cordova-lib/src/cordova/restore-util.js ---
@@ -64,7 +64,25 @@ function installPlatformsFromConfigXML(platforms, opts) {
 // Combining arrays and checking duplicates.
 comboArray = pkgJsonPlatforms.slice();
 }
+
 engines = cfg.getEngines(projectHome);
+
+// TODO: CB-12592: Eventually refactor out to pacakge manager 
module.
+// If package.json doesn't exist, auto-create one.
+if (engines.length > 0 && !fs.existsSync(pkgJsonPath)) {
--- End diff --

maybe try `(engines.length > 0 && pkgJson !== undefined)`


> Auto-create a package.json if it doesn't exist yet
> --
>
> Key: CB-12425
> URL: https://issues.apache.org/jira/browse/CB-12425
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: CordovaLib
>Affects Versions: cordova-7
>Reporter: Audrey So
>Assignee: Audrey So
>  Labels: cordova-7.0.0
>
> When restoring during cordova prepare, auto-create a package.json if it 
> doesn't exist yet.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12595) Android Studio Directory now contains version number, breaks gradle path finding.

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12595?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945605#comment-15945605
 ] 

ASF GitHub Bot commented on CB-12595:
-

Github user PierBover commented on the issue:

https://github.com/apache/cordova-android/pull/370
  
I still don't know what is it, but I've changed the Android platform to a 
previous version and still getting the same problem.

Sorry for the noise guys.


> Android Studio Directory now contains version number, breaks gradle path 
> finding.
> -
>
> Key: CB-12595
> URL: https://issues.apache.org/jira/browse/CB-12595
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: Joe Bowser
>Assignee: Joe Bowser
>Priority: Critical
>
> This directly related to the fix for CB-12524



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12425) Auto-create a package.json if it doesn't exist yet

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12425?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945599#comment-15945599
 ] 

ASF GitHub Bot commented on CB-12425:
-

Github user audreyso commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/521#discussion_r108485285
  
--- Diff: cordova-lib/src/cordova/restore-util.js ---
@@ -64,7 +64,25 @@ function installPlatformsFromConfigXML(platforms, opts) {
 // Combining arrays and checking duplicates.
 comboArray = pkgJsonPlatforms.slice();
 }
+
 engines = cfg.getEngines(projectHome);
+
+// TODO: CB-12592: Eventually refactor out to pacakge manager 
module.
+// If package.json doesn't exist, auto-create one.
+if (engines.length > 0 && !fs.existsSync(pkgJsonPath)) {
--- End diff --

Was able to remove the duplicated lines:
```if(fs.existsSync(pkgJsonPath)) {
pkgJson = require(pkgJsonPath);```

But if you update restore-util from:
```} else if (engines.length > 0 && !fs.existsSync(pkgJsonPath)) {```
to
```} else if (engines.length > 0 && pkgJson) {```
there will be many failures... will look into them


> Auto-create a package.json if it doesn't exist yet
> --
>
> Key: CB-12425
> URL: https://issues.apache.org/jira/browse/CB-12425
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: CordovaLib
>Affects Versions: cordova-7
>Reporter: Audrey So
>Assignee: Audrey So
>  Labels: cordova-7.0.0
>
> When restoring during cordova prepare, auto-create a package.json if it 
> doesn't exist yet.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Closed] (CB-12610) Error in util.js

2017-03-28 Thread Konstantin Vulsonov (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-12610?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Konstantin Vulsonov closed CB-12610.

Resolution: Invalid

> Error in util.js
> 
>
> Key: CB-12610
> URL: https://issues.apache.org/jira/browse/CB-12610
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: weinre
> Environment: nodejs usage
>Reporter: Konstantin Vulsonov
>Assignee: Patrick Mueller
>
> There are error in /lib/utils.js in 11 line
> `utils.Program = Program = path.basename(process.argv[1]);`
> must be
> `utils.Program = Program = path.basename(process.argv[0]);`
> Or the same in coffe scripts



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-5848) Support for Android expansion files

2017-03-28 Thread BeTop (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5848?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945427#comment-15945427
 ] 

BeTop commented on CB-5848:
---

Hello, How are you doing?
Today I got problem to play audio file of obb file.

It works 

But Media plugin is not working. so we need solution.

var url = 
"content://com.flinklearning.marshalladult.expansion/common/Languages/English/LoginHelp/help_team.mp3";

var my_media = new Media(url,
// success callback
function() {
console.log("playAudio():Audio Success");
},
// error callback
function(err) {
console.log("playAudio():Audio Error: ",  err);
}
);
// Play audio
my_media.play();

I got error code=1.



> Support for Android expansion files
> ---
>
> Key: CB-5848
> URL: https://issues.apache.org/jira/browse/CB-5848
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Android
>Affects Versions: 3.3.0
>Reporter: Valerio Santinelli
>Assignee: jcesarmobile
>Priority: Minor
>
> As you might already know, Android .APK files cannot exceed 50Mb if you want 
> to make them available on Google Play Store.
> For bigger apps, you can add one or more expansion files (.obb)
> The request would be to have Cordova automatically put the content of the www 
> folder into an obb file so that all the assets won't be bundled with the app 
> itself. 
> That way, even if the assets are huge, you can still publish on Google Play 
> Store.
> Right now there is no way to publish any app that exceeds 50Mb. I have seen 
> some OS projects trying to deal with this, but right now there's no working 
> solution.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12611) Support for Android expansion Audio file

2017-03-28 Thread BeTop (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12611?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945434#comment-15945434
 ] 

BeTop commented on CB-12611:


I installed xapkreader plugin correctly, so   tag works fine.
but when I tried to play with Media plugin, It returned error code 1.
so this should be solved.

> Support for Android expansion Audio file
> 
>
> Key: CB-12611
> URL: https://issues.apache.org/jira/browse/CB-12611
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 3.5.0
>Reporter: BeTop
>
> Hello, How are you doing?
> Today I got problem to play audio file of obb file.
> It works  src="content://com.flinklearning.marshalladult.expansion/common/Languages/English/LoginHelp/help_team.mp3">
> But Media plugin is not working. so we need solution.
> var url = 
> "content://com.flinklearning.marshalladult.expansion/common/Languages/English/LoginHelp/help_team.mp3";
> var my_media = new Media(url,
> // success callback
> function()
> { console.log("playAudio():Audio Success"); }
> ,
> // error callback
> function(err)
> { console.log("playAudio():Audio Error: ", err); }
> );
> // Play audio
> my_media.play();
> I got error code=1.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12611) Support for Android expansion Audio file

2017-03-28 Thread BeTop (JIRA)
BeTop created CB-12611:
--

 Summary: Support for Android expansion Audio file
 Key: CB-12611
 URL: https://issues.apache.org/jira/browse/CB-12611
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
Reporter: BeTop


Hello, How are you doing?
Today I got problem to play audio file of obb file.
It works 
But Media plugin is not working. so we need solution.
var url = 
"content://com.flinklearning.marshalladult.expansion/common/Languages/English/LoginHelp/help_team.mp3";
var my_media = new Media(url,
// success callback
function()
{ console.log("playAudio():Audio Success"); }
,
// error callback
function(err)
{ console.log("playAudio():Audio Error: ", err); }
);
// Play audio
my_media.play();
I got error code=1.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12040) insertCss API is not working in ionic-2 typescript

2017-03-28 Thread Max Lynch (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12040?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945342#comment-15945342
 ] 

Max Lynch commented on CB-12040:


If this is an issue related to ionic-native (I can't tell, but it looks like 
it), please file the issue here: https://github.com/driftyco/ionic-native


> insertCss API is not working in ionic-2 typescript
> --
>
> Key: CB-12040
> URL: https://issues.apache.org/jira/browse/CB-12040
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, Plugin InAppBrowser
> Environment: Ubuntu 14.04, Ionic-2 CLI 2.1.0, Ionic-2 framework 
> 2.0.0-rc.0
>Reporter: Vaibhav Parab
>
> I'm using `cordova-plugin-inappbrowser` in `IONIC-2` framework.
> When I install this plugin through CLI, the `inappbrowser.d.ts` file is 
> generated in node_modules.
> I imported the `InAppBrowser` from node_modules and used in my typescript 
> scripts where I want to open InAppBrowser.
> InAppBrowser is opened properly. After that I added `executeScript` and 
> `insertCss` API's using InAppBrowser's instance.
> like `let browser = new InAppBrowser('http://google.com', '_blank', 
> 'location=yes');`
> `browser.insertCss(.. here is my css code )`
> but this `insertCss` is not working.
> How can I make this work?
> Any help is appreciated.
> Thanks in advance.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12600) @ionic-native/contacts Cannot read property 'create' of undefined

2017-03-28 Thread Max Lynch (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945326#comment-15945326
 ] 

Max Lynch commented on CB-12600:


Please file an issue here: https://github.com/driftyco/ionic-native

The Cordova JIRA is not the appropriate place for issues related to the 
ionic-native project.

> @ionic-native/contacts Cannot read property 'create' of undefined
> -
>
> Key: CB-12600
> URL: https://issues.apache.org/jira/browse/CB-12600
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Michiel Vermeersch
>Assignee: Kerri Shotts
>  Labels: ionic
>
> Cannot read property 'create' of undefined
> when trying to:
> let c: Contact = this.contacts.create();
> contacts is declared in the constructor and included in providers under 
> app.module.ts



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12410) The Device on the ionic.org website differs from the repository.

2017-03-28 Thread Max Lynch (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12410?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945325#comment-15945325
 ] 

Max Lynch commented on CB-12410:


Please file an issue here: https://github.com/driftyco/ionic-native

The Cordova JIRA is not the appropriate place for issues related to the 
ionic-native project.

> The Device on the ionic.org website differs from the repository.
> 
>
> Key: CB-12410
> URL: https://issues.apache.org/jira/browse/CB-12410
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Device
>Affects Versions: 2.2.0
> Environment: MAC OSx
>Reporter: Ronald Kevin Burton
>Assignee: jcesarmobile
>  Labels: documentation, features
>
> The documentation at https://ionicframework.com/docs/v2/native/device/ 
> indicates that the properties of Device are static. But the repository 
> (https://github.com/apache/cordova-plugin-device) mentions a global variable 
> 'device'. First, there is a need to address the discrepancy. Second, when 
> developing an Ionic 2 application with TypeScript I am not sure how to 
> address the global variable and how to ensure that it has been populated. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-10893) Allow setting status bar color on Android splashscreen

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-10893?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945224#comment-15945224
 ] 

ASF GitHub Bot commented on CB-10893:
-

Github user cordova-qa commented on the issue:

https://github.com/apache/cordova-plugin-splashscreen/pull/124
  
Cordova CI Build has completed successfully.

**Commit** - 
[Link](https://github.com/apache/cordova-plugin-splashscreen/pull/124/commits/aa3fb6055941b9b57b54dc28cc97b9c14ffae643)
**Dashboard** - 
[Link](http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45/)

| Builder Name  | Console Output | Test Report | Device Logs  |
| :---: | :---:  |   :---: | :---:|
| [Windows 10  Store]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=windows-10-store/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=windows-10-store/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=windows-10-store/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=windows-10-store/artifact/)
 |
| [iOS 9.3]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=ios-9.3/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=ios-9.3/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=ios-9.3/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=ios-9.3/artifact/)
 |
| [iOS 10.0]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=ios-10.0/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=ios-10.0/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=ios-10.0/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=ios-10.0/artifact/)
 |
| [Android 4.4]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=android-4.4/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=android-4.4/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=android-4.4/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=android-4.4/artifact/)
 |
| [Android 5.1]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=android-5.1/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=android-5.1/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=android-5.1/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-splashscreen-pr/45//PLATFORM=android-5.1/artifact/)
 |
 



> Allow setting status bar color on Android splashscreen
> --
>
> Key: CB-10893
> URL: https://issues.apache.org/jira/browse/CB-10893
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin SplashScreen
> Environment: Android
>Reporter: Martin Buchalik
>
> When creating a custom Android theme, you can also set a status bar 
> background color.
> The splash screen doesn't seem to use the application's theme - the status 
> bar becomes black while displaying the splash screen image (no matter which 
> color I specify in android:colorPrimaryDark).
> Please add an option to set the status bar background color while the splash 
> screen image is displayed. Alternatively, inherit the application's status 
> bar settings.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-10893) Allow setting status bar color on Android splashscreen

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-10893?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15945199#comment-15945199
 ] 

ASF GitHub Bot commented on CB-10893:
-

Github user psbarrales commented on a diff in the pull request:


https://github.com/apache/cordova-plugin-splashscreen/pull/124#discussion_r108424985
  
--- Diff: src/android/SplashScreen.java ---
@@ -313,6 +315,22 @@ public void run() {
 
splashDialog.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
--- End diff --

Done, thanks!


> Allow setting status bar color on Android splashscreen
> --
>
> Key: CB-10893
> URL: https://issues.apache.org/jira/browse/CB-10893
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin SplashScreen
> Environment: Android
>Reporter: Martin Buchalik
>
> When creating a custom Android theme, you can also set a status bar 
> background color.
> The splash screen doesn't seem to use the application's theme - the status 
> bar becomes black while displaying the splash screen image (no matter which 
> color I specify in android:colorPrimaryDark).
> Please add an option to set the status bar background color while the splash 
> screen image is displayed. Alternatively, inherit the application's status 
> bar settings.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12610) Error in util.js

2017-03-28 Thread Konstantin Vulsonov (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-12610?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Konstantin Vulsonov updated CB-12610:
-
Remaining Estimate: (was: 1m)
 Original Estimate: (was: 1m)
   Description: 
There are error in /lib/utils.js in 11 line
`utils.Program = Program = path.basename(process.argv[1]);`
must be
`utils.Program = Program = path.basename(process.argv[0]);`

Or the same in coffe scripts



  was:
There are error in /lib/utils.js in 11 line
`utils.Program = Program = path.basename(process.argv[1]);`
must be
`utils.Program = Program = path.basename(process.argv[0]);`




> Error in util.js
> 
>
> Key: CB-12610
> URL: https://issues.apache.org/jira/browse/CB-12610
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: weinre
> Environment: nodejs usage
>Reporter: Konstantin Vulsonov
>Assignee: Patrick Mueller
>
> There are error in /lib/utils.js in 11 line
> `utils.Program = Program = path.basename(process.argv[1]);`
> must be
> `utils.Program = Program = path.basename(process.argv[0]);`
> Or the same in coffe scripts



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12610) Error in util.js

2017-03-28 Thread Konstantin Vulsonov (JIRA)
Konstantin Vulsonov created CB-12610:


 Summary: Error in util.js
 Key: CB-12610
 URL: https://issues.apache.org/jira/browse/CB-12610
 Project: Apache Cordova
  Issue Type: Bug
  Components: weinre
 Environment: nodejs usage
Reporter: Konstantin Vulsonov
Assignee: Patrick Mueller


There are error in /lib/utils.js in 11 line
`utils.Program = Program = path.basename(process.argv[1]);`
must be
`utils.Program = Program = path.basename(process.argv[0]);`





--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Closed] (CB-12606) Cordova fails to install plugin dependency from url

2017-03-28 Thread Alexander Sorokin (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-12606?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alexander Sorokin closed CB-12606.
--
Resolution: Fixed

> Cordova fails to install plugin dependency from url
> ---
>
> Key: CB-12606
> URL: https://issues.apache.org/jira/browse/CB-12606
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-lib
>Affects Versions: Master
> Environment: Windows 10, Node 4.5.0, npm 3.10.10
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: found-by-ci, triaged
>
> When trying to install android platform on top of the plugin with the 
> following line in its `plugin.xml`
> {noformat}
>  url="https://github.com/apache/cordova-plugin-device"; />
> {noformat}
> Getting the following error:
> {noformat}
> Installing "cordova-plugin-geolocation-tests" for ios
> Failed to install 'cordova-plugin-geolocation-tests': CordovaError: Version 
> of installed plugin: "cordova-plugin-device@1.1.6-dev" does not satisfy 
> dependency plugin requirement "cordova-plugin-device@". Try --force to use 
> installed plugin as dependency.
> at 
> /Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/src/plugman/install.js:575:33
> at _fulfilled 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:787:54)
> at self.promiseDispatch.done 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:816:30)
> at Promise.promise.promiseDispatch 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:749:13)
> at 
> /Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:509:49
> at flush 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:108:17)
> at nextTickCallbackWith0Args (node.js:420:9)
> at process._tickCallback (node.js:349:13)
> Error: Version of installed plugin: "cordova-plugin-device@1.1.6-dev" does 
> not satisfy dependency plugin requirement "cordova-plugin-device@". Try 
> --force to use installed plugin as dependency.
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12606) Cordova fails to install plugin dependency from url

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12606?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15944959#comment-15944959
 ] 

ASF GitHub Bot commented on CB-12606:
-

Github user codecov-io commented on the issue:

https://github.com/apache/cordova-lib/pull/531
  
# [Codecov](https://codecov.io/gh/apache/cordova-lib/pull/531?src=pr&el=h1) 
Report
> Merging 
[#531](https://codecov.io/gh/apache/cordova-lib/pull/531?src=pr&el=desc) into 
[master](https://codecov.io/gh/apache/cordova-lib/commit/43d7eaf20aa07fae34c36ea5bf445a49c4241372?src=pr&el=desc)
 will **increase** coverage by `<.01%`.
> The diff coverage is `100%`.

[![Impacted file tree 
graph](https://codecov.io/gh/apache/cordova-lib/pull/531/graphs/tree.svg?height=150&width=650&token=KwBjKMXLqA&src=pr)](https://codecov.io/gh/apache/cordova-lib/pull/531?src=pr&el=tree)

```diff
@@Coverage Diff @@
##   master #531  +/-   ##
==
+ Coverage   82.41%   82.42%   +<.01% 
==
  Files  68   68  
  Lines5460 5461   +1 
  Branches 1069 1070   +1 
==
+ Hits 4500 4501   +1 
  Misses960  960
```


| [Impacted 
Files](https://codecov.io/gh/apache/cordova-lib/pull/531?src=pr&el=tree) | 
Coverage Δ | |
|---|---|---|
| 
[cordova-lib/src/plugman/install.js](https://codecov.io/gh/apache/cordova-lib/pull/531?src=pr&el=tree#diff-Y29yZG92YS1saWIvc3JjL3BsdWdtYW4vaW5zdGFsbC5qcw==)
 | `88.37% <100%> (+0.03%)` | :arrow_up: |

--

[Continue to review full report at 
Codecov](https://codecov.io/gh/apache/cordova-lib/pull/531?src=pr&el=continue).
> **Legend** - [Click here to learn 
more](https://docs.codecov.io/docs/codecov-delta)
> `Δ = absolute  (impact)`, `ø = not affected`, `? = missing data`
> Powered by 
[Codecov](https://codecov.io/gh/apache/cordova-lib/pull/531?src=pr&el=footer). 
Last update 
[43d7eaf...4c99c0d](https://codecov.io/gh/apache/cordova-lib/pull/531?src=pr&el=lastupdated).
 Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments).


> Cordova fails to install plugin dependency from url
> ---
>
> Key: CB-12606
> URL: https://issues.apache.org/jira/browse/CB-12606
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-lib
>Affects Versions: Master
> Environment: Windows 10, Node 4.5.0, npm 3.10.10
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: found-by-ci, triaged
>
> When trying to install android platform on top of the plugin with the 
> following line in its `plugin.xml`
> {noformat}
>  url="https://github.com/apache/cordova-plugin-device"; />
> {noformat}
> Getting the following error:
> {noformat}
> Installing "cordova-plugin-geolocation-tests" for ios
> Failed to install 'cordova-plugin-geolocation-tests': CordovaError: Version 
> of installed plugin: "cordova-plugin-device@1.1.6-dev" does not satisfy 
> dependency plugin requirement "cordova-plugin-device@". Try --force to use 
> installed plugin as dependency.
> at 
> /Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/src/plugman/install.js:575:33
> at _fulfilled 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:787:54)
> at self.promiseDispatch.done 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:816:30)
> at Promise.promise.promiseDispatch 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:749:13)
> at 
> /Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:509:49
> at flush 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:108:17)
> at nextTickCallbackWith0Args (node.js:420:9)
> at process._tickCallback (node.js:349:13)
> Error: Version of installed plugin: "cordova-plugin-device@1.1.6-dev" does 
> not satisfy dependency plugin requirement "cordova-plugin-device@". Try 
> --force to use installed plugin as dependency.
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12606) Cordova fails to install plugin dependency from url

2017-03-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12606?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15944937#comment-15944937
 ] 

ASF subversion and git services commented on CB-12606:
--

Commit 4c99c0d4e08c5a48ab5d2d48e627b58c45c4b8d2 in cordova-lib's branch 
refs/heads/master from [~alsorokin]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=4c99c0d ]

CB-12606 Fix plugin dependency installation


> Cordova fails to install plugin dependency from url
> ---
>
> Key: CB-12606
> URL: https://issues.apache.org/jira/browse/CB-12606
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-lib
>Affects Versions: Master
> Environment: Windows 10, Node 4.5.0, npm 3.10.10
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: found-by-ci, triaged
>
> When trying to install android platform on top of the plugin with the 
> following line in its `plugin.xml`
> {noformat}
>  url="https://github.com/apache/cordova-plugin-device"; />
> {noformat}
> Getting the following error:
> {noformat}
> Installing "cordova-plugin-geolocation-tests" for ios
> Failed to install 'cordova-plugin-geolocation-tests': CordovaError: Version 
> of installed plugin: "cordova-plugin-device@1.1.6-dev" does not satisfy 
> dependency plugin requirement "cordova-plugin-device@". Try --force to use 
> installed plugin as dependency.
> at 
> /Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/src/plugman/install.js:575:33
> at _fulfilled 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:787:54)
> at self.promiseDispatch.done 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:816:30)
> at Promise.promise.promiseDispatch 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:749:13)
> at 
> /Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:509:49
> at flush 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:108:17)
> at nextTickCallbackWith0Args (node.js:420:9)
> at process._tickCallback (node.js:349:13)
> Error: Version of installed plugin: "cordova-plugin-device@1.1.6-dev" does 
> not satisfy dependency plugin requirement "cordova-plugin-device@". Try 
> --force to use installed plugin as dependency.
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12606) Cordova fails to install plugin dependency from url

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12606?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15944939#comment-15944939
 ] 

ASF GitHub Bot commented on CB-12606:
-

Github user asfgit closed the pull request at:

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


> Cordova fails to install plugin dependency from url
> ---
>
> Key: CB-12606
> URL: https://issues.apache.org/jira/browse/CB-12606
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-lib
>Affects Versions: Master
> Environment: Windows 10, Node 4.5.0, npm 3.10.10
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: found-by-ci, triaged
>
> When trying to install android platform on top of the plugin with the 
> following line in its `plugin.xml`
> {noformat}
>  url="https://github.com/apache/cordova-plugin-device"; />
> {noformat}
> Getting the following error:
> {noformat}
> Installing "cordova-plugin-geolocation-tests" for ios
> Failed to install 'cordova-plugin-geolocation-tests': CordovaError: Version 
> of installed plugin: "cordova-plugin-device@1.1.6-dev" does not satisfy 
> dependency plugin requirement "cordova-plugin-device@". Try --force to use 
> installed plugin as dependency.
> at 
> /Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/src/plugman/install.js:575:33
> at _fulfilled 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:787:54)
> at self.promiseDispatch.done 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:816:30)
> at Promise.promise.promiseDispatch 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:749:13)
> at 
> /Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:509:49
> at flush 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:108:17)
> at nextTickCallbackWith0Args (node.js:420:9)
> at process._tickCallback (node.js:349:13)
> Error: Version of installed plugin: "cordova-plugin-device@1.1.6-dev" does 
> not satisfy dependency plugin requirement "cordova-plugin-device@". Try 
> --force to use installed plugin as dependency.
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12606) Cordova fails to install plugin dependency from url

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12606?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15944935#comment-15944935
 ] 

ASF GitHub Bot commented on CB-12606:
-

Github user vladimir-kotikov commented on the issue:

https://github.com/apache/cordova-lib/pull/531
  
👍 


> Cordova fails to install plugin dependency from url
> ---
>
> Key: CB-12606
> URL: https://issues.apache.org/jira/browse/CB-12606
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-lib
>Affects Versions: Master
> Environment: Windows 10, Node 4.5.0, npm 3.10.10
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: found-by-ci, triaged
>
> When trying to install android platform on top of the plugin with the 
> following line in its `plugin.xml`
> {noformat}
>  url="https://github.com/apache/cordova-plugin-device"; />
> {noformat}
> Getting the following error:
> {noformat}
> Installing "cordova-plugin-geolocation-tests" for ios
> Failed to install 'cordova-plugin-geolocation-tests': CordovaError: Version 
> of installed plugin: "cordova-plugin-device@1.1.6-dev" does not satisfy 
> dependency plugin requirement "cordova-plugin-device@". Try --force to use 
> installed plugin as dependency.
> at 
> /Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/src/plugman/install.js:575:33
> at _fulfilled 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:787:54)
> at self.promiseDispatch.done 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:816:30)
> at Promise.promise.promiseDispatch 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:749:13)
> at 
> /Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:509:49
> at flush 
> (/Users/jenkins/jenkins/workspace/cordova-periodic-build/cordova-lib/cordova-lib/node_modules/q/q.js:108:17)
> at nextTickCallbackWith0Args (node.js:420:9)
> at process._tickCallback (node.js:349:13)
> Error: Version of installed plugin: "cordova-plugin-device@1.1.6-dev" does 
> not satisfy dependency plugin requirement "cordova-plugin-device@". Try 
> --force to use installed plugin as dependency.
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-11248) InAppBrowser no focus on input text fields

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-11248?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15944772#comment-15944772
 ] 

ASF GitHub Bot commented on CB-11248:
-

Github user Aggror commented on the issue:

https://github.com/apache/cordova-plugin-inappbrowser/pull/214
  
Thats awesome! Is there a schedule for the 1.7.1 for when it goes from dev 
to release?


> InAppBrowser no focus on input text fields
> --
>
> Key: CB-11248
> URL: https://issues.apache.org/jira/browse/CB-11248
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
>Affects Versions: 1.4.0
> Environment: Cordova CLI, Android, Android Studio
>Reporter: Mo Pages
>Assignee: Sergey Shakhnazarov
>Priority: Minor
>  Labels: android, reproduced, triaged
>
> When opening a webpage with a form in the Cordova default webview or system 
> webview focus on an input text box works as normal - a cursor is displayed 
> (and if there's any js list its displayed). However when using the 
> InAppBrowser the focus cursor does not display at all when you click in a 
> text box...the keyboard comes up but no focus cursor.
> I've tried injecting js to focus on the text box but this doesn't do 
> anything..Also it makes no difference what value the option 
> keyboardDisplayRequiresUserAction is given...Is there a fix for this? 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12468) cordova-inappbrowser-plugin setDefaultOptions method

2017-03-28 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15944668#comment-15944668
 ] 

ASF GitHub Bot commented on CB-12468:
-

Github user IvanProdaiko94 commented on the issue:

https://github.com/apache/cordova-plugin-inappbrowser/pull/213
  
Any changes to be rebased to master? What shell I do to improve pull in 
order to get this done?



> cordova-inappbrowser-plugin setDefaultOptions method
> 
>
> Key: CB-12468
> URL: https://issues.apache.org/jira/browse/CB-12468
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: AllPlatforms, CordovaLib
>Affects Versions: 3.5.0
> Environment: IOS/Android
>Reporter: Ivan Prodaiko
>  Labels: features
> Fix For: Master
>
>
> While using cordova-inappbrowser-plugin I must set popup features only when 
> calling window.open method. But a lot of libraries (firebase, openFB) use 
> window.open inside their own code where I can't directly menage the features 
> of window to be opened, and on IOS, where we do not a have a 'back' button we 
> could have a problem. For example window, opened with 'toolbar=no' will make 
> app to stack with no ability to close the window. Another thing to be 
> mentioned is when on IOS you use  attribute, after opening a 
> new window without setting 'allowInlineMediaPlayback=yes' all inline 
> attributes will stop working properly and video will start to open in a 
> fullscreen mode.
> So, my proposal is to provide an ability to setDefaultOptions method that 
> will help to prevent external libraries to manage the options of of window to 
> be opened directly.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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