CB-12519 Updated version and RELEASENOTES.md for release 1.7.0
This commit is contained in:
parent
c6ffd69e9c
commit
a74510ba00
@ -20,6 +20,16 @@
|
|||||||
-->
|
-->
|
||||||
# Release Notes
|
# Release Notes
|
||||||
|
|
||||||
|
### 1.6.2 (Feb 28, 2017)
|
||||||
|
* [CB-12366](https://issues.apache.org/jira/browse/CB-12366) **iOS:** Reduce `tmpWindow` level to prevent overlapping statusbar
|
||||||
|
* [CB-12364](https://issues.apache.org/jira/browse/CB-12364) **Windows:** `Inappbrowser` inject file manual tests are not working
|
||||||
|
* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges usage in `plugin.xml`
|
||||||
|
* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin typings from `DefinitelyTyped`
|
||||||
|
* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build badges for **iOS 9.3** and **iOS 10.0**
|
||||||
|
* [CB-9148](https://issues.apache.org/jira/browse/CB-9148) **Android:** Add Support for `input[type=file]` File Chooser
|
||||||
|
* [CB-11136](https://issues.apache.org/jira/browse/CB-11136) (ios) Fix `InAppBrowser` when closing with `WKWebView`
|
||||||
|
* [CB-10799](https://issues.apache.org/jira/browse/CB-10799) **iOS:** fix toolbar is shown in incorrect position when in-call status bar
|
||||||
|
|
||||||
### 1.6.1 (Dec 14, 2016)
|
### 1.6.1 (Dec 14, 2016)
|
||||||
* [CB-12237](https://issues.apache.org/jira/browse/CB-12237) - Update version in package.json to correct 1.6.1-dev
|
* [CB-12237](https://issues.apache.org/jira/browse/CB-12237) - Update version in package.json to correct 1.6.1-dev
|
||||||
* [CB-12236](https://issues.apache.org/jira/browse/CB-12236) - Fixed RELEASENOTES for cordova-plugin-inappbrowser
|
* [CB-12236](https://issues.apache.org/jira/browse/CB-12236) - Fixed RELEASENOTES for cordova-plugin-inappbrowser
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "cordova-plugin-inappbrowser",
|
"name": "cordova-plugin-inappbrowser",
|
||||||
"version": "1.6.2-dev",
|
"version": "1.7.0",
|
||||||
"description": "Cordova InAppBrowser Plugin",
|
"description": "Cordova InAppBrowser Plugin",
|
||||||
"types": "./types/index.d.ts",
|
"types": "./types/index.d.ts",
|
||||||
"cordova": {
|
"cordova": {
|
||||||
|
419
plugin.xml
419
plugin.xml
@ -1,243 +1,178 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<!--
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-inappbrowser" version="1.7.0">
|
||||||
Licensed to the Apache Software Foundation (ASF) under one
|
<name>InAppBrowser</name>
|
||||||
or more contributor license agreements. See the NOTICE file
|
<description>Cordova InAppBrowser Plugin</description>
|
||||||
distributed with this work for additional information
|
<license>Apache 2.0</license>
|
||||||
regarding copyright ownership. The ASF licenses this file
|
<keywords>cordova,in,app,browser,inappbrowser</keywords>
|
||||||
to you under the Apache License, Version 2.0 (the
|
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser.git</repo>
|
||||||
"License"); you may not use this file except in compliance
|
<issue>https://issues.apache.org/jira/browse/CB/component/12320641</issue>
|
||||||
with the License. You may obtain a copy of the License at
|
<engines>
|
||||||
|
<engine name="cordova" version=">=3.1.0"/>
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
</engines>
|
||||||
|
<platform name="android">
|
||||||
Unless required by applicable law or agreed to in writing,
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
software distributed under the License is distributed on an
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
<clobbers target="window.open"/>
|
||||||
KIND, either express or implied. See the License for the
|
</js-module>
|
||||||
specific language governing permissions and limitations
|
<config-file target="res/xml/config.xml" parent="/*">
|
||||||
under the License.
|
<feature name="InAppBrowser">
|
||||||
-->
|
<param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser"/>
|
||||||
|
</feature>
|
||||||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
</config-file>
|
||||||
id="cordova-plugin-inappbrowser"
|
<source-file src="src/android/InAppBrowser.java" target-dir="src/org/apache/cordova/inappbrowser"/>
|
||||||
version="1.6.2-dev">
|
<source-file src="src/android/InAppBrowserDialog.java" target-dir="src/org/apache/cordova/inappbrowser"/>
|
||||||
|
<source-file src="src/android/InAppChromeClient.java" target-dir="src/org/apache/cordova/inappbrowser"/>
|
||||||
<name>InAppBrowser</name>
|
<resource-file src="src/android/res/drawable-hdpi/ic_action_next_item.png" target="res/drawable-hdpi/ic_action_next_item.png"/>
|
||||||
<description>Cordova InAppBrowser Plugin</description>
|
<resource-file src="src/android/res/drawable-mdpi/ic_action_next_item.png" target="res/drawable-mdpi/ic_action_next_item.png"/>
|
||||||
<license>Apache 2.0</license>
|
<resource-file src="src/android/res/drawable-xhdpi/ic_action_next_item.png" target="res/drawable-xhdpi/ic_action_next_item.png"/>
|
||||||
<keywords>cordova,in,app,browser,inappbrowser</keywords>
|
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_next_item.png" target="res/drawable-xxhdpi/ic_action_next_item.png"/>
|
||||||
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser.git</repo>
|
<resource-file src="src/android/res/drawable-hdpi/ic_action_previous_item.png" target="res/drawable-hdpi/ic_action_previous_item.png"/>
|
||||||
<issue>https://issues.apache.org/jira/browse/CB/component/12320641</issue>
|
<resource-file src="src/android/res/drawable-mdpi/ic_action_previous_item.png" target="res/drawable-mdpi/ic_action_previous_item.png"/>
|
||||||
|
<resource-file src="src/android/res/drawable-xhdpi/ic_action_previous_item.png" target="res/drawable-xhdpi/ic_action_previous_item.png"/>
|
||||||
<engines>
|
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_previous_item.png" target="res/drawable-xxhdpi/ic_action_previous_item.png"/>
|
||||||
<engine name="cordova" version=">=3.1.0" /><!-- Needs cordova/urlutil -->
|
<resource-file src="src/android/res/drawable-hdpi/ic_action_remove.png" target="res/drawable-hdpi/ic_action_remove.png"/>
|
||||||
</engines>
|
<resource-file src="src/android/res/drawable-mdpi/ic_action_remove.png" target="res/drawable-mdpi/ic_action_remove.png"/>
|
||||||
|
<resource-file src="src/android/res/drawable-xhdpi/ic_action_remove.png" target="res/drawable-xhdpi/ic_action_remove.png"/>
|
||||||
<!-- android -->
|
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_remove.png" target="res/drawable-xxhdpi/ic_action_remove.png"/>
|
||||||
<platform name="android">
|
</platform>
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
<platform name="amazon-fireos">
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
<clobbers target="window.open" />
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
</js-module>
|
<clobbers target="window.open"/>
|
||||||
<config-file target="res/xml/config.xml" parent="/*">
|
</js-module>
|
||||||
<feature name="InAppBrowser">
|
<config-file target="res/xml/config.xml" parent="/*">
|
||||||
<param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser"/>
|
<feature name="InAppBrowser">
|
||||||
</feature>
|
<param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser"/>
|
||||||
</config-file>
|
</feature>
|
||||||
|
</config-file>
|
||||||
<source-file src="src/android/InAppBrowser.java" target-dir="src/org/apache/cordova/inappbrowser" />
|
<source-file src="src/amazon/InAppBrowser.java" target-dir="src/org/apache/cordova/inappbrowser"/>
|
||||||
<source-file src="src/android/InAppBrowserDialog.java" target-dir="src/org/apache/cordova/inappbrowser" />
|
<source-file src="src/android/InAppBrowserDialog.java" target-dir="src/org/apache/cordova/inappbrowser"/>
|
||||||
<source-file src="src/android/InAppChromeClient.java" target-dir="src/org/apache/cordova/inappbrowser" />
|
<source-file src="src/amazon/InAppChromeClient.java" target-dir="src/org/apache/cordova/inappbrowser"/>
|
||||||
|
<resource-file src="src/android/res/drawable-hdpi/ic_action_next_item.png" target="res/drawable-hdpi/ic_action_next_item.png"/>
|
||||||
<!-- drawable src/android/resources -->
|
<resource-file src="src/android/res/drawable-mdpi/ic_action_next_item.png" target="res/drawable-mdpi/ic_action_next_item.png"/>
|
||||||
<resource-file src="src/android/res/drawable-hdpi/ic_action_next_item.png" target="res/drawable-hdpi/ic_action_next_item.png" />
|
<resource-file src="src/android/res/drawable-xhdpi/ic_action_next_item.png" target="res/drawable-xhdpi/ic_action_next_item.png"/>
|
||||||
<resource-file src="src/android/res/drawable-mdpi/ic_action_next_item.png" target="res/drawable-mdpi/ic_action_next_item.png" />
|
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_next_item.png" target="res/drawable-xxhdpi/ic_action_next_item.png"/>
|
||||||
<resource-file src="src/android/res/drawable-xhdpi/ic_action_next_item.png" target="res/drawable-xhdpi/ic_action_next_item.png" />
|
<resource-file src="src/android/res/drawable-hdpi/ic_action_previous_item.png" target="res/drawable-hdpi/ic_action_previous_item.png"/>
|
||||||
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_next_item.png" target="res/drawable-xxhdpi/ic_action_next_item.png" />
|
<resource-file src="src/android/res/drawable-mdpi/ic_action_previous_item.png" target="res/drawable-mdpi/ic_action_previous_item.png"/>
|
||||||
|
<resource-file src="src/android/res/drawable-xhdpi/ic_action_previous_item.png" target="res/drawable-xhdpi/ic_action_previous_item.png"/>
|
||||||
<resource-file src="src/android/res/drawable-hdpi/ic_action_previous_item.png" target="res/drawable-hdpi/ic_action_previous_item.png" />
|
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_previous_item.png" target="res/drawable-xxhdpi/ic_action_previous_item.png"/>
|
||||||
<resource-file src="src/android/res/drawable-mdpi/ic_action_previous_item.png" target="res/drawable-mdpi/ic_action_previous_item.png" />
|
<resource-file src="src/android/res/drawable-hdpi/ic_action_remove.png" target="res/drawable-hdpi/ic_action_remove.png"/>
|
||||||
<resource-file src="src/android/res/drawable-xhdpi/ic_action_previous_item.png" target="res/drawable-xhdpi/ic_action_previous_item.png" />
|
<resource-file src="src/android/res/drawable-mdpi/ic_action_remove.png" target="res/drawable-mdpi/ic_action_remove.png"/>
|
||||||
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_previous_item.png" target="res/drawable-xxhdpi/ic_action_previous_item.png" />
|
<resource-file src="src/android/res/drawable-xhdpi/ic_action_remove.png" target="res/drawable-xhdpi/ic_action_remove.png"/>
|
||||||
|
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_remove.png" target="res/drawable-xxhdpi/ic_action_remove.png"/>
|
||||||
<resource-file src="src/android/res/drawable-hdpi/ic_action_remove.png" target="res/drawable-hdpi/ic_action_remove.png" />
|
</platform>
|
||||||
<resource-file src="src/android/res/drawable-mdpi/ic_action_remove.png" target="res/drawable-mdpi/ic_action_remove.png" />
|
<platform name="ubuntu">
|
||||||
<resource-file src="src/android/res/drawable-xhdpi/ic_action_remove.png" target="res/drawable-xhdpi/ic_action_remove.png" />
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_remove.png" target="res/drawable-xxhdpi/ic_action_remove.png" />
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
|
<clobbers target="window.open"/>
|
||||||
</platform>
|
</js-module>
|
||||||
|
<header-file src="src/ubuntu/inappbrowser.h"/>
|
||||||
<!-- amazon-fireos -->
|
<source-file src="src/ubuntu/inappbrowser.cpp"/>
|
||||||
<platform name="amazon-fireos">
|
<resource-file src="src/ubuntu/InAppBrowser.qml"/>
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
<resource-file src="src/ubuntu/InAppBrowser_escapeScript.js"/>
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
<resource-file src="src/ubuntu/close.png"/>
|
||||||
<clobbers target="window.open" />
|
</platform>
|
||||||
</js-module>
|
<platform name="ios">
|
||||||
<config-file target="res/xml/config.xml" parent="/*">
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
<feature name="InAppBrowser">
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
<param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser"/>
|
<clobbers target="window.open"/>
|
||||||
</feature>
|
</js-module>
|
||||||
</config-file>
|
<config-file target="config.xml" parent="/*">
|
||||||
|
<feature name="InAppBrowser">
|
||||||
<source-file src="src/amazon/InAppBrowser.java" target-dir="src/org/apache/cordova/inappbrowser" />
|
<param name="ios-package" value="CDVInAppBrowser"/>
|
||||||
<source-file src="src/android/InAppBrowserDialog.java" target-dir="src/org/apache/cordova/inappbrowser" />
|
</feature>
|
||||||
<source-file src="src/amazon/InAppChromeClient.java" target-dir="src/org/apache/cordova/inappbrowser" />
|
</config-file>
|
||||||
|
<header-file src="src/ios/CDVInAppBrowser.h"/>
|
||||||
<!-- drawable src/android/resources -->
|
<source-file src="src/ios/CDVInAppBrowser.m"/>
|
||||||
<resource-file src="src/android/res/drawable-hdpi/ic_action_next_item.png" target="res/drawable-hdpi/ic_action_next_item.png" />
|
<framework src="CoreGraphics.framework"/>
|
||||||
<resource-file src="src/android/res/drawable-mdpi/ic_action_next_item.png" target="res/drawable-mdpi/ic_action_next_item.png" />
|
</platform>
|
||||||
<resource-file src="src/android/res/drawable-xhdpi/ic_action_next_item.png" target="res/drawable-xhdpi/ic_action_next_item.png" />
|
<platform name="osx">
|
||||||
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_next_item.png" target="res/drawable-xxhdpi/ic_action_next_item.png" />
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
<resource-file src="src/android/res/drawable-hdpi/ic_action_previous_item.png" target="res/drawable-hdpi/ic_action_previous_item.png" />
|
<clobbers target="window.open"/>
|
||||||
<resource-file src="src/android/res/drawable-mdpi/ic_action_previous_item.png" target="res/drawable-mdpi/ic_action_previous_item.png" />
|
</js-module>
|
||||||
<resource-file src="src/android/res/drawable-xhdpi/ic_action_previous_item.png" target="res/drawable-xhdpi/ic_action_previous_item.png" />
|
<config-file target="config.xml" parent="/*">
|
||||||
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_previous_item.png" target="res/drawable-xxhdpi/ic_action_previous_item.png" />
|
<feature name="InAppBrowser">
|
||||||
|
<param name="osx-package" value="CDVInAppBrowser"/>
|
||||||
<resource-file src="src/android/res/drawable-hdpi/ic_action_remove.png" target="res/drawable-hdpi/ic_action_remove.png" />
|
</feature>
|
||||||
<resource-file src="src/android/res/drawable-mdpi/ic_action_remove.png" target="res/drawable-mdpi/ic_action_remove.png" />
|
</config-file>
|
||||||
<resource-file src="src/android/res/drawable-xhdpi/ic_action_remove.png" target="res/drawable-xhdpi/ic_action_remove.png" />
|
<header-file src="src/osx/CDVInAppBrowser.h"/>
|
||||||
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_remove.png" target="res/drawable-xxhdpi/ic_action_remove.png" />
|
<source-file src="src/osx/CDVInAppBrowser.m"/>
|
||||||
</platform>
|
</platform>
|
||||||
|
<platform name="wp7">
|
||||||
<!-- ubuntu -->
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
||||||
<platform name="ubuntu">
|
<Capability Name="ID_CAP_NETWORKING"/>
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
</config-file>
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
<config-file target="config.xml" parent="/*">
|
||||||
<clobbers target="window.open" />
|
<feature name="InAppBrowser">
|
||||||
</js-module>
|
<param name="wp-package" value="InAppBrowser"/>
|
||||||
<header-file src="src/ubuntu/inappbrowser.h" />
|
</feature>
|
||||||
<source-file src="src/ubuntu/inappbrowser.cpp" />
|
</config-file>
|
||||||
<resource-file src="src/ubuntu/InAppBrowser.qml" />
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
||||||
<resource-file src="src/ubuntu/InAppBrowser_escapeScript.js" />
|
<Capability Name="ID_CAP_NETWORKING"/>
|
||||||
<resource-file src="src/ubuntu/close.png" />
|
</config-file>
|
||||||
</platform>
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
<!-- ios -->
|
<clobbers target="window.open"/>
|
||||||
<platform name="ios">
|
</js-module>
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
<source-file src="src/wp/InAppBrowser.cs"/>
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
</platform>
|
||||||
<clobbers target="window.open" />
|
<platform name="wp8">
|
||||||
</js-module>
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
||||||
<config-file target="config.xml" parent="/*">
|
<Capability Name="ID_CAP_NETWORKING"/>
|
||||||
<feature name="InAppBrowser">
|
</config-file>
|
||||||
<param name="ios-package" value="CDVInAppBrowser" />
|
<config-file target="config.xml" parent="/*">
|
||||||
</feature>
|
<feature name="InAppBrowser">
|
||||||
</config-file>
|
<param name="wp-package" value="InAppBrowser"/>
|
||||||
|
</feature>
|
||||||
<header-file src="src/ios/CDVInAppBrowser.h" />
|
</config-file>
|
||||||
<source-file src="src/ios/CDVInAppBrowser.m" />
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
||||||
|
<Capability Name="ID_CAP_NETWORKING"/>
|
||||||
<framework src="CoreGraphics.framework" />
|
</config-file>
|
||||||
</platform>
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
<!-- osx -->
|
<clobbers target="window.open"/>
|
||||||
<platform name="osx">
|
</js-module>
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
<source-file src="src/wp/InAppBrowser.cs"/>
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
</platform>
|
||||||
<clobbers target="window.open" />
|
<platform name="windows8">
|
||||||
</js-module>
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
<config-file target="config.xml" parent="/*">
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
<feature name="InAppBrowser">
|
<clobbers target="window.open"/>
|
||||||
<param name="osx-package" value="CDVInAppBrowser" />
|
</js-module>
|
||||||
</feature>
|
<js-module src="www/windows8/InAppBrowserProxy.js" name="InAppBrowserProxy">
|
||||||
</config-file>
|
<merges target=""/>
|
||||||
|
</js-module>
|
||||||
<header-file src="src/osx/CDVInAppBrowser.h" />
|
</platform>
|
||||||
<source-file src="src/osx/CDVInAppBrowser.m" />
|
<platform name="windows">
|
||||||
</platform>
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
<!-- wp7 -->
|
<clobbers target="window.open"/>
|
||||||
<platform name="wp7">
|
</js-module>
|
||||||
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
<js-module src="src/windows/InAppBrowserProxy.js" name="InAppBrowserProxy">
|
||||||
<Capability Name="ID_CAP_NETWORKING"/>
|
<runs/>
|
||||||
</config-file>
|
</js-module>
|
||||||
|
<asset src="www/inappbrowser.css" target="css/inappbrowser.css"/>
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
</platform>
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
<platform name="firefoxos">
|
||||||
<clobbers target="window.open" />
|
<config-file target="config.xml" parent="/*">
|
||||||
</js-module>
|
<permission name="browser" description="Enables the app to implement a browser in an iframe." privileged="true"/>
|
||||||
<config-file target="config.xml" parent="/*">
|
</config-file>
|
||||||
<feature name="InAppBrowser">
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
<param name="wp-package" value="InAppBrowser"/>
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
</feature>
|
<clobbers target="window.open"/>
|
||||||
</config-file>
|
</js-module>
|
||||||
|
<js-module src="src/firefoxos/InAppBrowserProxy.js" name="InAppBrowserProxy">
|
||||||
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
<runs/>
|
||||||
<Capability Name="ID_CAP_NETWORKING" />
|
</js-module>
|
||||||
</config-file>
|
</platform>
|
||||||
|
<platform name="browser">
|
||||||
<source-file src="src/wp/InAppBrowser.cs" />
|
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
||||||
</platform>
|
<clobbers target="cordova.InAppBrowser.open"/>
|
||||||
|
<clobbers target="window.open"/>
|
||||||
<!-- wp8 -->
|
</js-module>
|
||||||
<platform name="wp8">
|
<js-module src="src/browser/InAppBrowserProxy.js" name="InAppBrowserProxy">
|
||||||
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
<runs/>
|
||||||
<Capability Name="ID_CAP_NETWORKING"/>
|
</js-module>
|
||||||
</config-file>
|
</platform>
|
||||||
|
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
|
||||||
<clobbers target="window.open" />
|
|
||||||
</js-module>
|
|
||||||
<config-file target="config.xml" parent="/*">
|
|
||||||
<feature name="InAppBrowser">
|
|
||||||
<param name="wp-package" value="InAppBrowser"/>
|
|
||||||
</feature>
|
|
||||||
</config-file>
|
|
||||||
|
|
||||||
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
|
||||||
<Capability Name="ID_CAP_NETWORKING" />
|
|
||||||
</config-file>
|
|
||||||
|
|
||||||
<source-file src="src/wp/InAppBrowser.cs" />
|
|
||||||
</platform>
|
|
||||||
|
|
||||||
<!-- windows8 -->
|
|
||||||
<platform name="windows8">
|
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
|
||||||
<clobbers target="window.open" />
|
|
||||||
</js-module>
|
|
||||||
<js-module src="www/windows8/InAppBrowserProxy.js" name="InAppBrowserProxy">
|
|
||||||
<merges target="" />
|
|
||||||
</js-module>
|
|
||||||
</platform>
|
|
||||||
|
|
||||||
<!-- windows universal apps (Windows 8.1, Windows Phone 8.1, Windows 8.0) -->
|
|
||||||
<platform name="windows">
|
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
|
||||||
<clobbers target="window.open" />
|
|
||||||
</js-module>
|
|
||||||
<js-module src="src/windows/InAppBrowserProxy.js" name="InAppBrowserProxy">
|
|
||||||
<runs />
|
|
||||||
</js-module>
|
|
||||||
<asset src="www/inappbrowser.css" target="css/inappbrowser.css" />
|
|
||||||
</platform>
|
|
||||||
|
|
||||||
<!-- firefoxos -->
|
|
||||||
<platform name="firefoxos">
|
|
||||||
<config-file target="config.xml" parent="/*">
|
|
||||||
<permission name="browser" description="Enables the app to implement a browser in an iframe." privileged="true"/>
|
|
||||||
</config-file>
|
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
|
||||||
<clobbers target="window.open" />
|
|
||||||
</js-module>
|
|
||||||
<js-module src="src/firefoxos/InAppBrowserProxy.js" name="InAppBrowserProxy">
|
|
||||||
<runs />
|
|
||||||
</js-module>
|
|
||||||
</platform>
|
|
||||||
|
|
||||||
<!-- browser -->
|
|
||||||
<platform name="browser">
|
|
||||||
<js-module src="www/inappbrowser.js" name="inappbrowser">
|
|
||||||
<clobbers target="cordova.InAppBrowser.open" />
|
|
||||||
<clobbers target="window.open" />
|
|
||||||
</js-module>
|
|
||||||
<js-module src="src/browser/InAppBrowserProxy.js" name="InAppBrowserProxy">
|
|
||||||
<runs />
|
|
||||||
</js-module>
|
|
||||||
</platform>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
@ -1,33 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<!--
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-inappbrowser-tests" version="1.7.0">
|
||||||
Licensed to the Apache Software Foundation (ASF) under one
|
<name>Cordova InAppBrowser Plugin Tests</name>
|
||||||
or more contributor license agreements. See the NOTICE file
|
<license>Apache 2.0</license>
|
||||||
distributed with this work for additional information
|
<dependency id="cordova-plugin-dialogs"/>
|
||||||
regarding copyright ownership. The ASF licenses this file
|
<js-module src="tests.js" name="tests"/>
|
||||||
to you under the Apache License, Version 2.0 (the
|
<asset src="resources" target="cdvtests/iab-resources"/>
|
||||||
"License"); you may not use this file except in compliance
|
|
||||||
with the License. You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing,
|
|
||||||
software distributed under the License is distributed on an
|
|
||||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
KIND, either express or implied. See the License for the
|
|
||||||
specific language governing permissions and limitations
|
|
||||||
under the License.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
||||||
id="cordova-plugin-inappbrowser-tests"
|
|
||||||
version="1.6.2-dev">
|
|
||||||
<name>Cordova InAppBrowser Plugin Tests</name>
|
|
||||||
<license>Apache 2.0</license>
|
|
||||||
|
|
||||||
<dependency id="cordova-plugin-dialogs" />
|
|
||||||
|
|
||||||
<js-module src="tests.js" name="tests">
|
|
||||||
</js-module>
|
|
||||||
|
|
||||||
<asset src="resources" target="cdvtests/iab-resources" />
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
Loading…
Reference in New Issue
Block a user