[jira] [Commented] (CB-11611) iPhone doesn't vibrate in my code

2016-07-30 Thread zhuisui (JIRA)

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

zhuisui commented on CB-11611:
--

Maybe my English grade is bad and make you misunderstand.
I use this plugin https://github.com/edimuj/cordova-plugin-audioinput to record 
audio in the webpage and I can get immediate audio data which comes from iOS 
native code by dispatching event every period of time at least 300ms.
And I call {{navigator.vibrate}}(of course it is that not {{window.vibrate}}) 
every time I receive data and it satisfies condition. My purpose is to do a 
feature which is letting phone vibrate if it detects audio volume is high 
enough when is recording audio. However the result is, no matter how many times 
{{vibrate}} called in this process, phone just start vibrates when stopping 
recording and no more data. It is like vibrate is blocked by recorder process.
Can you understand now?

> iPhone doesn't vibrate in my code
> -
>
> Key: CB-11611
> URL: https://issues.apache.org/jira/browse/CB-11611
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Vibration
>Reporter: zhuisui
>
> I write some code to implement a feature.
> I inspect every element of array and if some satisfy condition I call 
> {{vibrate}}.
> code like this
> {code:javascript}
> document.addEventListener('data', v, false);
> function v(arr){
> var i=0;
> while(i if(condition){
> vibrate(10);
> }
> i += arr.length / 10;
> }
> }
> {code}
> But it doesn't vibrate, until event {{data}} doesn't be dispatched.



--
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-11637) History was clean when goto another page

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-11637:
---

I can't reproduce the issue on Android 5.0.2

history.back() always work, it doesn't matter if the file where I navigated had 
cordova.js or not
navigator.app.backHistory() only works if the file where I navigated had 
cordova.js

history.length works fine when going forward, going backward will always return 
the max you reached, but I don't think that is a cordova issue

> History was clean when goto another page
> 
>
> Key: CB-11637
> URL: https://issues.apache.org/jira/browse/CB-11637
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 5.2.1
> Environment: android 4.4 , win 10
>Reporter: sfnt
>
> I have 2 html pages, page A and page B
> A is the default homepage or my cordova app.
> A has a link  to B
> and B with cordova.js too.
> when I touch the link in page A and goto page B,
> I find that history.back() don't work!
> and navigator.app.backHistory() don't work too!
> While in the page B , history.length = 1
> no history was found!!
> Then I remove cordova.js from page B, history.back() works well.
> Do cordova clean history everytime it init?
> How can I fix this problem?
> 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] [Closed] (CB-7819) navigator.vibrate is not work

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile closed CB-7819.

Resolution: Cannot Reproduce
  Assignee: jcesarmobile

I can't reproduce the issue with version 2.1.1 of the plugin and the reporter 
said it works now, so closing

> navigator.vibrate is not work
> -
>
> Key: CB-7819
> URL: https://issues.apache.org/jira/browse/CB-7819
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Vibration
>Affects Versions: 3.7.0, 3.6.3
> Environment: phonegap 3.6.3 with all latest plugin
> ios 8.0.2
> winphone 8.1
> Android 4.4.2
> all real machine
> org.apache.cordova.vibration = > 0.3.11
>Reporter: Colin Bau
>Assignee: jcesarmobile
>  Labels: vibrate
>   Original Estimate: 12h
>  Remaining Estimate: 12h
>
> according to this
> https://github.com/apache/cordova-plugin-vibration/blob/5adf530d3663226ad6913de6cfc8493672334023/doc/index.md
> it said...
> [the recommended way]
> navigator.vibrate
> navigator.vibrateWithPattern
> navigator.cancelVibration
> [the deprecated way]
> navigator.notification.vibrate
> navigator.notification.vibrateWithPattern
> navigator.notification.cancelVibration
> but in fact,when I use it
> navigator.notification.[yourmethod] is work but navigator.[yourmethod] not !!



