Skip to content
This repository was archived by the owner on Dec 5, 2019. It is now read-only.

Commit 1d97fa7

Browse files
committed
Merge branch 'master' of github.com:Telerik-Verified-Plugins/WKWebView into patch-1
2 parents 28abcec + d05bccf commit 1d97fa7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ _BETA_ - things may break, [please post your feedback :)](https://github.com/Edd
3232
* You can load files from the app's cache folders by using the entire path (/var/.../Library/...) or simply '/Library/..' (or '/Documents/..').
3333
* This plugin features crash recovery: if the WKWebView crashes, it will auto-restart (otherwise you'd have an app with a blank page as it doesn't crash the app itself). Crash recovery requires a filled `<title>anything</title>` tag in your html files. If you want to disable this feature, set the `config.xml` property `DisableCrashRecovery` to `true`.
3434
* In order to open links like `tel:` and `mailto:` you need to add `target="_blank"`: `<a href="tel:+31611223344" target="_blank">call!</a>`
35+
* If you're trying to use `HideFormAccessoryBar` with the `cordova-plugin-keyboard` plugin, please [use this fork](https://github.com/cjpearson/cordova-plugin-keyboard) which is compatbile with WKWebView.
3536

3637
## 2. Screenshot
3738
This image shows the [SocialSharing plugin](https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin) in action while running [a performance test](https://www.scirra.com/demos/c2/particles/) in an iframe on my iPhone 6 (older devices show an even larger difference).
@@ -54,6 +55,7 @@ $ cordova plugin add cordova-plugin-wkwebview --variable WKWEBVIEW_SERVER_PORT=1
5455
No need for anything else - you can now open the project in XCode 6 if you like.
5556

5657
## 4. Changelog
58+
* __0.6.6__ Compatibility with `file://` protocol for usage in plugins like [cordova-hot-code-push](https://github.com/nordnet/cordova-hot-code-push), thanks #195!
5759
* __0.6.5__ `KeyboardDisplayRequiresUserAction` works! So set to `false` if you want the keyboard to pop up when programmatically focussing an input field.
5860
* __0.6.4__ On top of the port preference introduced in 0.6.3 you can now override the default variable when installing this plugin (see 'Installation').
5961
* __0.6.3__ By default the embedded webserver uses port `12344`, but if you want to you can now override that port by setting f.i. `<preference name="WKWebViewPluginEmbeddedServerPort" value="20000" />` in `config.xml`.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.6.5",
2+
"version": "0.6.6",
33
"name": "cordova-plugin-wkwebview",
44
"cordova_name": "WKWebView Polyfill",
55
"description": "A drop-in replacement of UIWebView for boosted performance and enhanced HTML5 support",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
33
id="com.telerik.plugins.wkwebview"
4-
version="0.6.5">
4+
version="0.6.6">
55

66
<name>WKWebView Polyfill</name>
77

0 commit comments

Comments
 (0)