[jira] [Commented] (CB-12132) Add hidenotcloseoption

2016-11-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12132:
-

Github user cordova-qa commented on the issue:

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

**Commit** - 
[Link](https://github.com/apache/cordova-plugin-inappbrowser/pull/197/commits/ec563a7af77e9f74cc73be8fd1a606946d4b4809)
**Dashboard** - 
[Link](http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94/)

| Builder Name  | Console Output | Test Report | Device Logs  |
| :---: | :---:  |   :---: | :---:|
| [Windows 8.1 Store]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-8.1-store/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-8.1-store/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-8.1-store/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-8.1-store/artifact/)
 |
| [Windows 10  Store]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-10-store/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-10-store/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-10-store/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-10-store/artifact/)
 |
| [Windows 8.1 Phone]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-8.1-phone/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-8.1-phone/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-8.1-phone/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=windows-8.1-phone/artifact/)
 |
| [iOS]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=ios/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=ios/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=ios/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=ios/artifact/)
 |
| [Android]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=android/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=android/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=android/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-inappbrowser-pr/94//PLATFORM=android/artifact/)
 |
 



> Add hidenotcloseoption
> --
>
> Key: CB-12132
> URL: https://issues.apache.org/jira/browse/CB-12132
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Plugin InAppBrowser
>Reporter: Gaven Henry
>Priority: Minor
>  Labels: features
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> add a new option for android and ios:
> option: hidenotclose=yes
> this makes the done button on iOS or the X button android hide the 
> inappbrowser webview instead of closing and destroying it.
> this is useful when doing something like:
> load a webview hidden (so it's nice and preloaded for the user)
> use the show() method when the user clicks to see it
> use the done/X button to hide the window
> call the close() method when done to clean up
> this allows us to start pre-loading the data, open and close the window 
> multiple times without having to reload and then to call close when done to 
> dispose of the view and clean up.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12132) Add hidenotcloseoption

2016-11-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12132:
-

GitHub user ghenry22 opened a pull request:

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

CB-12132: (android & ios) implement hidenotclose feature


### Platforms affected
android & ios

### What does this PR do?
This adds a new option hidenotclose which can be passed to the
inappbrowser.

When set to yes the done button on iOS or the X button android will
hide the web view instead of closing it.

This allows the user to show/hide the web view multiple times without
having to reload the content and you can clean up when you know they
are done by calling close once.

### What testing has been done on this change?
manually tested on both android and ios with both enabled and disabled 
settings.
when disabled (as by default) existing behaviour is maintained

### 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.
- [O] 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/ghenry22/cordova-plugin-inappbrowser 
hide_not_close

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

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


commit ec563a7af77e9f74cc73be8fd1a606946d4b4809
Author: ghenry22 
Date:   2016-11-11T07:39:35Z

CB-12132: (android & ios) implement hidenotclose feature

This adds a new option hidenotclose which can be passed to the
inappbrowser.

When set to yes the done button on iOS or the X button android will
hide the web view instead of closing it.

This allows the user to show/hide the web view multiple times without
having to reload the content and you can clean up when you know they
are done by calling close once.




> Add hidenotcloseoption
> --
>
> Key: CB-12132
> URL: https://issues.apache.org/jira/browse/CB-12132
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Plugin InAppBrowser
>Reporter: Gaven Henry
>Priority: Minor
>  Labels: features
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> add a new option for android and ios:
> option: hidenotclose=yes
> this makes the done button on iOS or the X button android hide the 
> inappbrowser webview instead of closing and destroying it.
> this is useful when doing something like:
> load a webview hidden (so it's nice and preloaded for the user)
> use the show() method when the user clicks to see it
> use the done/X button to hide the window
> call the close() method when done to clean up
> this allows us to start pre-loading the data, open and close the window 
> multiple times without having to reload and then to call close when done to 
> dispose of the view and clean up.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-12132) Add hidenotcloseoption

2016-11-10 Thread Gaven Henry (JIRA)
Gaven Henry created CB-12132:


 Summary: Add hidenotcloseoption
 Key: CB-12132
 URL: https://issues.apache.org/jira/browse/CB-12132
 Project: Apache Cordova
  Issue Type: New Feature
  Components: Plugin InAppBrowser
Reporter: Gaven Henry
Priority: Minor


add a new option for android and ios:

option: hidenotclose=yes

this makes the done button on iOS or the X button android hide the inappbrowser 
webview instead of closing and destroying it.

this is useful when doing something like:

load a webview hidden (so it's nice and preloaded for the user)
use the show() method when the user clicks to see it
use the done/X button to hide the window
call the close() method when done to clean up

this allows us to start pre-loading the data, open and close the window 
multiple times without having to reload and then to call close when done to 
dispose of the view and clean up.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-8098) Media plugin change plackback rate

2016-11-10 Thread Lance Locke (JIRA)

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

Lance Locke commented on CB-8098:
-

Can someone add support for Android devices. You can find the API here: 
https://developer.android.com/reference/android/media/PlaybackParams.html

> Media plugin change plackback rate
> --
>
> Key: CB-8098
> URL: https://issues.apache.org/jira/browse/CB-8098
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Plugin Media
>Affects Versions: 3.5.0
>Reporter: Alex
>
> Doesn't Media plugin support chanding playback rate? I dind't find any 
> mention in docs. I think this fis must even flaw HTML5 audio has it.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-12128) [_UIAlertControllerShimPresenterWindow release]: message sent to deallocated instance

2016-11-10 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12128:
--
Component/s: (was: CordovaLib)
 (was: CordovaJS)