--
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-6915) vibration bracket implementation

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-6915:
--

Is this issue still valid?
The bracket implementation is documented and working

> vibration bracket implementation 
> -
>
> Key: CB-6915
> URL: https://issues.apache.org/jira/browse/CB-6915
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Plugin Vibration
>Reporter: Lisa Seacat DeLuca
>Assignee: Edna Morales
>  Labels: w3c
>
> Bracket implementation (section 5 of spec)
> {code}
> // vibrate for 1000 ms
> navigator.vibrate(1000);
> // or alternatively
> navigator.vibrate([1000]); ←--- this version doesn’t exist in Cordova
> {code}
> see: 
> https://docs.google.com/document/d/18b32aveubsr2g5Co_VeW4q3s3IXxuddUU2BO5eC3jVA/edit
>  



--
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-6912) Vibration should be access from navigator.vibrate instead of navigator.notification.vibrate

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-6912:
--

Is this issue still valid?

It uses navigator.vibrate  now

> Vibration should be access from navigator.vibrate instead of 
> navigator.notification.vibrate
> ---
>
> Key: CB-6912
> URL: https://issues.apache.org/jira/browse/CB-6912
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Plugin Vibration
>Reporter: Lisa Seacat DeLuca
>Assignee: Edna Morales
>  Labels: w3c
>
> Vibration should be access from navigator.vibrate instead of 
> navigator.notification.vibrate
> https://docs.google.com/document/d/18b32aveubsr2g5Co_VeW4q3s3IXxuddUU2BO5eC3jVA/edit



--
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-11611) iPhone doesn't vibrate in my code

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-11611:
---

the API is navigator.vibrate(10), not vibrate(10)


And if I understand you correctly, your problem is that data event is not being 
fired until you stop the recording, so I don´t think it's related with the 
vibration plugin

How are you recording? which plugin are you using for the recording? can you 
share your recording code too?

> iPhone doesn't vibrate in my code
> -
>
> Key: CB-11611
> URL: https://issues.apache.org/jira/browse/CB-11611
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Vibration
>Reporter: zhuisui
>
> I write some code to implement a feature.
> I inspect every element of array and if some satisfy condition I call 
> {{vibrate}}.
> code like this
> {code:javascript}
> document.addEventListener('data', v, false);
> function v(arr){
> var i=0;
> while(i if(condition){
> vibrate(10);
> }
> i += arr.length / 10;
> }
> }
> {code}
> But it doesn't vibrate, until event {{data}} doesn't be dispatched.



--
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-8001) StatusBar Plugin 0.1.8 crashes application on tap

2016-07-30 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8001:


Github user asfgit closed the pull request at:

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


> StatusBar Plugin 0.1.8 crashes application on tap
> -
>
> Key: CB-8001
> URL: https://issues.apache.org/jira/browse/CB-8001
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Statusbar
>Affects Versions: 3.7.0
> Environment: StatusBar Plugin 0.1.8
> Cordova iOS 3.7.0
> iPhone 6+ (8.0)
> iPhone 5s (8.0)
>Reporter: Nathan Smith
>Assignee: jcesarmobile
>Priority: Critical
>  Labels: iOS, triaged
> Attachments: status-bar-test.zip
>
>
> StatusBar Plugin 0.1.8
> Cordova iOS 3.7.0
> iPhone 6+ (8.0)
> iPhone 5s (8.0)
> The StatusBar encounters an {{EXC_BAD_ACCESS}} exception when the user taps 
> on the StatusBar.
> The call site affected is {{fireTappedEvent}} {{\[self.commandDelegate 
> sendPluginResult:result callbackId:_eventsCallbackId\];}}



--
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-8001) StatusBar Plugin 0.1.8 crashes application on tap

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile closed CB-8001.

Resolution: Won't Fix

