Set VERSION to 1.7.1-dev (via coho)

This commit is contained in:
Steve Gill 2017-02-28 17:56:00 -08:00
parent a74510ba00
commit 0ddc31d3f4
3 changed files with 275 additions and 185 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "cordova-plugin-inappbrowser", "name": "cordova-plugin-inappbrowser",
"version": "1.7.0", "version": "1.7.1-dev",
"description": "Cordova InAppBrowser Plugin", "description": "Cordova InAppBrowser Plugin",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"cordova": { "cordova": {

View File

@ -1,178 +1,243 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-inappbrowser" version="1.7.0"> <!--
<name>InAppBrowser</name> Licensed to the Apache Software Foundation (ASF) under one
<description>Cordova InAppBrowser Plugin</description> or more contributor license agreements. See the NOTICE file
<license>Apache 2.0</license> distributed with this work for additional information
<keywords>cordova,in,app,browser,inappbrowser</keywords> regarding copyright ownership. The ASF licenses this file
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser.git</repo> to you under the Apache License, Version 2.0 (the
<issue>https://issues.apache.org/jira/browse/CB/component/12320641</issue> "License"); you may not use this file except in compliance
<engines> with the License. You may obtain a copy of the License at
<engine name="cordova" version=">=3.1.0"/>
</engines> http://www.apache.org/licenses/LICENSE-2.0
<platform name="android">
<js-module src="www/inappbrowser.js" name="inappbrowser"> Unless required by applicable law or agreed to in writing,
<clobbers target="cordova.InAppBrowser.open"/> software distributed under the License is distributed on an
<clobbers target="window.open"/> "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
</js-module> KIND, either express or implied. See the License for the
<config-file target="res/xml/config.xml" parent="/*"> specific language governing permissions and limitations
<feature name="InAppBrowser"> under the License.
<param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser"/> -->
</feature>
</config-file> <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
<source-file src="src/android/InAppBrowser.java" target-dir="src/org/apache/cordova/inappbrowser"/> id="cordova-plugin-inappbrowser"
<source-file src="src/android/InAppBrowserDialog.java" target-dir="src/org/apache/cordova/inappbrowser"/> version="1.7.1-dev">
<source-file src="src/android/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"/> <name>InAppBrowser</name>
<resource-file src="src/android/res/drawable-mdpi/ic_action_next_item.png" target="res/drawable-mdpi/ic_action_next_item.png"/> <description>Cordova InAppBrowser Plugin</description>
<resource-file src="src/android/res/drawable-xhdpi/ic_action_next_item.png" target="res/drawable-xhdpi/ic_action_next_item.png"/> <license>Apache 2.0</license>
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_next_item.png" target="res/drawable-xxhdpi/ic_action_next_item.png"/> <keywords>cordova,in,app,browser,inappbrowser</keywords>
<resource-file src="src/android/res/drawable-hdpi/ic_action_previous_item.png" target="res/drawable-hdpi/ic_action_previous_item.png"/> <repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser.git</repo>
<resource-file src="src/android/res/drawable-mdpi/ic_action_previous_item.png" target="res/drawable-mdpi/ic_action_previous_item.png"/> <issue>https://issues.apache.org/jira/browse/CB/component/12320641</issue>
<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-xxhdpi/ic_action_previous_item.png" target="res/drawable-xxhdpi/ic_action_previous_item.png"/> <engines>
<resource-file src="src/android/res/drawable-hdpi/ic_action_remove.png" target="res/drawable-hdpi/ic_action_remove.png"/> <engine name="cordova" version=">=3.1.0" /><!-- Needs cordova/urlutil -->
<resource-file src="src/android/res/drawable-mdpi/ic_action_remove.png" target="res/drawable-mdpi/ic_action_remove.png"/> </engines>
<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"/> <!-- android -->
</platform> <platform name="android">
<platform name="amazon-fireos"> <js-module src="www/inappbrowser.js" name="inappbrowser">
<js-module src="www/inappbrowser.js" name="inappbrowser"> <clobbers target="cordova.InAppBrowser.open" />
<clobbers target="cordova.InAppBrowser.open"/> <clobbers target="window.open" />
<clobbers target="window.open"/> </js-module>
</js-module> <config-file target="res/xml/config.xml" parent="/*">
<config-file target="res/xml/config.xml" parent="/*"> <feature name="InAppBrowser">
<feature name="InAppBrowser"> <param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser"/>
<param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser"/> </feature>
</feature> </config-file>
</config-file>
<source-file src="src/amazon/InAppBrowser.java" target-dir="src/org/apache/cordova/inappbrowser"/> <source-file src="src/android/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/amazon/InAppChromeClient.java" target-dir="src/org/apache/cordova/inappbrowser"/> <source-file src="src/android/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"/>
<resource-file src="src/android/res/drawable-mdpi/ic_action_next_item.png" target="res/drawable-mdpi/ic_action_next_item.png"/> <!-- drawable src/android/resources -->
<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_next_item.png" target="res/drawable-hdpi/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-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_previous_item.png" target="res/drawable-hdpi/ic_action_previous_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_previous_item.png" target="res/drawable-mdpi/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-xhdpi/ic_action_previous_item.png" target="res/drawable-xhdpi/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-hdpi/ic_action_previous_item.png" target="res/drawable-hdpi/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-mdpi/ic_action_previous_item.png" target="res/drawable-mdpi/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-xhdpi/ic_action_previous_item.png" target="res/drawable-xhdpi/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_previous_item.png" target="res/drawable-xxhdpi/ic_action_previous_item.png" />
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_remove.png" target="res/drawable-xxhdpi/ic_action_remove.png"/>
</platform> <resource-file src="src/android/res/drawable-hdpi/ic_action_remove.png" target="res/drawable-hdpi/ic_action_remove.png" />
<platform name="ubuntu"> <resource-file src="src/android/res/drawable-mdpi/ic_action_remove.png" target="res/drawable-mdpi/ic_action_remove.png" />
<js-module src="www/inappbrowser.js" name="inappbrowser"> <resource-file src="src/android/res/drawable-xhdpi/ic_action_remove.png" target="res/drawable-xhdpi/ic_action_remove.png" />
<clobbers target="cordova.InAppBrowser.open"/> <resource-file src="src/android/res/drawable-xxhdpi/ic_action_remove.png" target="res/drawable-xxhdpi/ic_action_remove.png" />
<clobbers target="window.open"/>
</js-module> </platform>
<header-file src="src/ubuntu/inappbrowser.h"/>
<source-file src="src/ubuntu/inappbrowser.cpp"/> <!-- amazon-fireos -->
<resource-file src="src/ubuntu/InAppBrowser.qml"/> <platform name="amazon-fireos">
<resource-file src="src/ubuntu/InAppBrowser_escapeScript.js"/> <js-module src="www/inappbrowser.js" name="inappbrowser">
<resource-file src="src/ubuntu/close.png"/> <clobbers target="cordova.InAppBrowser.open" />
</platform> <clobbers target="window.open" />
<platform name="ios"> </js-module>
<js-module src="www/inappbrowser.js" name="inappbrowser"> <config-file target="res/xml/config.xml" parent="/*">
<clobbers target="cordova.InAppBrowser.open"/> <feature name="InAppBrowser">
<clobbers target="window.open"/> <param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser"/>
</js-module> </feature>
<config-file target="config.xml" parent="/*"> </config-file>
<feature name="InAppBrowser">
<param name="ios-package" value="CDVInAppBrowser"/> <source-file src="src/amazon/InAppBrowser.java" target-dir="src/org/apache/cordova/inappbrowser" />
</feature> <source-file src="src/android/InAppBrowserDialog.java" target-dir="src/org/apache/cordova/inappbrowser" />
</config-file> <source-file src="src/amazon/InAppChromeClient.java" target-dir="src/org/apache/cordova/inappbrowser" />
<header-file src="src/ios/CDVInAppBrowser.h"/>
<source-file src="src/ios/CDVInAppBrowser.m"/> <!-- drawable src/android/resources -->
<framework src="CoreGraphics.framework"/> <resource-file src="src/android/res/drawable-hdpi/ic_action_next_item.png" target="res/drawable-hdpi/ic_action_next_item.png" />
</platform> <resource-file src="src/android/res/drawable-mdpi/ic_action_next_item.png" target="res/drawable-mdpi/ic_action_next_item.png" />
<platform name="osx"> <resource-file src="src/android/res/drawable-xhdpi/ic_action_next_item.png" target="res/drawable-xhdpi/ic_action_next_item.png" />
<js-module src="www/inappbrowser.js" name="inappbrowser"> <resource-file src="src/android/res/drawable-xxhdpi/ic_action_next_item.png" target="res/drawable-xxhdpi/ic_action_next_item.png" />
<clobbers target="cordova.InAppBrowser.open"/>
<clobbers target="window.open"/> <resource-file src="src/android/res/drawable-hdpi/ic_action_previous_item.png" target="res/drawable-hdpi/ic_action_previous_item.png" />
</js-module> <resource-file src="src/android/res/drawable-mdpi/ic_action_previous_item.png" target="res/drawable-mdpi/ic_action_previous_item.png" />
<config-file target="config.xml" parent="/*"> <resource-file src="src/android/res/drawable-xhdpi/ic_action_previous_item.png" target="res/drawable-xhdpi/ic_action_previous_item.png" />
<feature name="InAppBrowser"> <resource-file src="src/android/res/drawable-xxhdpi/ic_action_previous_item.png" target="res/drawable-xxhdpi/ic_action_previous_item.png" />
<param name="osx-package" value="CDVInAppBrowser"/>
</feature> <resource-file src="src/android/res/drawable-hdpi/ic_action_remove.png" target="res/drawable-hdpi/ic_action_remove.png" />
</config-file> <resource-file src="src/android/res/drawable-mdpi/ic_action_remove.png" target="res/drawable-mdpi/ic_action_remove.png" />
<header-file src="src/osx/CDVInAppBrowser.h"/> <resource-file src="src/android/res/drawable-xhdpi/ic_action_remove.png" target="res/drawable-xhdpi/ic_action_remove.png" />
<source-file src="src/osx/CDVInAppBrowser.m"/> <resource-file src="src/android/res/drawable-xxhdpi/ic_action_remove.png" target="res/drawable-xxhdpi/ic_action_remove.png" />
</platform> </platform>
<platform name="wp7">
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities"> <!-- ubuntu -->
<Capability Name="ID_CAP_NETWORKING"/> <platform name="ubuntu">
</config-file> <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="wp-package" value="InAppBrowser"/> </js-module>
</feature> <header-file src="src/ubuntu/inappbrowser.h" />
</config-file> <source-file src="src/ubuntu/inappbrowser.cpp" />
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities"> <resource-file src="src/ubuntu/InAppBrowser.qml" />
<Capability Name="ID_CAP_NETWORKING"/> <resource-file src="src/ubuntu/InAppBrowser_escapeScript.js" />
</config-file> <resource-file src="src/ubuntu/close.png" />
<js-module src="www/inappbrowser.js" name="inappbrowser"> </platform>
<clobbers target="cordova.InAppBrowser.open"/>
<clobbers target="window.open"/> <!-- ios -->
</js-module> <platform name="ios">
<source-file src="src/wp/InAppBrowser.cs"/> <js-module src="www/inappbrowser.js" name="inappbrowser">
</platform> <clobbers target="cordova.InAppBrowser.open" />
<platform name="wp8"> <clobbers target="window.open" />
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities"> </js-module>
<Capability Name="ID_CAP_NETWORKING"/> <config-file target="config.xml" parent="/*">
</config-file> <feature name="InAppBrowser">
<config-file target="config.xml" parent="/*"> <param name="ios-package" value="CDVInAppBrowser" />
<feature name="InAppBrowser"> </feature>
<param name="wp-package" value="InAppBrowser"/> </config-file>
</feature>
</config-file> <header-file src="src/ios/CDVInAppBrowser.h" />
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities"> <source-file src="src/ios/CDVInAppBrowser.m" />
<Capability Name="ID_CAP_NETWORKING"/>
</config-file> <framework src="CoreGraphics.framework" />
<js-module src="www/inappbrowser.js" name="inappbrowser"> </platform>
<clobbers target="cordova.InAppBrowser.open"/>
<clobbers target="window.open"/> <!-- osx -->
</js-module> <platform name="osx">
<source-file src="src/wp/InAppBrowser.cs"/> <js-module src="www/inappbrowser.js" name="inappbrowser">
</platform> <clobbers target="cordova.InAppBrowser.open" />
<platform name="windows8"> <clobbers target="window.open" />
<js-module src="www/inappbrowser.js" name="inappbrowser"> </js-module>
<clobbers target="cordova.InAppBrowser.open"/> <config-file target="config.xml" parent="/*">
<clobbers target="window.open"/> <feature name="InAppBrowser">
</js-module> <param name="osx-package" value="CDVInAppBrowser" />
<js-module src="www/windows8/InAppBrowserProxy.js" name="InAppBrowserProxy"> </feature>
<merges target=""/> </config-file>
</js-module>
</platform> <header-file src="src/osx/CDVInAppBrowser.h" />
<platform name="windows"> <source-file src="src/osx/CDVInAppBrowser.m" />
<js-module src="www/inappbrowser.js" name="inappbrowser"> </platform>
<clobbers target="cordova.InAppBrowser.open"/>
<clobbers target="window.open"/> <!-- wp7 -->
</js-module> <platform name="wp7">
<js-module src="src/windows/InAppBrowserProxy.js" name="InAppBrowserProxy"> <config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
<runs/> <Capability Name="ID_CAP_NETWORKING"/>
</js-module> </config-file>
<asset src="www/inappbrowser.css" target="css/inappbrowser.css"/>
</platform> <js-module src="www/inappbrowser.js" name="inappbrowser">
<platform name="firefoxos"> <clobbers target="cordova.InAppBrowser.open" />
<config-file target="config.xml" parent="/*"> <clobbers target="window.open" />
<permission name="browser" description="Enables the app to implement a browser in an iframe." privileged="true"/> </js-module>
</config-file> <config-file target="config.xml" parent="/*">
<js-module src="www/inappbrowser.js" name="inappbrowser"> <feature name="InAppBrowser">
<clobbers target="cordova.InAppBrowser.open"/> <param name="wp-package" value="InAppBrowser"/>
<clobbers target="window.open"/> </feature>
</js-module> </config-file>
<js-module src="src/firefoxos/InAppBrowserProxy.js" name="InAppBrowserProxy">
<runs/> <config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
</js-module> <Capability Name="ID_CAP_NETWORKING" />
</platform> </config-file>
<platform name="browser">
<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"/>
</js-module> <!-- wp8 -->
<js-module src="src/browser/InAppBrowserProxy.js" name="InAppBrowserProxy"> <platform name="wp8">
<runs/> <config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
</js-module> <Capability Name="ID_CAP_NETWORKING"/>
</platform> </config-file>
<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>

View File

@ -1,8 +1,33 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-inappbrowser-tests" version="1.7.0"> <!--
<name>Cordova InAppBrowser Plugin Tests</name> Licensed to the Apache Software Foundation (ASF) under one
<license>Apache 2.0</license> or more contributor license agreements. See the NOTICE file
<dependency id="cordova-plugin-dialogs"/> distributed with this work for additional information
<js-module src="tests.js" name="tests"/> regarding copyright ownership. The ASF licenses this file
<asset src="resources" target="cdvtests/iab-resources"/> to you under the Apache License, Version 2.0 (the
"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.7.1-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>