> [_UIAlertControllerShimPresenterWindow release]: message sent to deallocated 
> instance
> -
>
> Key: CB-12128
> URL: https://issues.apache.org/jira/browse/CB-12128
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
>Affects Versions: 6.3.1, 6.3.2
> Environment: iOS
>Reporter: Shanthakumar
>
> http://stackoverflow.com/questions/39611490/uiimagepickercontroller-crashes-on-ios10
> http://stackoverflow.com/questions/18939537/uiimagepickercontroller-crash-only-on-ios-7-ipad



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-12117) Cordova-ios iphone 5 splashscreen stoped working between cordova-ios 4.1.1 - 4.2.0 (cordova default splashscreen is loaded)

2016-11-10 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12117:
--
Component/s: Plugin SplashScreen

> Cordova-ios iphone 5 splashscreen stoped working between cordova-ios 4.1.1 - 
> 4.2.0 (cordova default splashscreen is loaded)
> ---
>
> Key: CB-12117
> URL: https://issues.apache.org/jira/browse/CB-12117
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Affects Versions: 6.0.0
> Environment: Cordova >= 6.0.0
>Reporter: David Azevedo
>
> Sorry if i created the issue on the wrong tracker, could not find a cordova 
> ios tracker
> I was using cordova ios 4.2.0 and had this problem, when i downgrade to 4.1.0 
> the problem was gone. I didnt had time to test if 4.1.1 also solves the 
> problem. Please fix as soon as possible so we can catch up the latests 
> cordova ios versions



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12130) Launch storyboard images are not updated or cleaned

2016-11-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12130:
-

Github user codecov-io commented on the issue:

https://github.com/apache/cordova-ios/pull/276
  