In the end I'm closing this as won't fix. Cordova started using ARC long time 
ago. In case there are still projects created with the old template without ARC 
they should be migrated to a newer version.

If people don't want to migrate and want to use the plugin, then use Ivan´s fork
https://github.com/IvanKarpan/cordova-plugin-statusbar.git

> StatusBar Plugin 0.1.8 crashes application on tap
> -
>
> Key: CB-8001
> URL: https://issues.apache.org/jira/browse/CB-8001
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Statusbar
>Affects Versions: 3.7.0
> Environment: StatusBar Plugin 0.1.8
> Cordova iOS 3.7.0
> iPhone 6+ (8.0)
> iPhone 5s (8.0)
>Reporter: Nathan Smith
>Assignee: jcesarmobile
>Priority: Critical
>  Labels: iOS, triaged
> Attachments: status-bar-test.zip
>
>
> StatusBar Plugin 0.1.8
> Cordova iOS 3.7.0
> iPhone 6+ (8.0)
> iPhone 5s (8.0)
> The StatusBar encounters an {{EXC_BAD_ACCESS}} exception when the user taps 
> on the StatusBar.
> The call site affected is {{fireTappedEvent}} {{\[self.commandDelegate 
> sendPluginResult:result callbackId:_eventsCallbackId\];}}



--
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] [Assigned] (CB-8001) StatusBar Plugin 0.1.8 crashes application on tap

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile reassigned CB-8001:


Assignee: jcesarmobile

> StatusBar Plugin 0.1.8 crashes application on tap
> -
>
> Key: CB-8001
> URL: https://issues.apache.org/jira/browse/CB-8001
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Statusbar
>Affects Versions: 3.7.0
> Environment: StatusBar Plugin 0.1.8
> Cordova iOS 3.7.0
> iPhone 6+ (8.0)
> iPhone 5s (8.0)
>Reporter: Nathan Smith
>Assignee: jcesarmobile
>Priority: Critical
>  Labels: iOS, triaged
> Attachments: status-bar-test.zip
>
>
> StatusBar Plugin 0.1.8
> Cordova iOS 3.7.0
> iPhone 6+ (8.0)
> iPhone 5s (8.0)
> The StatusBar encounters an {{EXC_BAD_ACCESS}} exception when the user taps 
> on the StatusBar.
> The call site affected is {{fireTappedEvent}} {{\[self.commandDelegate 
> sendPluginResult:result callbackId:_eventsCallbackId\];}}



--
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-11648) Make CDVViewController to send notifications when UIViewController methods are called

2016-07-30 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11648:
-

Github user codecov-io commented on the issue:

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

```diff
@@ master   #239   diff @@
==
  Files11 11  
  Lines   882882  
  Methods 132132  
  Messages  0  0  
  Branches143143  
==
  Hits457457  
  Misses  425425  
  Partials  0  0  
```

