mirror of
https://gitee.com/shuto/cordova-plugin-network-information.git
synced 2025-04-28 22:50:09 +08:00
CB-12519 Updated version and RELEASENOTES.md for release 1.3.2
This commit is contained in:
parent
d8c1b0b503
commit
a3194f20df
@ -20,6 +20,12 @@
|
|||||||
-->
|
-->
|
||||||
# Release Notes
|
# Release Notes
|
||||||
|
|
||||||
|
### 1.3.2 (Feb 28, 2017)
|
||||||
|
* [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-11838](https://issues.apache.org/jira/browse/CB-11838) **iOS:** Unregister callback function at the right timing.
|
||||||
|
* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 8.1** build badges
|
||||||
|
|
||||||
### 1.3.1 (Dec 07, 2016)
|
### 1.3.1 (Dec 07, 2016)
|
||||||
* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version and RELEASENOTES.md for release 1.3.1
|
* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version and RELEASENOTES.md for release 1.3.1
|
||||||
* [CB-11230](https://issues.apache.org/jira/browse/CB-11230) [CB-11505](https://issues.apache.org/jira/browse/CB-11505) iOS: Add compatibility with IPv6
|
* [CB-11230](https://issues.apache.org/jira/browse/CB-11230) [CB-11505](https://issues.apache.org/jira/browse/CB-11505) iOS: Add compatibility with IPv6
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "cordova-plugin-network-information",
|
"name": "cordova-plugin-network-information",
|
||||||
"version": "1.3.2-dev",
|
"version": "1.3.2",
|
||||||
"description": "Cordova Network Information Plugin",
|
"description": "Cordova Network Information Plugin",
|
||||||
"types": "./types/index.d.ts",
|
"types": "./types/index.d.ts",
|
||||||
"cordova": {
|
"cordova": {
|
||||||
|
67
plugin.xml
67
plugin.xml
@ -1,85 +1,45 @@
|
|||||||
<?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" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-network-information" version="1.3.2">
|
||||||
Licensed to the Apache Software Foundation (ASF) under one
|
|
||||||
or more contributor license agreements. See the NOTICE file
|
|
||||||
distributed with this work for additional information
|
|
||||||
regarding copyright ownership. The ASF licenses this file
|
|
||||||
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"
|
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
id="cordova-plugin-network-information"
|
|
||||||
version="1.3.2-dev">
|
|
||||||
|
|
||||||
<name>Network Information</name>
|
<name>Network Information</name>
|
||||||
<description>Cordova Network Information Plugin</description>
|
<description>Cordova Network Information Plugin</description>
|
||||||
<license>Apache 2.0</license>
|
<license>Apache 2.0</license>
|
||||||
<keywords>cordova,network,information</keywords>
|
<keywords>cordova,network,information</keywords>
|
||||||
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git</repo>
|
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git</repo>
|
||||||
<issue>https://issues.apache.org/jira/browse/CB/component/12320640</issue>
|
<issue>https://issues.apache.org/jira/browse/CB/component/12320640</issue>
|
||||||
|
|
||||||
<js-module src="www/network.js" name="network">
|
<js-module src="www/network.js" name="network">
|
||||||
<clobbers target="navigator.connection"/>
|
<clobbers target="navigator.connection"/>
|
||||||
<clobbers target="navigator.network.connection"/>
|
<clobbers target="navigator.network.connection"/>
|
||||||
</js-module>
|
</js-module>
|
||||||
|
|
||||||
<js-module src="www/Connection.js" name="Connection">
|
<js-module src="www/Connection.js" name="Connection">
|
||||||
<clobbers target="Connection"/>
|
<clobbers target="Connection"/>
|
||||||
</js-module>
|
</js-module>
|
||||||
|
|
||||||
<!-- firefoxos -->
|
|
||||||
<platform name="firefoxos">
|
<platform name="firefoxos">
|
||||||
<js-module src="src/firefoxos/NetworkProxy.js" name="NetworkProxy">
|
<js-module src="src/firefoxos/NetworkProxy.js" name="NetworkProxy">
|
||||||
<runs/>
|
<runs/>
|
||||||
</js-module>
|
</js-module>
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<!-- android -->
|
|
||||||
<platform name="android">
|
<platform name="android">
|
||||||
<config-file target="res/xml/config.xml" parent="/*">
|
<config-file target="res/xml/config.xml" parent="/*">
|
||||||
<feature name="NetworkStatus">
|
<feature name="NetworkStatus">
|
||||||
<param name="android-package" value="org.apache.cordova.networkinformation.NetworkManager"/>
|
<param name="android-package" value="org.apache.cordova.networkinformation.NetworkManager"/>
|
||||||
</feature>
|
</feature>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<config-file target="AndroidManifest.xml" parent="/*">
|
<config-file target="AndroidManifest.xml" parent="/*">
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<source-file src="src/android/NetworkManager.java" target-dir="src/org/apache/cordova/networkinformation"/>
|
<source-file src="src/android/NetworkManager.java" target-dir="src/org/apache/cordova/networkinformation"/>
|
||||||
|
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<!-- amazon-fireos -->
|
|
||||||
<platform name="amazon-fireos">
|
<platform name="amazon-fireos">
|
||||||
<config-file target="res/xml/config.xml" parent="/*">
|
<config-file target="res/xml/config.xml" parent="/*">
|
||||||
<feature name="NetworkStatus">
|
<feature name="NetworkStatus">
|
||||||
<param name="android-package" value="org.apache.cordova.networkinformation.NetworkManager"/>
|
<param name="android-package" value="org.apache.cordova.networkinformation.NetworkManager"/>
|
||||||
</feature>
|
</feature>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<config-file target="AndroidManifest.xml" parent="/*">
|
<config-file target="AndroidManifest.xml" parent="/*">
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<source-file src="src/android/NetworkManager.java" target-dir="src/org/apache/cordova/networkinformation"/>
|
<source-file src="src/android/NetworkManager.java" target-dir="src/org/apache/cordova/networkinformation"/>
|
||||||
|
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
|
|
||||||
<!-- ubuntu -->
|
|
||||||
<platform name="ubuntu">
|
<platform name="ubuntu">
|
||||||
<config-file target="config.xml" parent="/*">
|
<config-file target="config.xml" parent="/*">
|
||||||
<feature name="Camera">
|
<feature name="Camera">
|
||||||
@ -89,83 +49,62 @@ xmlns:android="http://schemas.android.com/apk/res/android"
|
|||||||
<header-file src="src/ubuntu/network_information.h"/>
|
<header-file src="src/ubuntu/network_information.h"/>
|
||||||
<source-file src="src/ubuntu/network_information.cpp"/>
|
<source-file src="src/ubuntu/network_information.cpp"/>
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<!-- ios -->
|
|
||||||
<platform name="ios">
|
<platform name="ios">
|
||||||
<config-file target="config.xml" parent="/*">
|
<config-file target="config.xml" parent="/*">
|
||||||
<feature name="NetworkStatus">
|
<feature name="NetworkStatus">
|
||||||
<param name="ios-package" value="CDVConnection"/>
|
<param name="ios-package" value="CDVConnection"/>
|
||||||
</feature>
|
</feature>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<header-file src="src/ios/CDVConnection.h"/>
|
<header-file src="src/ios/CDVConnection.h"/>
|
||||||
<source-file src="src/ios/CDVConnection.m" />
|
|
||||||
<header-file src="src/ios/CDVReachability.h"/>
|
<header-file src="src/ios/CDVReachability.h"/>
|
||||||
|
<source-file src="src/ios/CDVConnection.m"/>
|
||||||
<source-file src="src/ios/CDVReachability.m"/>
|
<source-file src="src/ios/CDVReachability.m"/>
|
||||||
<framework src="SystemConfiguration.framework" weak="true"/>
|
<framework src="SystemConfiguration.framework" weak="true"/>
|
||||||
<framework src="CoreTelephony.framework"/>
|
<framework src="CoreTelephony.framework"/>
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<!-- blackberry10 -->
|
|
||||||
<platform name="blackberry10">
|
<platform name="blackberry10">
|
||||||
<source-file src="src/blackberry10/index.js" target-dir="NetworkStatus"/>
|
<source-file src="src/blackberry10/index.js" target-dir="NetworkStatus"/>
|
||||||
<config-file target="www/config.xml" parent="/widget">
|
<config-file target="www/config.xml" parent="/widget">
|
||||||
<feature name="NetworkStatus" value="NetworkStatus"/>
|
<feature name="NetworkStatus" value="NetworkStatus"/>
|
||||||
</config-file>
|
</config-file>
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<!-- wp7 -->
|
|
||||||
<platform name="wp7">
|
<platform name="wp7">
|
||||||
<config-file target="config.xml" parent="/*">
|
<config-file target="config.xml" parent="/*">
|
||||||
<feature name="NetworkStatus">
|
<feature name="NetworkStatus">
|
||||||
<param name="wp-package" value="NetworkStatus"/>
|
<param name="wp-package" value="NetworkStatus"/>
|
||||||
</feature>
|
</feature>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
||||||
<Capability Name="ID_CAP_NETWORKING"/>
|
<Capability Name="ID_CAP_NETWORKING"/>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<source-file src="src/wp/NetworkStatus.cs"/>
|
<source-file src="src/wp/NetworkStatus.cs"/>
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<!-- wp8 -->
|
|
||||||
<platform name="wp8">
|
<platform name="wp8">
|
||||||
<config-file target="config.xml" parent="/*">
|
<config-file target="config.xml" parent="/*">
|
||||||
<feature name="NetworkStatus">
|
<feature name="NetworkStatus">
|
||||||
<param name="wp-package" value="NetworkStatus"/>
|
<param name="wp-package" value="NetworkStatus"/>
|
||||||
</feature>
|
</feature>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
||||||
<Capability Name="ID_CAP_NETWORKING"/>
|
<Capability Name="ID_CAP_NETWORKING"/>
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<source-file src="src/wp/NetworkStatus.cs"/>
|
<source-file src="src/wp/NetworkStatus.cs"/>
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<!-- windows8 -->
|
|
||||||
<platform name="windows8">
|
<platform name="windows8">
|
||||||
<js-module src="src/windows/NetworkInfoProxy.js" name="NetworkInfoProxy">
|
<js-module src="src/windows/NetworkInfoProxy.js" name="NetworkInfoProxy">
|
||||||
<runs/>
|
<runs/>
|
||||||
</js-module>
|
</js-module>
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<!-- windows -->
|
|
||||||
<platform name="windows">
|
<platform name="windows">
|
||||||
<js-module src="src/windows/NetworkInfoProxy.js" name="NetworkInfoProxy">
|
<js-module src="src/windows/NetworkInfoProxy.js" name="NetworkInfoProxy">
|
||||||
<runs/>
|
<runs/>
|
||||||
</js-module>
|
</js-module>
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<!-- tizen -->
|
|
||||||
<platform name="tizen">
|
<platform name="tizen">
|
||||||
<js-module src="src/tizen/NetworkProxy.js" name="NetworkProxy">
|
<js-module src="src/tizen/NetworkProxy.js" name="NetworkProxy">
|
||||||
<runs/>
|
<runs/>
|
||||||
</js-module>
|
</js-module>
|
||||||
</platform>
|
</platform>
|
||||||
|
|
||||||
<!-- browser -->
|
|
||||||
<platform name="browser">
|
<platform name="browser">
|
||||||
<js-module src="src/browser/network.js" name="NetworkInfoProxy">
|
<js-module src="src/browser/network.js" name="NetworkInfoProxy">
|
||||||
<runs/>
|
<runs/>
|
||||||
|
@ -1,30 +1,6 @@
|
|||||||
<?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" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-network-information-tests" version="1.3.2">
|
||||||
Licensed to the Apache Software Foundation (ASF) under one
|
|
||||||
or more contributor license agreements. See the NOTICE file
|
|
||||||
distributed with this work for additional information
|
|
||||||
regarding copyright ownership. The ASF licenses this file
|
|
||||||
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"
|
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
id="cordova-plugin-network-information-tests"
|
|
||||||
version="1.3.2-dev">
|
|
||||||
<name>Cordova Network Information Plugin Tests</name>
|
<name>Cordova Network Information Plugin Tests</name>
|
||||||
<license>Apache 2.0</license>
|
<license>Apache 2.0</license>
|
||||||
|
<js-module src="tests.js" name="tests"/>
|
||||||
<js-module src="tests.js" name="tests">
|
|
||||||
</js-module>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user