## [Current 
coverage](https://codecov.io/gh/apache/cordova-ios/pull/276?src=pr) is 60.00% 
(diff: 50.00%)
> Merging [#276](https://codecov.io/gh/apache/cordova-ios/pull/276?src=pr) 
into [master](https://codecov.io/gh/apache/cordova-ios/branch/master?src=pr) 
will not change coverage

```diff
@@ master   #276   diff @@
==
  Files12 12  
  Lines  1325   1325  
  Methods 202202  
  Messages  0  0  
  Branches224224  
==
  Hits795795  
  Misses  530530  
  Partials  0  0  
```

> Powered by [Codecov](https://codecov.io?src=pr). Last update 
[50a185a...1a1dee4](https://codecov.io/gh/apache/cordova-ios/compare/50a185a6ec9e1b231cf0cddaddb6f74101c93f38...1a1dee4613f66ebf69164dc6ce2063d7a20947eb?src=pr)


> Launch storyboard images are not updated or cleaned
> ---
>
> Key: CB-12130
> URL: https://issues.apache.org/jira/browse/CB-12130
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: Master, 4.3.0
>Reporter: Niels Leenheer
> Fix For: cordova-ios@4.3.1
>
>
> Launch storyboard images were not updated or cleaned in
> updateLaunchStoryboardImages() or cleanLaunchStoryboardImages()
> because the check for Images.xcassets in
> getLaunchStoryboardImagesDir() failed.
> The reason was that the platformProjDir and projectRoot were
> joined, while both were relative to the root directory. So the
> resulting directory was non-sensical. This changes makes
> platformProjDir relative to cordovaProject.root, which matches the
> same check in updateSplashScreens() and updateIcons().



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Resolved] (CB-11988) I used the moveTo() and can not locate the saved image

2016-11-10 Thread Joe Bowser (JIRA)

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

Joe Bowser resolved CB-11988.
-
Resolution: Not A Problem

I'm guessing that my comment fixed the issue, if it didn't, please reopen.

> I used the moveTo() and can not locate the saved image
> --
>
> Key: CB-11988
> URL: https://issues.apache.org/jira/browse/CB-11988
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 2.3.0
>Reporter: Lucas Costa
>Priority: Minor
>
> I'm trying to save the picture in a specific folder in sdcard
> Everything is ok, however the picture does not appear in the gallery android
> bq.  navigator.camera.getPicture(getImageURI, function (message) {
>   alert('Image Capture Failed');
>  }, {
> quality: 100,
> destinationType: Camera.DestinationType.FILE_URL,
> sourceType : Camera.PictureSourceType.CAMERA,
> saveToPhotoAlbum: false
> });
> function getImageURI(imageUri) {
> var gotFileEntry = function (fileSystem) {
> bq. fileSystem.getDirectory("Marmovix", {create: true, exclusive: false}, 
> moveFile);
> };
> function moveFile(dirEntry) {
> bq. window.resolveLocalFileSystemURL(imageUri, function (fileEntry) {
>fileEntry.moveTo(dirEntry, "Marmovix.png", success, fsFail);
> }, fsFail);
> };
> window.resolveLocalFileSystemURL(cordova.file.externalRootDirectory, 
> gotFileEntry, fsFail);



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Resolved] (CB-12069) Permission Errors with Android Support v4 and FilesProvider on Android 4.4.4

2016-11-10 Thread Joe Bowser (JIRA)

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

Joe Bowser resolved CB-12069.
-
Resolution: Fixed

> Permission Errors with Android Support v4 and FilesProvider on Android 4.4.4
> 
>
> Key: CB-12069
> URL: https://issues.apache.org/jira/browse/CB-12069
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, Plugin Camera
>Reporter: Joe Bowser
>Assignee: Joe Bowser
>
> When using a Moto G (XT1022), it was discovered that the Camera is no longer 
> writing to the file using the FilesProvider.  It seems that there is a 
> READ_ONLY filesystem error on the shared FS, even though it's a shared FS.  
> It's very likely that we have to tell users who want to support 4.4.x to not 
> upgrade to the new Camera plugin, since it doesn't work on Kitkat and lower.
> Thought: What's the point of a compatibility library that's not compatible 
> with KitKat and lower?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12116) cordova-lib CI failures

2016-11-10 Thread ASF subversion and git services (JIRA)

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

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

Commit 9af68fe407def096819f6fef50b49d10a8ce15ac in cordova-lib's branch 
refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=9af68fe ]

CB-12116 updated pinned android to 6.1.0


> cordova-lib CI failures
> ---
>
> Key: CB-12116
> URL: https://issues.apache.org/jira/browse/CB-12116
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Reporter: Shazron Abdullah
>
> node 6.4.0
> {code}
> Failures:
>   1) platform add plugin rm end-to-end should remove dependency when removing 
> parent plugin
>Message:
>  timeout: timed out after 2 msec waiting for spec to complete
>Stacktrace:
>  undefined
>   2) platform add and remove --fetch should add and remove platform from 
> node_modules directory
>Message:
>  Expected { errno : -2, code : 'ENOENT', syscall : 'open', path : 
> '/private/var/folders/gp/qnjhl3ps51z2vvww_th7ldshgn/T/e2e-test/plugin_rm_test/hello/platforms/ios/HelloCordova/HelloCordova-Info.plist'
>  } to be undefined.
>Stacktrace:
>  Error: Expected { errno : -2, code : 'ENOENT', syscall : 'open', path : 
> '/private/var/folders/gp/qnjhl3ps51z2vvww_th7ldshgn/T/e2e-test/plugin_rm_test/hello/platforms/ios/HelloCordova/HelloCordova-Info.plist'
>  } to be undefined.
> at 
> /Users/shaz/Documents/git/apache/cordova-lib/cordova-lib/spec-cordova/platform.spec.js:246:25
> at _rejected 
> (/Users/shaz/Documents/git/apache/cordova-lib/cordova-lib/node_modules/q/q.js:797:24)
> at 
> /Users/shaz/Documents/git/apache/cordova-lib/cordova-lib/node_modules/q/q.js:823:30
> at Promise.when 
> (/Users/shaz/Documents/git/apache/cordova-lib/cordova-lib/node_modules/q/q.js:1035:31)
> at Promise.promise.promiseDispatch 
> (/Users/shaz/Documents/git/apache/cordova-lib/cordova-lib/node_modules/q/q.js:741:41)
> at 
> /Users/shaz/Documents/git/apache/cordova-lib/cordova-lib/node_modules/q/q.js:557:44
> at flush 
> (/Users/shaz/Documents/git/apache/cordova-lib/cordova-lib/node_modules/q/q.js:108:17)
> at _combinedTickCallback (internal/process/next_tick.js:67:7)
> at process._tickCallback (internal/process/next_tick.js:98:9)
> {code}
> {code}
> Subproject Path: CordovaLib
> ANDROID_HOME=/Applications/adt-bundle/sdk
> JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_92.jdk/Contents/Home
> Subproject Path: CordovaLib
> Starting a new Gradle Daemon for this build (subsequent builds will be 
> faster).
> Observed package id 'add-ons;addon-google_apis_x86-google-19' in inconsistent 
> location 
> '/Applications/adt-bundle/sdk/add-ons/addon-google_apis_x86-google-19-1' 
> (Expected 
> '/Applications/adt-bundle/sdk/add-ons/addon-google_apis_x86-google-19')
> Observed package id 'build-tools;17.0.0' in inconsistent location 
> '/Applications/adt-bundle/sdk/build-tools/android-4.2.2' (Expected 
> '/Applications/adt-bundle/sdk/build-tools/17.0.0')
> Observed package id 'add-ons;addon-google_apis_x86-google-19' in inconsistent 
> location 
> '/Applications/adt-bundle/sdk/add-ons/addon-google_apis_x86-google-19-1' 
> (Expected 
> '/Applications/adt-bundle/sdk/add-ons/addon-google_apis_x86-google-19')
> Observed package id 'build-tools;17.0.0' in inconsistent location 
> '/Applications/adt-bundle/sdk/build-tools/android-4.2.2' (Expected 
> '/Applications/adt-bundle/sdk/build-tools/17.0.0')
> >FAILURE: Build failed with an exception.
> * What went wrong:
> A problem occurred configuring root project 'android'.
> > A problem occurred configuring project ':CordovaLib'.
>> Cannot read packageName from 
> /private/var/folders/gp/qnjhl3ps51z2vvww_th7ldshgn/T/e2e-test/plugin_rm_test/hello/platforms/android/CordovaLib/AndroidManifest.xml
> * Try:
> Run with --stacktrace option to get the stack trace. Run with --info or 
> --debug option to get more log output.
> BUILD FAILED
> Total time: 6.83 secs
> { Error: 
> /private/var/folders/gp/qnjhl3ps51z2vvww_th7ldshgn/T/e2e-test/plugin_rm_test/hello/platforms/android/gradlew:
>  Command failed with exit code 1
> at ChildProcess.whenDone 
> (/private/var/folders/gp/qnjhl3ps51z2vvww_th7ldshgn/T/e2e-test/plugin_rm_test/hello/platforms/android/cordova/node_modules/cordova-common/src/superspawn.js:169:23)
> at emitTwo (events.js:106:13)
> at ChildProcess.emit (events.js:191:7)
> at maybeClose (internal/child_process.js:852:16)
> at Process.ChildProcess._handle.onexit (internal/child_process.js:215:5) 
> code: 1 }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: 

[jira] [Commented] (CB-12107) Downloading a file into public folder does not show up on MTP

2016-11-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12107:
-

Github user infil00p commented on the issue:

https://github.com/apache/cordova-plugin-file-transfer/pull/165
  