> Powered by [Codecov](https://codecov.io?src=pr). Last update 
[debd4c6...b1ed8b0](https://codecov.io/gh/apache/cordova-ios/compare/debd4c69e7c08f418a02ee5671f7a87ea0511004...b1ed8b0869f1ae1c169ec688e0ca5390d60dc0cd?src=pr)


> Make CDVViewController to send notifications when UIViewController methods 
> are called
> -
>
> Key: CB-11648
> URL: https://issues.apache.org/jira/browse/CB-11648
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: iOS
>Reporter: jcesarmobile
>Assignee: jcesarmobile
>
> Making CDVViewController to send notifications when some of the 
> UIViewController methods are called, such as:
> viewWillAppear
> viewDidAppear
> viewWillDisappear
> viewDidDisappear
> viewWillLayoutSubviews
> viewDidLayoutSubviews
> viewWillTransitionToSize
> listening for that notifications can be useful in some plugins like the 
> statusbar plugin



--
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-11648) Make CDVViewController to send notifications when UIViewController methods are called

2016-07-30 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11648:
-

GitHub user jcesarmobile opened a pull request:

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

CB-11648: Make CDVViewController send notifications

Make CDVViewController to send notifications when UIViewController methods 
are called

Added notifications for 

viewWillAppear
viewDidAppear
viewWillDisappear
viewDidDisappear
viewWillLayoutSubviews
viewDidLayoutSubviews
viewWillTransitionToSize

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

$ git pull https://github.com/jcesarmobile/cordova-ios CB-11648

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

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


commit b1ed8b0869f1ae1c169ec688e0ca5390d60dc0cd
Author: Julio César 
Date:   2016-07-30T20:48:57Z

CB-11648: Make CDVViewController send notifications when UIViewController 
methods are called




> Make CDVViewController to send notifications when UIViewController methods 
> are called
> -
>
> Key: CB-11648
> URL: https://issues.apache.org/jira/browse/CB-11648
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: iOS
>Reporter: jcesarmobile
>Assignee: jcesarmobile
>
> Making CDVViewController to send notifications when some of the 
> UIViewController methods are called, such as:
> viewWillAppear
> viewDidAppear
> viewWillDisappear
> viewDidDisappear
> viewWillLayoutSubviews
> viewDidLayoutSubviews
> viewWillTransitionToSize
> listening for that notifications can be useful in some plugins like the 
> statusbar plugin



--
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-11638) Offline event not triggering

2016-07-30 Thread Kerri Shotts (JIRA)

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

Kerri Shotts commented on CB-11638:
---

Try version 1.2.1 and see if there's any improvement. If not, share a code 
sample that duplicates the problem so it can be tested. Finally, have you tried 
other Android devices and/or OS versions?

> Offline event not triggering
> 
>
> Key: CB-11638
> URL: https://issues.apache.org/jira/browse/CB-11638
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Network Information
>Affects Versions: 1.2.0
> Environment: Android 6.0.1, Ionic 2
>Reporter: Nicolas Loriot
>
> The online event is working but i can't get the offline event to fire after 
> enabling airplane mode.



--
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-11637) History was clean when goto another page

2016-07-30 Thread Kerri Shotts (JIRA)

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

Kerri Shotts commented on CB-11637:
---

Please provide a small project that duplicates the issue you are seeing so we 
can test it out and duplicate your issue.

Also are pages A and B local to the app or remote resources?


> History was clean when goto another page
> 
>
> Key: CB-11637
> URL: https://issues.apache.org/jira/browse/CB-11637
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 5.2.1
> Environment: android 4.4 , win 10
>Reporter: sfnt
>
> I have 2 html pages, page A and page B
> A is the default homepage or my cordova app.
> A has a link  to B
> and B with cordova.js too.
> when I touch the link in page A and goto page B,
> I find that history.back() don't work!
> and navigator.app.backHistory() don't work too!
> While in the page B , history.length = 1
> no history was found!!
> Then I remove cordova.js from page B, history.back() works well.
> Do cordova clean history everytime it init?
> How can I fix this problem?
> 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-11633) Screen is cutting when changing portrait mode to landscape mode on iphone 5

2016-07-30 Thread Kerri Shotts (JIRA)

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

Kerri Shotts commented on CB-11633:
---

I don't think there's enough information here to be of much assistance. Please 
provide a code sample that exhibits the same problem so that we can duplicate 
the issue. There are many possible reasons why you might be having this issue, 
so having some code will help us narrow down the issue.

> Screen is cutting when changing portrait mode to landscape mode on iphone 5
> ---
>
> Key: CB-11633
> URL: https://issues.apache.org/jira/browse/CB-11633
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Screen Orientation
>Reporter: fahad
>
> We are experiencing following issue
> Screen width is not updating and remain the same as it was in portrait mode 
> we also changed view-port meta tag also when we go from  potrait mode to 
> landscape mode and made width=device-height but no success.
> Screen image link is below:
> https://cloud.githubusercontent.com/assets/17248413/17167134/44cd6698-5390-11e6-8197-54a5e514e6ca.png
> Please let us know about its solution
> 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] [Closed] (CB-11620) cordova ios : facebook link not working

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile closed CB-11620.
-
Resolution: Duplicate

