Releases: kunder-lab/cl.kunder.webview
2.8.0
2.7.1
Description
- Hotfix for issue #43: Plugin automatically adds the prefix file:///android_asset/www/ on Android.
Breaking Changes
No breaking changes on this release.
Changelog
f00c017 - updated readme
3c0bad8 - version bump 2.7.1
3adecc7 - FIXED #43
bc9b239 - restore url-prefix regex to v2.6.0 functionality
2.7.0
2.6.0
Description
- New feature close webview with params
- Fixes to readme
Feature close with params
Added params for Close
method. The second webview can send parameters to the main webview on close.
Usage:
// Second webview
webview.Close(success, error, params)
To receive this parameters, use webview.SubscribeCallback(success, error)
. Parameters will be passed along the success
callback.
// Main webview
// This will be fired on second webview close
webview.SubscribeCallback(function(params) { console.log(params); }, function(){ console.log('error'); })
Breaking Changes
No breaking changes on this release.
Changelog
863478d - version bump 2.6.0
aad2154 - updated readme
50e4d9a - readme updated
2576dba - moving the new parameter of hide to the end to avoid making a breaking change
8c4b0d6 - changed the header of the readme
f272b3d - added new functionality to documentation
014425c - corrected a parameter that was not necessarely static
0e03fe1 - Added support for sending params when webview is closed
83ffc54 - Update README.md
9a8595d - Fixes spelling mistake.
2.5.1
2.5.0
Description
Add a method to adjust iOS 11 webview using the status bar space. This is a temporary fix for iOS 11 grey status bar bug.
This change does not fix iPhone X spaces.
Breaking Changes
No breaking changes on this release.
Changelog
08467a8 - Se añade función para ajustar el comportamiento de la vista en iOS 11
4daeeee - Se agrega método para deshabilitar statusbar en ios11
2.4.2
Description
NPM standar fixes.
Breaking Changes
No breaking changes on this release.
Changelog
b492155 - NPM name and IDs replaced by kunder-cordova-plugin-webview
ba27b3b - cambios requeridos
67f828c - cambio de nombre siguiendo las notaciones actuales
d967dad - se agrega version 2.4.1
484d5b4 - corrección version plugin
7deb931 - modificación de id y name en package.json
46e5133 - se modifica id del plugin
7c9a47e - modificación variable "name" package.json
2.4.1
2.4.0
Description
Added compatibility for Cordova 7.
New Features
Added support for Cordova's browser platform 7.
Added close callback for Android and iOS.
Added loading when blank page is shown.
Added HideLoading function to close the loading in ionic afterEnter event.
Breaking Changes
No breaking changes on this release.
Changelog
e604714 - se agrega archivo package.json
19b6535 - Fix Show method parameters
f646da2 - Readme updated
705a54b - Including loading when blank page is shown. Adding HideLoading function to close the loading in ionic afterEnter event.
bdcd58c - Moving finish to after success callback called (reverted from commit 458a027)
88c26a9 - Moving finish to after success callback called (reverted from commit 458a027)
458a027 - Moving finish to after success callback called
7512100 - Adding documentation about SubscribeExitCallback and ExitApp methods
9f38a83 - Se añade una funcionalidad que permite cerrar la aplicación en iOS de forma directa y de forma indirecta en Android. Para Android, se requiere registrar un callback y un resume para cerrar la aplicación por medio de ionic.Platform.exitApp()