@beatgrabe Can you send an empty commit to the branch so that we can 
re-bump the CI? I think it got broken during a past build unrelated to this 
one.  Thanks! 


> Downloading a file into public folder does not show up on MTP
> -
>
> Key: CB-12107
> URL: https://issues.apache.org/jira/browse/CB-12107
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin File Transfer
> Environment: Nexus 4 and Windows 10
>Reporter: Beat Grabe
>  Labels: cordova-plugin-file-transfer
>
> Using the cordova-plugin-file-transfer to download a file from external url 
> works as aspected. But when you want to see the file on Windows by using MTP 
> when the device is connected via USB the file does not show up. Same 
> behaviour on android photos or gallery application when you want to download 
> an image file. The Plugin should be broadcasting 
> "ACTION_MEDIA_SCANNER_SCAN_FILE" on the downloaded file to see it immediately.
> I will submit a PR on GitHub for a tested fix, which was inspired by a 
> similar issue on the cordova-plugin-file 
> ([CB-7487|https://issues.apache.org/jira/browse/CB-7487] && 
> [CB-8663|https://issues.apache.org/jira/browse/CB-8663]).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-2627) HTML File Input should support accept/source attributes

2016-11-10 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-2627:


@SiongWai If you can get a PR going, I'll take a look at this issue.  This 
isn't currently a priority for us right now.

> HTML File Input should support accept/source attributes
> ---
>
> Key: CB-2627
> URL: https://issues.apache.org/jira/browse/CB-2627
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android
>Reporter: Michael Migdol
>Priority: Minor
>
> [CB-2086] always opens a generic File Picker, regardless of the values passed 
> in for the mimetypes in the accept attribute, or the source attribute.  The 
> Android Browser correctly examines these attributes and starts up an activity 
> with either: a camera intent, a camera/image intent, a camcorder intent, a 
> sound recorder intent, or a sound recorder/audio intent.  
> I'm not sure what cross-pollination is allowed between the Android codebase 
> and Cordova's, but it appears that 
> packages/apps/Browser/src/com/android/browser/UploadHandler.java from the 
> Android source tree contains exactly what we need to accomplish the same.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Resolved] (CB-11245) Swift plugins need additional build settings

2016-11-10 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-11245.
---
Resolution: Fixed

Support in build.json will be in in cordova-ios 4.3.1, it has been pulled into 
master. See https://github.com/apache/cordova-docs/pull/662

> Swift plugins need additional build settings
> 
>
> Key: CB-11245
> URL: https://issues.apache.org/jira/browse/CB-11245
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Darryl Pogue
>Assignee: Shazron Abdullah
>Priority: Minor
>  Labels: cordova-ios-5.0.x, triaged
> Fix For: cordova-ios@4.3.1
>
>
> Plugins written in Swift require some additional build settings in order to 
> work properly (and not crash the app immediately).
> In particular, {{EMBEDDED_CONTENT_CONTAINS_SWIFT = "YES"}} and 
> {{LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks"}} are required.
> This could be handled in a general way by allowing plugins to add their own 
> options to .xcconfig (but could result in duplication), or for this specific 
> case it is probably enough to set these if any plugins contain .swift files.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (CB-11245) Swift plugins need additional build settings

2016-11-10 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah edited comment on CB-11245 at 11/10/16 10:59 PM:
--

Support in build.json will be in in cordova-ios 4.3.1, it has been pulled into 
master (CB-12127). See https://github.com/apache/cordova-docs/pull/662


was (Author: shazron):
Support in build.json will be in in cordova-ios 4.3.1, it has been pulled into 
master. See https://github.com/apache/cordova-docs/pull/662

> Swift plugins need additional build settings
> 
>
> Key: CB-11245
> URL: https://issues.apache.org/jira/browse/CB-11245
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Darryl Pogue
>Assignee: Shazron Abdullah
>Priority: Minor
>  Labels: cordova-ios-5.0.x, triaged
> Fix For: cordova-ios@4.3.1
>
>
> Plugins written in Swift require some additional build settings in order to 
> work properly (and not crash the app immediately).
> In particular, {{EMBEDDED_CONTENT_CONTAINS_SWIFT = "YES"}} and 
> {{LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks"}} are required.
> This could be handled in a general way by allowing plugins to add their own 
> options to .xcconfig (but could result in duplication), or for this specific 
> case it is probably enough to set these if any plugins contain .swift files.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12127) Add buildFlag support in build.json

2016-11-10 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-12127:
---

The PR for cordova-ios has been pulled into master and 4.3.x branch.
All that is left is https://github.com/apache/cordova-docs/pull/662 for docs 
when the patch is released, and we can close this issue.

> Add buildFlag support in build.json
> ---
>
> Key: CB-12127
> URL: https://issues.apache.org/jira/browse/CB-12127
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
> Fix For: cordova-ios@4.3.1
>
>
> Add the "buildFlag" key here:
> https://github.com/apache/cordova-ios/blob/50a185a6ec9e1b231cf0cddaddb6f74101c93f38/bin/templates/scripts/cordova/lib/build.js#L79
> This is to support CB-11245



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12098) Update supportedInterfaceOrientations return type

2016-11-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12098:
-

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

https://github.com/apache/cordova-ios/pull/273#discussion_r87504252
  
--- Diff: CordovaLib/Classes/Public/CDVViewController.m ---
@@ -419,7 +419,13 @@ - (BOOL)shouldAutorotate
 return YES;
 }
 
-- (NSUInteger)supportedInterfaceOrientations
+// CB-12098
+#if __IPHONE_OS_VERSION_MAX_ALLOWED < 9  
+- (NSUInteger)supportedInterfaceOrientations  
+#else  
+- (UIInterfaceOrientationMask)supportedInterfaceOrientations
+#endif
+
--- End diff --

remove this empty line


> Update supportedInterfaceOrientations return type
> -
>
> Key: CB-12098
> URL: https://issues.apache.org/jira/browse/CB-12098
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.5.0
>Reporter: Jesse MacFadyen
>Assignee: sterling gerritz
>Priority: Minor
>
> All of our uses of supportedInterfaceOrientations should return 
> UIInterfaceOrientationMask in iOS 9+
> {code}
> #if __IPHONE_OS_VERSION_MAX_ALLOWED < 9  
> - (NSUInteger)supportedInterfaceOrientations  
> #else  
> - (UIInterfaceOrientationMask)supportedInterfaceOrientations
> #endif
> {code}
> The full list of references is here:
> https://github.com/apache/cordova-ios/search?utf8=%E2%9C%93=supportedInterfaceOrientations
> A similar fix was just implemented for [CB-11189]



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12098) Update supportedInterfaceOrientations return type

2016-11-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12098:
-

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

https://github.com/apache/cordova-ios/pull/273#discussion_r87504333
  
--- Diff: 
bin/templates/project/__PROJECT_NAME__/Classes/MainViewController.m ---
@@ -92,7 +92,13 @@ - (UIWebView*) newCordovaViewWithFrame:(CGRect)bounds
 return[super newCordovaViewWithFrame:bounds];
 }
 
-- (NSUInteger)supportedInterfaceOrientations 
+// CB-12098
+#if __IPHONE_OS_VERSION_MAX_ALLOWED < 9  
+- (NSUInteger)supportedInterfaceOrientations
+#else  
+- (UIInterfaceOrientationMask)supportedInterfaceOrientations
+#endif
+
--- End diff --

remove this empty line


> Update supportedInterfaceOrientations return type
> -
>
> Key: CB-12098
> URL: https://issues.apache.org/jira/browse/CB-12098
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.5.0
>Reporter: Jesse MacFadyen
>Assignee: sterling gerritz
>Priority: Minor
>
> All of our uses of supportedInterfaceOrientations should return 
> UIInterfaceOrientationMask in iOS 9+
> {code}
> #if __IPHONE_OS_VERSION_MAX_ALLOWED < 9  
> - (NSUInteger)supportedInterfaceOrientations  
> #else  
> - (UIInterfaceOrientationMask)supportedInterfaceOrientations
> #endif
> {code}
> The full list of references is here:
> https://github.com/apache/cordova-ios/search?utf8=%E2%9C%93=supportedInterfaceOrientations
> A similar fix was just implemented for [CB-11189]



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12127) Add buildFlag support in build.json