The main problem is the same as CB-11178

Just find out that when facebook app is installed, the call inAppBrowser plugin 
makes to canOpenURL it uses the url fb://profile?id=pagename instead of 
https://www.facebook.com/pagename

It's fixed in latest version of inAppBrowser plugin in master (1.4.1-dev), you 
can install from github url or wait until it's released

> cordova ios : facebook link not working
> ---
>
> Key: CB-11620
> URL: https://issues.apache.org/jira/browse/CB-11620
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: IOS
>Reporter: Binu Paul
>Assignee: jcesarmobile
>  Labels: Cordova, facebook, inappbrowser, ios
>
> I cannot open facebook page link from my cordova ios app. I am using latest 
> cordova version 6.x.x and I installed InAppBrowser plugin. The issue arises 
> only if facebook app is installed in ios devise. I tried with both fb page 
> name and page id. Both didn't work.
> I used the code below,
>  onClick="cordova.InAppBrowser.open('https://www.facebook.com/pagename', 
> '_system', 'location=yes');">
> The same code is working fine in android. Please help..



--
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] [Assigned] (CB-11620) cordova ios : facebook link not working

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile reassigned CB-11620:
-

Assignee: jcesarmobile

> cordova ios : facebook link not working
> ---
>
> Key: CB-11620
> URL: https://issues.apache.org/jira/browse/CB-11620
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: IOS
>Reporter: Binu Paul
>Assignee: jcesarmobile
>  Labels: Cordova, facebook, inappbrowser, ios
>
> I cannot open facebook page link from my cordova ios app. I am using latest 
> cordova version 6.x.x and I installed InAppBrowser plugin. The issue arises 
> only if facebook app is installed in ios devise. I tried with both fb page 
> name and page id. Both didn't work.
> I used the code below,
>  onClick="cordova.InAppBrowser.open('https://www.facebook.com/pagename', 
> '_system', 'location=yes');">
> The same code is working fine in android. Please help..



--
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-10868) iOS only - Can't open youtube links in _system when youtube app is installed

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-10868:
---

Really weird thing, I was looking into CB-11620 and the problem is the same as 
here.

Just find out that when youtube app is installed, the call inAppBrowser plugin 
makes to canOpenURL it uses the url youtube://youtu.be/7E0fVfectDo instead of 
https://youtu.be/7E0fVfectDo, so it was really an issue with the inAppBrowser 
and not just the youtube app.

Anyway it is fixed in latest version of inAppBrowser plugin in master 
(1.4.1-dev), you can install from github url or wait until it's released

> iOS only - Can't open youtube links in _system when youtube app is installed
> 
>
> Key: CB-10868
> URL: https://issues.apache.org/jira/browse/CB-10868
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
>Affects Versions: 6.0.0
>Reporter: Brian Mooy
>Assignee: jcesarmobile
>  Labels: triaged
>
> I created a blank app, with the system browser plugin and attempted to open a 
> link to youtube with the following javascript:
> window.open ('https://youtu.be/7E0fVfectDo', '_system')
> This works fine if the youtube app is not installed, but once the youtube app 
> is installed, literally nothing happens. This appears to be a problem 
> introduced with the new youtube 17.0 version that was released March 1st. 
> There's no javascript errors in the console. No errors in Xcode's debugger 
> output. Other links work fine. IE: window.open ('http://google.com', 
> '_system') ; The key to it is the youtube app being installed on the phone. 
> Removing the youtube app then opens the link into the browser. The prompt 
> ("open this link in youtube") is not appearing, and as such is causing the 
> issue. 
> I am running cordova V 6.0.0, cordova-plugin-inappbrowser 1.2.1 and 
> cordova-plugin-whitelist 1.2.1
> Cordova browser is on 4.1.0, iOS is on 4.0.1
> It may also be worth noting that it works fine on android - the problem only 
> exists on iOS. 



--
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-11605) platform update should be non-destructive

2016-07-30 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11605:
-

Github user csantanapr commented on the issue:

https://github.com/apache/cordova-lib/pull/465
  
LGTM
Maybe print some message about next steps "you need to manually moved any 
platform configuration from backup version a.b.c to x.y.z as you see it fit for 
your project"


> platform update should be non-destructive
> -
>
> Key: CB-11605
> URL: https://issues.apache.org/jira/browse/CB-11605
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Reporter: Jesse MacFadyen
>Assignee: Jesse MacFadyen
>
> More details here:
> https://github.com/cordova/cordova-discuss/issues/50
> and here:
> http://markmail.org/message/nrabt2f4kcbp6vkh



--
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-11648) Make CDVViewController to send notifications when UIViewController methods are called

2016-07-30 Thread jcesarmobile (JIRA)
jcesarmobile created CB-11648:
-

 Summary: Make CDVViewController to send notifications when 
UIViewController methods are called
 Key: CB-11648
 URL: https://issues.apache.org/jira/browse/CB-11648
 Project: Apache Cordova
  Issue Type: New Feature
  Components: iOS
Reporter: jcesarmobile
Assignee: jcesarmobile


Making CDVViewController to send notifications when some of the 
UIViewController methods are called, such as:

viewWillAppear
viewDidAppear
viewWillDisappear
viewDidDisappear
viewWillLayoutSubviews
viewDidLayoutSubviews
viewWillTransitionToSize

listening for that notifications can be useful in some plugins like the 
statusbar plugin



--
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-8947) alert() crashes when passing a JSON object on iOS

2016-07-30 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8947:


Github user jcesarmobile commented on the issue:

https://github.com/apache/cordova-plugin-dialogs/pull/80
  
Couldn't find your ICLA, then I realized you were a committer, lol.


> alert() crashes when passing a JSON object on iOS
> -
>
> Key: CB-8947
> URL: https://issues.apache.org/jira/browse/CB-8947
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Dialogs
>Affects Versions: 4.0.0
> Environment: Notifications Plugin version 0.3.0
>Reporter: Dennis Patzer
>Assignee: Don Coleman
>Priority: Minor
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> In the error handler of a geolocation retrieval I had alert(error); which 
> crashes, because I passed an object into the function call. This shouldn't 
> happen.



--
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-8947) alert() crashes when passing a JSON object on iOS

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile resolved CB-8947.
--
Resolution: Fixed

Fixed in 1.2.2-dev

> alert() crashes when passing a JSON object on iOS
> -
>
> Key: CB-8947
> URL: https://issues.apache.org/jira/browse/CB-8947
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Dialogs
>Affects Versions: 4.0.0
> Environment: Notifications Plugin version 0.3.0
>Reporter: Dennis Patzer
>Assignee: Don Coleman
>Priority: Minor
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> In the error handler of a geolocation retrieval I had alert(error); which 
> crashes, because I passed an object into the function call. This shouldn't 
> happen.



--
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-8947) alert() crashes when passing a JSON object on iOS

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile updated CB-8947:
-
Assignee: Don Coleman

> alert() crashes when passing a JSON object on iOS
> -
>
> Key: CB-8947
> URL: https://issues.apache.org/jira/browse/CB-8947
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Dialogs
>Affects Versions: 4.0.0
> Environment: Notifications Plugin version 0.3.0
>Reporter: Dennis Patzer
>Assignee: Don Coleman
>Priority: Minor
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> In the error handler of a geolocation retrieval I had alert(error); which 
> crashes, because I passed an object into the function call. This shouldn't 
> happen.