2016-11-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12127:
-

Github user asfgit closed the pull request at:

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


> Add buildFlag support in build.json
> ---
>
> Key: CB-12127
> URL: https://issues.apache.org/jira/browse/CB-12127
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
> Fix For: cordova-ios@4.3.1
>
>
> Add the "buildFlag" key here:
> https://github.com/apache/cordova-ios/blob/50a185a6ec9e1b231cf0cddaddb6f74101c93f38/bin/templates/scripts/cordova/lib/build.js#L79
> This is to support CB-11245



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12127) Add buildFlag support in build.json

2016-11-10 Thread ASF subversion and git services (JIRA)

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

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

Commit 3b9447ef45ca33c8e82e19ffe19a8d3f706754e4 in cordova-ios's branch 
refs/heads/4.3.x from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=3b9447e ]

CB-12127 - Add buildFlag support in build.json

 This closes #275


> Add buildFlag support in build.json
> ---
>
> Key: CB-12127
> URL: https://issues.apache.org/jira/browse/CB-12127
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
> Fix For: cordova-ios@4.3.1
>
>
> Add the "buildFlag" key here:
> https://github.com/apache/cordova-ios/blob/50a185a6ec9e1b231cf0cddaddb6f74101c93f38/bin/templates/scripts/cordova/lib/build.js#L79
> This is to support CB-11245



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12127) Add buildFlag support in build.json

2016-11-10 Thread ASF subversion and git services (JIRA)

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

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

Commit b8e855b87045f255c9183c4885fc62d74792f616 in cordova-ios's branch 
refs/heads/master from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=b8e855b ]

CB-12127 - Add buildFlag support in build.json

 This closes #275


> Add buildFlag support in build.json
> ---
>
> Key: CB-12127
> URL: https://issues.apache.org/jira/browse/CB-12127
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
> Fix For: cordova-ios@4.3.1
>
>
> Add the "buildFlag" key here:
> https://github.com/apache/cordova-ios/blob/50a185a6ec9e1b231cf0cddaddb6f74101c93f38/bin/templates/scripts/cordova/lib/build.js#L79
> This is to support CB-11245



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-12130) Launch storyboard images are not updated or cleaned

2016-11-10 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12130:
--
Fix Version/s: cordova-ios@4.3.1

> Launch storyboard images are not updated or cleaned
> ---
>
> Key: CB-12130
> URL: https://issues.apache.org/jira/browse/CB-12130
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: Master, 4.3.0
>Reporter: Niels Leenheer
> Fix For: cordova-ios@4.3.1
>
>
> Launch storyboard images were not updated or cleaned in
> updateLaunchStoryboardImages() or cleanLaunchStoryboardImages()
> because the check for Images.xcassets in
> getLaunchStoryboardImagesDir() failed.
> The reason was that the platformProjDir and projectRoot were
> joined, while both were relative to the root directory. So the
> resulting directory was non-sensical. This changes makes
> platformProjDir relative to cordovaProject.root, which matches the
> same check in updateSplashScreens() and updateIcons().



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-9762) App icon and Launch image for iPad Pro

2016-11-10 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-9762:
-
Fix Version/s: (was: 4.3.0)
   cordova-ios@4.3.1

> App icon and Launch image for iPad Pro
> --
>
> Key: CB-9762
> URL: https://issues.apache.org/jira/browse/CB-9762
> Project: Apache Cordova
>  Issue Type: Task
>  Components: iOS
>Affects Versions: 4.0.0
>Reporter: Manuel Martiarena
>Assignee: Kerri Shotts
>  Labels: cordova-ios, cordova-ios-4.3.x
> Fix For: cordova-ios@4.3.1
>
> Attachments: Default-Landscape@2x~ipad-pro.png, 
> Default-Portrait@2x~ipad-pro.png
>
>
> Provide app icon image and launch image for iPad Pro
> iPad Pro (@2x) App icon required 167x167
> iPad Pro (@2x) Launch image required 2048 x 2732 (portrait)
> 2732 x 2048 (landscape)
> https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-9762) App icon and Launch image for iPad Pro

2016-11-10 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-9762:
--

Thanks Kerri,
I saw CB-12130. Will this issue fix that issue as well?

> App icon and Launch image for iPad Pro
> --
>
> Key: CB-9762
> URL: https://issues.apache.org/jira/browse/CB-9762
> Project: Apache Cordova
>  Issue Type: Task
>  Components: iOS
>Affects Versions: 4.0.0
>Reporter: Manuel Martiarena
>Assignee: Kerri Shotts
>  Labels: cordova-ios, cordova-ios-4.3.x
> Fix For: cordova-ios@4.3.1
>
> Attachments: Default-Landscape@2x~ipad-pro.png, 
> Default-Portrait@2x~ipad-pro.png
>
>
> Provide app icon image and launch image for iPad Pro
> iPad Pro (@2x) App icon required 167x167
> iPad Pro (@2x) Launch image required 2048 x 2732 (portrait)
> 2732 x 2048 (landscape)
> https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



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

2016-11-10 Thread Rodolfo Freire (JIRA)
Rodolfo Freire created CB-12131:
---

 Summary: Error native camera 100 android
 Key: CB-12131
 URL: https://issues.apache.org/jira/browse/CB-12131
 Project: Apache Cordova
  Issue Type: Bug
Reporter: Rodolfo Freire
Priority: Critical


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.4#6332)

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



[jira] [Reopened] (CB-9762) App icon and Launch image for iPad Pro

2016-11-10 Thread Kerri Shotts (JIRA)

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

Kerri Shotts reopened CB-9762:
--

Needs a couple fixes for 4.3.1

Will be working on that next week and pull them in.

> App icon and Launch image for iPad Pro
> --
>
> Key: CB-9762
> URL: https://issues.apache.org/jira/browse/CB-9762
> Project: Apache Cordova
>  Issue Type: Task
>  Components: iOS
>Affects Versions: 4.0.0
>Reporter: Manuel Martiarena
>Assignee: Kerri Shotts
>  Labels: cordova-ios, cordova-ios-4.3.x
> Fix For: 4.3.0
>
> Attachments: Default-Landscape@2x~ipad-pro.png, 
> Default-Portrait@2x~ipad-pro.png
>
>
> Provide app icon image and launch image for iPad Pro
> iPad Pro (@2x) App icon required 167x167
> iPad Pro (@2x) Launch image required 2048 x 2732 (portrait)
> 2732 x 2048 (landscape)
> https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-11829) Support Launch Storyboards

2016-11-10 Thread Kerri Shotts (JIRA)

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

Kerri Shotts commented on CB-11829:
---

I think I'll reopen CB-9762 instead. The code in the plugin doesn't need to be 
changed, which is what this issue was for.

I meant to get to it the last couple of weeks, but got slammed with client 
work. Next week looks clear, so I'm going to work on the fixes then.

> Support Launch Storyboards
> --
>
> Key: CB-11829
> URL: https://issues.apache.org/jira/browse/CB-11829
> Project: Apache Cordova
>  Issue Type: Task
>  Components: iOS, Plugin SplashScreen
>Reporter: Kerri Shotts
>Assignee: Kerri Shotts
> Fix For: 4.0.1
>
>
> Once CB-9762 is in place, the splash screen plugin will need to be updated. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (CB-12041) cordova-plugin-media-capture does not set or restore entries such as CAMERA_USAGE_DESCRIPTION

2016-11-10 Thread Christopher Mindus (JIRA)

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

Christopher Mindus edited comment on CB-12041 at 11/10/16 5:08 PM:
---

The way I can reproduce it is as follows:

1. Main config.xml in project:
  ...
  


  
  
  ...

2. cordova platform rm ios [--save]

   Make sure platforms/ios is gone.

3. cordova platform add ios [--save]

At this point, the platforms/ios/ios.json and the project's *.plist file does 
not include the strings from the main config.xml.
This is reproducible all the time. It doesn't matter if the "--save" flag is 
used or not.

As the iOS platform update command generally fails, we use rm+add to update the 
iOS platform instead. We then have to manually enter the ios.json entries that 
in turn builds the *.plist entries during the ios build step.


was (Author: minduch):
The way I can reproduce it is as follows:

1. Main config.xml in project:
  ...
  


  
  
  ...

2. cordova platform rm ios [--save]

   Make sure platforms/ios is gone.

3. cordova platform add ios [--save]

At this point, the platforms/ios/ios.json and the project's *.plist file does 
not include the strings from the main config.xml.
This is reproducible all the time. It doesn't matter if the "--save" flag is 
used or not.