--
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-8947) alert() crashes when passing a JSON object on iOS

2016-07-30 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8947:


Github user asfgit closed the pull request at:

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


> alert() crashes when passing a JSON object on iOS
> -
>
> Key: CB-8947
> URL: https://issues.apache.org/jira/browse/CB-8947
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Dialogs
>Affects Versions: 4.0.0
> Environment: Notifications Plugin version 0.3.0
>Reporter: Dennis Patzer
>Priority: Minor
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> In the error handler of a geolocation retrieval I had alert(error); which 
> crashes, because I passed an object into the function call. This shouldn't 
> happen.



--
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-8947) alert() crashes when passing a JSON object on iOS

2016-07-30 Thread ASF subversion and git services (JIRA)

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

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

Commit 85b6bdca512bd8eb5772c449685a21d609f260f0 in cordova-plugin-dialogs's 
branch refs/heads/master from [~dcoleman]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-dialogs.git;h=85b6bdc ]

CB-8947:(ios) Fix crash. Convert non-string messages to strings. Added tests.

 This closes #80


> alert() crashes when passing a JSON object on iOS
> -
>
> Key: CB-8947
> URL: https://issues.apache.org/jira/browse/CB-8947
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Dialogs
>Affects Versions: 4.0.0
> Environment: Notifications Plugin version 0.3.0
>Reporter: Dennis Patzer
>Priority: Minor
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> In the error handler of a geolocation retrieval I had alert(error); which 
> crashes, because I passed an object into the function call. This shouldn't 
> happen.



--
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-11647) Localized (multi-language) splash screen images

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-11647:
---

No workarounds, the support should be added on the plugin

> Localized (multi-language) splash screen images
> ---
>
> Key: CB-11647
> URL: https://issues.apache.org/jira/browse/CB-11647
> Project: Apache Cordova
>  Issue Type: Wish
>  Components: Plugin SplashScreen
>Reporter: Fernando
>Priority: Minor
>
> I'm using Phonegap Build and this plugin to have different images on my app's 
> splashscreen for english and portuguese. This works perfectly fine for 
> Android by setting the qualifier atribute in the config.xml to something like 
> en-port-ldpi.
> But what about iOS? Is there a way?
> I "almost" made it work by using the folders /locales/en.lproj and 
> /locales/pt.lproj and put the splashscreen images inside each. What happens 
> is that the localized image (the one inside locales folder) appear for a 
> second and then it shows the default one again, that is inside the resources 
> folder...
> Any help on this?



--
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-11647) Localized (multi-language) splash screen images

2016-07-30 Thread Fernando (JIRA)

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

Fernando commented on CB-11647:
---

Bummer... It works so good in Android... Any thoughts on a workaround, maybe?

> Localized (multi-language) splash screen images
> ---
>
> Key: CB-11647
> URL: https://issues.apache.org/jira/browse/CB-11647
> Project: Apache Cordova
>  Issue Type: Wish
>  Components: Plugin SplashScreen
>Reporter: Fernando
>Priority: Minor
>
> I'm using Phonegap Build and this plugin to have different images on my app's 
> splashscreen for english and portuguese. This works perfectly fine for 
> Android by setting the qualifier atribute in the config.xml to something like 
> en-port-ldpi.
> But what about iOS? Is there a way?
> I "almost" made it work by using the folders /locales/en.lproj and 
> /locales/pt.lproj and put the splashscreen images inside each. What happens 
> is that the localized image (the one inside locales folder) appear for a 
> second and then it shows the default one again, that is inside the resources 
> folder...
> Any help on this?



--
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-10180) Add support for video capture quality on iOS

2016-07-30 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10180:
-

Github user jcesarmobile commented on the issue:

https://github.com/apache/cordova-plugin-media-capture/pull/65
  
If you do what I said you won't change the behavoiur, if there is no 
quality passed, then you use medium quality, that is how it works now. 
If you pass quality option with value 1 you use hight quality.
If you pass quality option with value 0 you use low quality.