As the iOS platform update command generally fails, we use rm+add to update the 
iOS platform instead. We then have to manually enter the ios.json entries that 
in turn builds the *.plist entries during the ios build step.

> cordova-plugin-media-capture does not set or restore entries such as 
> CAMERA_USAGE_DESCRIPTION
> -
>
> Key: CB-12041
> URL: https://issues.apache.org/jira/browse/CB-12041
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: Master
>Reporter: Christopher Mindus
>
> An entry in config.xml such as:
> 
> 
> 
>   
>   
> does not update the ios.json and *-Info.plist files with the corresponding 
> entries NSCameraUsageDescription, NSMicrophoneUsageDescription and 
> NSPhotoLibraryUsageDescription.
> This applies when performing "cordova platform add ios [--save]" as well as 
> when changing the main config.xml file with new or updated text entries 
> and/or variables.
> The main config.xml file should update the other files (ios.json and *.plist).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12041) cordova-plugin-media-capture does not set or restore entries such as CAMERA_USAGE_DESCRIPTION

2016-11-10 Thread Christopher Mindus (JIRA)

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

Christopher Mindus commented on CB-12041:
-

The way I can reproduce it is as follows:

1. Main config.xml in project:
  ...
  


  
  
  ...

2. cordova platform rm ios [--save]

   Make sure platforms/ios is gone.

3. cordova platform add ios [--save]

At this point, the platforms/ios/ios.json and the project's *.plist file does 
not include the strings from the main config.xml.
This is reproducible all the time. It doesn't matter if the "--save" flag is 
used or not.

As the iOS platform update command generally fails, we use rm+add to update the 
iOS platform instead. We then have to manually enter the ios.json entries that 
in turn builds the *.plist entries during the ios build step.

> cordova-plugin-media-capture does not set or restore entries such as 
> CAMERA_USAGE_DESCRIPTION
> -
>
> Key: CB-12041
> URL: https://issues.apache.org/jira/browse/CB-12041
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: Master
>Reporter: Christopher Mindus
>
> An entry in config.xml such as:
> 
> 
> 
>   
>   
> does not update the ios.json and *-Info.plist files with the corresponding 
> entries NSCameraUsageDescription, NSMicrophoneUsageDescription and 
> NSPhotoLibraryUsageDescription.
> This applies when performing "cordova platform add ios [--save]" as well as 
> when changing the main config.xml file with new or updated text entries 
> and/or variables.
> The main config.xml file should update the other files (ios.json and *.plist).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-12130) Launch storyboard images are not updated or cleaned

2016-11-10 Thread Niels Leenheer (JIRA)
Niels Leenheer created CB-12130:
---

 Summary: Launch storyboard images are not updated or cleaned
 Key: CB-12130
 URL: https://issues.apache.org/jira/browse/CB-12130
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: Master, 4.3.0
Reporter: Niels Leenheer


Launch storyboard images were not updated or cleaned in
updateLaunchStoryboardImages() or cleanLaunchStoryboardImages()
because the check for Images.xcassets in
getLaunchStoryboardImagesDir() failed.

The reason was that the platformProjDir and projectRoot were
joined, while both were relative to the root directory. So the
resulting directory was non-sensical. This changes makes
platformProjDir relative to cordovaProject.root, which matches the
same check in updateSplashScreens() and updateIcons().



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12130) Launch storyboard images are not updated or cleaned

2016-11-10 Thread Niels Leenheer (JIRA)

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

Niels Leenheer commented on CB-12130:
-

I've created a pull request here:
https://github.com/apache/cordova-ios/pull/276

> Launch storyboard images are not updated or cleaned
> ---
>
> Key: CB-12130
> URL: https://issues.apache.org/jira/browse/CB-12130
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: Master, 4.3.0
>Reporter: Niels Leenheer
>
> Launch storyboard images were not updated or cleaned in
> updateLaunchStoryboardImages() or cleanLaunchStoryboardImages()
> because the check for Images.xcassets in
> getLaunchStoryboardImagesDir() failed.
> The reason was that the platformProjDir and projectRoot were
> joined, while both were relative to the root directory. So the
> resulting directory was non-sensical. This changes makes
> platformProjDir relative to cordovaProject.root, which matches the
> same check in updateSplashScreens() and updateIcons().



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12009) target attribute ignored on iOS when installing a Cordova plugin

2016-11-10 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-12009:
---

BTW, starting on Xcode 7, new projects (native projects) don't have the 
Resources folder when you create them, should we get rid of it too?

>  target attribute ignored on iOS when installing a Cordova 
> plugin
> 
>
> Key: CB-12009
> URL: https://issues.apache.org/jira/browse/CB-12009
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.3.0, 6.3.1
>Reporter: Mark Veenstra
>Priority: Critical
>
> In the Cordova plugin.xml documentation it is stated that the 
> {{}} tag can have an attribute {{target}}. See next link: 
> https://cordova.apache.org/docs/en/latest/plugin_ref/spec.html#resource-file
> But when I try to use this target attribute it is just ignored and all 
> {{}} configurations are added to the {{Resources}} directory 
> on iOS.
> It seems to me that the {{cordova-lib}} code just ignores this {{target}} 
> attribute, see next link: 
> https://github.com/apache/cordova-lib/blob/master/cordova-lib/src/plugman/platforms/ios.js#L165
> The code grabbed from that link:
> {{destFile = path.resolve(project.resources_dir, path.basename(src));}}
> Here you can see the destFile is hardcoded for the resources_dir.
> We are trying to add push notification sounds to the iOS {{Resources}} 
> directory as well as adding it to either the bundle root or 
> {{Library/Sounds}}. Because we have seen that since iOS 10 we need to put the 
> sounds files elsewhere then the {{Resources}} directory to get it work. See: 
> https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/TheNotificationPayload.html#//apple_ref/doc/uid/TP40008194-CH107-SW1



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Closed] (CB-12129) Do we have any implements to apply our custom CSS-Style into the Notification prompts?