If you don't do that then the changes on the README.md are not accurate, 
you say that 0 uses low quality, but you use medium quality, is medium quality 
suitable for MMS? I don't think so


> Add support for video capture quality on iOS
> 
>
> Key: CB-10180
> URL: https://issues.apache.org/jira/browse/CB-10180
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Media Capture
>Affects Versions: 1.1.0
> Environment: iOS
>Reporter: Nicolas Leclerc
>  Labels: iOS, triaged
>
> iOS does not support the new {{quality}} option.
> Adding it would be great.
> I submitted a PR some time ago but rebased it to v1.1.0.
> https://github.com/apache/cordova-plugin-media-capture/pull/48



--
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-11647) Localized (multi-language) splash screen images

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-11647:
---

On iOS the system shows the launch image and then Cordova adds the splash 
screen. They are usually the same image so you don't notice the change.
You have managed to change the launch image with the localized one, but 
cordova-plugin-splashscreen doesn't support multi language yet.


> Localized (multi-language) splash screen images
> ---
>
> Key: CB-11647
> URL: https://issues.apache.org/jira/browse/CB-11647
> Project: Apache Cordova
>  Issue Type: Wish
>  Components: Plugin SplashScreen
>Reporter: Fernando
>Priority: Minor
>
> I'm using Phonegap Build and this plugin to have different images on my app's 
> splashscreen for english and portuguese. This works perfectly fine for 
> Android by setting the qualifier atribute in the config.xml to something like 
> en-port-ldpi.
> But what about iOS? Is there a way?
> I "almost" made it work by using the folders /locales/en.lproj and 
> /locales/pt.lproj and put the splashscreen images inside each. What happens 
> is that the localized image (the one inside locales folder) appear for a 
> second and then it shows the default one again, that is inside the resources 
> folder...
> Any help on this?



--
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-11647) Localized (multi-language) splash screen images

2016-07-30 Thread jcesarmobile (JIRA)

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

jcesarmobile updated CB-11647:
--
Priority: Minor  (was: Major)

> Localized (multi-language) splash screen images
> ---
>
> Key: CB-11647
> URL: https://issues.apache.org/jira/browse/CB-11647
> Project: Apache Cordova
>  Issue Type: Wish
>  Components: Plugin SplashScreen
>Reporter: Fernando
>Priority: Minor
>
> I'm using Phonegap Build and this plugin to have different images on my app's 
> splashscreen for english and portuguese. This works perfectly fine for 
> Android by setting the qualifier atribute in the config.xml to something like 
> en-port-ldpi.
> But what about iOS? Is there a way?
> I "almost" made it work by using the folders /locales/en.lproj and 
> /locales/pt.lproj and put the splashscreen images inside each. What happens 
> is that the localized image (the one inside locales folder) appear for a 
> second and then it shows the default one again, that is inside the resources 
> folder...
> Any help on this?



--
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-11647) Localized (multi-language) splash screen images

2016-07-30 Thread Fernando (JIRA)
Fernando created CB-11647:
-

 Summary: Localized (multi-language) splash screen images
 Key: CB-11647
 URL: https://issues.apache.org/jira/browse/CB-11647
 Project: Apache Cordova
  Issue Type: Wish
  Components: Plugin SplashScreen
Reporter: Fernando


I'm using Phonegap Build and this plugin to have different images on my app's 
splashscreen for english and portuguese. This works perfectly fine for Android 
by setting the qualifier atribute in the config.xml to something like 
en-port-ldpi.

But what about iOS? Is there a way?

I "almost" made it work by using the folders /locales/en.lproj and 
/locales/pt.lproj and put the splashscreen images inside each. What happens is 
that the localized image (the one inside locales folder) appear for a second 
and then it shows the default one again, that is inside the resources folder...

Any help on this?



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