2016-11-10 Thread jcesarmobile (JIRA)

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

jcesarmobile closed CB-12129.
-
Resolution: Invalid
  Assignee: jcesarmobile

No, navigator.notification uses native views and those can't by styled with 
CSS. If you want html digalogs then don't use the plugin and search for libs 
that show nice dialogs 

> Do we have any implements to apply our custom CSS-Style into the Notification 
> prompts?
> --
>
> Key: CB-12129
> URL: https://issues.apache.org/jira/browse/CB-12129
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Plugin Dialogs
>Affects Versions: 1.2.1
>Reporter: kxiao
>Assignee: jcesarmobile
>
> I have a HTML5+Cordova application for mobile user 
> (androd/iOS/WindowsPhone/BB), do we have any chance to implement our CSS 
> style into the prompts from navigator.notification, such as title bg, button, 
> font, etc.?  Or could you please provide some examples for us? thanks.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-12117) Cordova-ios iphone 5 splashscreen stoped working between cordova-ios 4.1.1 - 4.2.0 (cordova default splashscreen is loaded)

2016-11-10 Thread David Azevedo (JIRA)

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

David Azevedo commented on CB-12117:


Hi Sergey,

Posting bellow:











> Cordova-ios iphone 5 splashscreen stoped working between cordova-ios 4.1.1 - 
> 4.2.0 (cordova default splashscreen is loaded)
> ---
>
> Key: CB-12117
> URL: https://issues.apache.org/jira/browse/CB-12117
> Project: Apache Cordova
>  Issue Type: Bug
>Affects Versions: 6.0.0
> Environment: Cordova >= 6.0.0
>Reporter: David Azevedo
>
> Sorry if i created the issue on the wrong tracker, could not find a cordova 
> ios tracker
> I was using cordova ios 4.2.0 and had this problem, when i downgrade to 4.1.0 
> the problem was gone. I didnt had time to test if 4.1.1 also solves the 
> problem. Please fix as soon as possible so we can catch up the latests 
> cordova ios versions



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10288) statusbar plugin interaction with iOS multitasking

2016-11-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10288:
-

Github user NielsLeenheer commented on the issue:

https://github.com/apache/cordova-plugin-statusbar/pull/62
  
I've ran into this issue yesterday when adding split view support to my 
app. And I am happy to confirm all WebView resizing issues in split/side view 
are fixed with this PR on both iOS 9 and iOS 10 and both on an iPad Air 2 and 
an iPad Pro (12.9"). 

Please land this asap. Thanks!


> statusbar plugin interaction with iOS multitasking
> --
>
> Key: CB-10288
> URL: https://issues.apache.org/jira/browse/CB-10288
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Statusbar
> Environment: cordova ios 4.0.0
>Reporter: Nick Redding
>Assignee: Kerri Shotts
>  Labels: ios, pull-request-available, triaged
>
> In pluginInitialize the statement
> [[NSNotificationCenter defaultCenter] addObserver:self 
> selector:@selector(statusBarDidChangeFrame:) name: 
> UIApplicationDidChangeStatusBarFrameNotification object:nil];
> causes incorrect rendering behavior when using iOS multitasking split window. 
> When pulling the cordova app onto the screen from the right, the window 
> resizing is not handled correctly (much larger widths thsn actual are 
> reported and reflected in the rendering).
> Commenting out this statement eliminates the problem, but it is not clear 
> what the potentially unwanted effects of this would be.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-12129) Do we have any implements to apply our custom CSS-Style into the Notification prompts?

2016-11-10 Thread kxiao (JIRA)

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

kxiao updated CB-12129:
---
Description: I have a HTML5+Cordova application for mobile user 
(androd/iOS/WindowsPhone/BB), do we have any chance to implement our CSS style 
into the prompts from navigator.notification, such as title bg, button, font, 
etc.?  Or could you please provide some examples for us? thanks.  (was: I have 
a HTML5+Cordova application for mobile user (androd/iOS/WindowsPhone/BB), do we 
hava any chance to implement our CSS style into the prompts from 
navigator.notification, such as title bg, button, font, etc.?  )

> Do we have any implements to apply our custom CSS-Style into the Notification 
> prompts?
> --
>
> Key: CB-12129
> URL: https://issues.apache.org/jira/browse/CB-12129
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Plugin Dialogs
>Affects Versions: 1.2.1
>Reporter: kxiao
>
> I have a HTML5+Cordova application for mobile user 
> (androd/iOS/WindowsPhone/BB), do we have any chance to implement our CSS 
> style into the prompts from navigator.notification, such as title bg, button, 
> font, etc.?  Or could you please provide some examples for us? thanks.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-12129) Do we have any implements to apply our custom CSS-Style into the Notification prompts?

2016-11-10 Thread kxiao (JIRA)
kxiao created CB-12129:
--

 Summary: Do we have any implements to apply our custom CSS-Style 
into the Notification prompts?
 Key: CB-12129
 URL: https://issues.apache.org/jira/browse/CB-12129
 Project: Apache Cordova
  Issue Type: New Feature
  Components: Plugin Dialogs
Affects Versions: 1.2.1
Reporter: kxiao


I have a HTML5+Cordova application for mobile user 
(androd/iOS/WindowsPhone/BB), do we hava any chance to implement our CSS style 
into the prompts from navigator.notification, such as title bg, button, font, 
etc.?  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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