cordova-plugin-hotspot
Advanced tools
Comparing version 1.2.8 to 1.2.9-develop-5
@@ -1,3 +0,3 @@ | ||
<a name="1.2.8"></a> | ||
## [1.2.8](https://github.com/hypery2k/cordova-hotspot-plugin/compare/v1.2.7...v1.2.8) (2017-02-24) | ||
<a name="1.2.9"></a> | ||
## [1.2.9](https://github.com/hypery2k/cordova-hotspot-plugin/compare/v1.2.7...v1.2.9) (2017-08-11) | ||
@@ -7,6 +7,12 @@ | ||
* **API-23:** Corrected permission usage ([f4383ca](https://github.com/hypery2k/cordova-hotspot-plugin/commit/f4383ca)) | ||
* **API-23:** Corrected permission usage ([d69a4b5](https://github.com/hypery2k/cordova-hotspot-plugin/commit/d69a4b5)) | ||
### Features | ||
* **typescript:** Adding typescript support ([6a6b168](https://github.com/hypery2k/cordova-hotspot-plugin/commit/6a6b168)) | ||
<a name="1.2.6"></a> | ||
@@ -13,0 +19,0 @@ ## [1.2.6](https://github.com/hypery2k/cordova-hotspot-plugin/compare/v1.2.5...v1.2.6) (2016-09-09) |
{ | ||
"name": "cordova-plugin-hotspot", | ||
"version": "1.2.8", | ||
"version": "1.2.9-develop-5", | ||
"description": "Cordova WiFi Hotspot Plugin", | ||
@@ -23,4 +23,8 @@ "cordova": { | ||
"build": "echo ''", | ||
"pretest": "rm -rf tmp && mkdir -p tmp && cd tmp && git clone https://github.com/simpligility/maven-android-sdk-deployer.git && cd maven-android-sdk-deployer/ && mvn install -P 6.0 && ls ~/.m2/repository/android/android/", | ||
"test": "cd tmp && git clone https://github.com/apache/cordova-app-hello-world.git && cd cordova-app-hello-world && cp -rp template_src/ . && cordova platform add android && cordova plugin add cordova-plugin-compat && cordova build && cd ../../test/android && ./gradlew build && cd ../../tmp/cordova-app-hello-world && cordova plugin add ../.. && cordova plugin add http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework.git", | ||
"prepare:sdk": "mkdir -p tmp && cd tmp && git clone https://github.com/simpligility/maven-android-sdk-deployer.git && cd maven-android-sdk-deployer/ && mvn install -P 6.0 && ls ~/.m2/repository/android/android/", | ||
"prepare:test-app": "rm -rf tmp && mkdir -p tmp && cd tmp && git clone https://github.com/apache/cordova-app-hello-world.git && cd cordova-app-hello-world && mv template_src/* . && cordova platform add android && cordova plugin add cordova-plugin-compat && cordova build", | ||
"pretest": "npm run prepare:test-app", | ||
"test": "npm run test:unit && npm run test:plugin", | ||
"test:unit": "cd test/android && ./gradlew clean build", | ||
"test:plugin": "cd tmp/cordova-app-hello-world && cordova plugin add ../..", | ||
"posttest": "jsdoc -c jsdoc.json && jsdoc2md www/HotSpotPlugin.js | sed s/hotSpotPlugin/cordova.plugins.hotspot/g | sed s/HotSpotPlugin/cordova.plugins.hotspot/g > PLUGIN_USAGE.MD", | ||
@@ -31,6 +35,8 @@ "jsdoc": "jsdoc -c ./jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md ./src && jsdoc2md www/HotSpotPlugin.js > ./dist/PLUGIN_USAGE.MD && cat ./dist/PLUGIN_USAGE.MD | sed s/hotSpotPlugin/cordova.plugins.hotspot/g | sed s/HotSpotPlugin/cordova.plugins.hotspot/g > PLUGIN_USAGE.MD", | ||
"release:pre": "npm run build && npm run test", | ||
"release:post": "npm run changelog && npm run changelog:add", | ||
"release:major": "npm version major && npm run release:pre && git push origin && git push origin --tags && npm run release:post && npm publish", | ||
"release:minor": "npm version minor && npm run release:pre && git push origin && git push origin --tags && npm run release:post && npm publish", | ||
"release:patch": "npm version patch && npm run release:pre && git push origin && git push origin --tags && npm run release:post && npm publish" | ||
"release:post": "node etc/release.js && git add plugin.xml && git commit -m 'Update plugin' && npm run changelog && npm run changelog:add", | ||
"release:major": "npm run release:pre && npm version major && git push origin && git push origin --tags && npm run release:post && npm run version-and-push", | ||
"release:minor": "npm run release:pre && npm version minor && git push origin && git push origin --tags && npm run release:post && npm run version-and-push", | ||
"release:patch": "npm run release:pre && npm version patch && git push origin && git push origin --tags && npm run release:post && npm run version-and-push", | ||
"version-and-push": "git push origin && git push origin --tags && npm run publish-and-merge", | ||
"publish-and-merge": "git checkout master && git merge develop && git push && git checkout develop && npm publish" | ||
}, | ||
@@ -40,7 +46,8 @@ "author": "Martin Reinhardt", | ||
"devDependencies": { | ||
"conventional-changelog-cli": "1.2.0", | ||
"conventional-changelog-cli": "1.3.0", | ||
"ink-docstrap": "1.3.0", | ||
"jsdoc": "3.4.3", | ||
"jsdoc-to-markdown": "2.0.1" | ||
"jsdoc": "3.5.0", | ||
"jsdoc-to-markdown": "3.0.0", | ||
"xml2js": "0.4.17" | ||
} | ||
} |
@@ -145,7 +145,7 @@ ## Objects | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| callback | <code>[isAvailableCallback](#isAvailableCallback)</code> | A callback function which is invoked on success. | | ||
| callback | [<code>isAvailableCallback</code>](#isAvailableCallback) | A callback function which is invoked on success. | | ||
@@ -157,8 +157,8 @@ <a name="cordova.plugins.hotspot+getWriteSettings"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | | ||
| --- | --- | | ||
| successCB | <code>[getWriteSettingsCallback](#getWriteSettingsCallback)</code> | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | | ||
| successCB | [<code>getWriteSettingsCallback</code>](#getWriteSettingsCallback) | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | | ||
@@ -170,3 +170,3 @@ <a name="cordova.plugins.hotspot+requestWriteSettings"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -183,8 +183,8 @@ | Param | Type | Description | | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| callback | <code>[toggleWifiCallback](#toggleWifiCallback)</code> | A callback function which is invoked on success. | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when errors occurr | | ||
| callback | [<code>toggleWifiCallback</code>](#toggleWifiCallback) | A callback function which is invoked on success. | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when errors occurr | | ||
@@ -196,3 +196,3 @@ <a name="cordova.plugins.hotspot+createHotspot"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -204,4 +204,4 @@ | Param | Type | Description | | ||
| password | <code>string</code> | password to use | | ||
| successCB | <code>[createHotspotCallback](#createHotspotCallback)</code> | A callback function to be called when start was successful | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when connection was not successful | | ||
| successCB | [<code>createHotspotCallback</code>](#createHotspotCallback) | A callback function to be called when start was successful | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when connection was not successful | | ||
@@ -213,8 +213,8 @@ <a name="cordova.plugins.hotspot+startHotspot"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[startHotspotCallback](#startHotspotCallback)</code> | A callback function to be called when start was successful | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when start was not successful | | ||
| successCB | [<code>startHotspotCallback</code>](#startHotspotCallback) | A callback function to be called when start was successful | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when start was not successful | | ||
@@ -226,8 +226,8 @@ <a name="cordova.plugins.hotspot+stopHotspot"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[stopHotspotCallback](#stopHotspotCallback)</code> | A callback function to be called when stop was successful | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when stop was not successful | | ||
| successCB | [<code>stopHotspotCallback</code>](#stopHotspotCallback) | A callback function to be called when stop was successful | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when stop was not successful | | ||
@@ -239,8 +239,8 @@ <a name="cordova.plugins.hotspot+isHotspotEnabled"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[isHotspotEnabledCallback](#isHotspotEnabledCallback)</code> | A callback function with the result | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | A error callback function | | ||
| successCB | [<code>isHotspotEnabledCallback</code>](#isHotspotEnabledCallback) | A callback function with the result | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | A error callback function | | ||
@@ -252,8 +252,8 @@ <a name="cordova.plugins.hotspot+getAllHotspotDevices"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| A | <code>[getAllHotspotDevicesCallback](#getAllHotspotDevicesCallback)</code> | callback function when hotspot connection is active and info was rad. | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| A | [<code>getAllHotspotDevicesCallback</code>](#getAllHotspotDevicesCallback) | callback function when hotspot connection is active and info was rad. | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -265,3 +265,3 @@ <a name="cordova.plugins.hotspot+connectToWifi"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -272,4 +272,4 @@ | Param | Type | Description | | ||
| password | <code>string</code> | password to use | | ||
| successCB | <code>[connectToWifiCallback](#connectToWifiCallback)</code> | A callback function to be called when connected successful | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when connection was not successful | | ||
| successCB | [<code>connectToWifiCallback</code>](#connectToWifiCallback) | A callback function to be called when connected successful | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when connection was not successful | | ||
@@ -281,3 +281,3 @@ <a name="cordova.plugins.hotspot+connectToWifiAuthEncrypt"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -290,4 +290,4 @@ | Param | Type | Description | | ||
| encryption | <code>Array.<string></code> | mode use (CCMP, TKIP, WEP104, WEP40) | | ||
| successCB | <code>[connectToWifiAuthEncryptCallback](#connectToWifiAuthEncryptCallback)</code> | A callback function to be called when connected successful | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when connection was not successful | | ||
| successCB | [<code>connectToWifiAuthEncryptCallback</code>](#connectToWifiAuthEncryptCallback) | A callback function to be called when connected successful | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when connection was not successful | | ||
@@ -299,3 +299,3 @@ <a name="cordova.plugins.hotspot+configureHotspot"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -307,4 +307,4 @@ | Param | Type | Description | | ||
| password | <code>string</code> | password to use | | ||
| successCB | <code>[configureHotspotCallback](#configureHotspotCallback)</code> | A callback function to be called when connected successful | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when configuration was not successful | | ||
| successCB | [<code>configureHotspotCallback</code>](#configureHotspotCallback) | A callback function to be called when connected successful | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when configuration was not successful | | ||
@@ -316,3 +316,3 @@ <a name="cordova.plugins.hotspot+addWifiNetwork"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -325,3 +325,3 @@ | Param | Type | Description | | ||
| successCB | <code>function</code> | A callback function to be called when adding successful | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when adding was not successful | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when adding was not successful | | ||
@@ -333,3 +333,3 @@ <a name="cordova.plugins.hotspot+removeWifiNetwork"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -340,3 +340,3 @@ | Param | Type | Description | | ||
| successCB | <code>function</code> | A callback function function to be called when removal was successful | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when removal was not successful | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when removal was not successful | | ||
@@ -348,8 +348,8 @@ <a name="cordova.plugins.hotspot+isConnectedToInternet"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[isConnectedToInternetCallback](#isConnectedToInternetCallback)</code> | A callback function to be called with the result | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>isConnectedToInternetCallback</code>](#isConnectedToInternetCallback) | A callback function to be called with the result | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -361,8 +361,8 @@ <a name="cordova.plugins.hotspot+isConnectedToInternetViaWifi"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[isConnectedToInternetViaWifiCallback](#isConnectedToInternetViaWifiCallback)</code> | A callback function to be called with the result | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>isConnectedToInternetViaWifiCallback</code>](#isConnectedToInternetViaWifiCallback) | A callback function to be called with the result | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -374,8 +374,8 @@ <a name="cordova.plugins.hotspot+isWifiOn"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[isWifiOnCallback](#isWifiOnCallback)</code> | A callback function with the result | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>isWifiOnCallback</code>](#isWifiOnCallback) | A callback function with the result | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -387,8 +387,8 @@ <a name="cordova.plugins.hotspot+isWifiSupported"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[isWifiSupportedCallback](#isWifiSupportedCallback)</code> | A callback function with the result | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>isWifiSupportedCallback</code>](#isWifiSupportedCallback) | A callback function with the result | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -400,8 +400,8 @@ <a name="cordova.plugins.hotspot+isWifiDirectSupported"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[isWifiDirectSupportedCallback](#isWifiDirectSupportedCallback)</code> | A callback function with the result | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>isWifiDirectSupportedCallback</code>](#isWifiDirectSupportedCallback) | A callback function with the result | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -413,8 +413,8 @@ <a name="cordova.plugins.hotspot+scanWifi"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[scanWifiCallback](#scanWifiCallback)</code> | A callback function to be called when scan is started | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>scanWifiCallback</code>](#scanWifiCallback) | A callback function to be called when scan is started | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -426,3 +426,3 @@ <a name="cordova.plugins.hotspot+scanWifiByLevel"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -432,3 +432,3 @@ | Param | Type | Description | | ||
| successCB | <code>scanWifiByLevelCallback</code> | A callback function to be called when scan is started | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -440,3 +440,3 @@ <a name="cordova.plugins.hotspot+startWifiPeriodicallyScan"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -447,4 +447,4 @@ | Param | Type | Description | | ||
| duration | <code>long</code> | duration to use | | ||
| successCB | <code>[startWifiPeriodicallyScanCallback](#startWifiPeriodicallyScanCallback)</code> | A callback function to be called when scan is started | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>startWifiPeriodicallyScanCallback</code>](#startWifiPeriodicallyScanCallback) | A callback function to be called when scan is started | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -456,8 +456,8 @@ <a name="cordova.plugins.hotspot+stopWifiPeriodicallyScan"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[stopWifiPeriodicallyScanCallback](#stopWifiPeriodicallyScanCallback)</code> | A callback function to be called when scan is stopped | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>stopWifiPeriodicallyScanCallback</code>](#stopWifiPeriodicallyScanCallback) | A callback function to be called when scan is stopped | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -469,8 +469,8 @@ <a name="cordova.plugins.hotspot+getNetConfig"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[getNetConfigCallback](#getNetConfigCallback)</code> | A callback function to be called with all information | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>getNetConfigCallback</code>](#getNetConfigCallback) | A callback function to be called with all information | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -482,8 +482,8 @@ <a name="cordova.plugins.hotspot+getConnectionInfo"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[getConnectionInfoCallback](#getConnectionInfoCallback)</code> | A callback function with the connection details. | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>getConnectionInfoCallback</code>](#getConnectionInfoCallback) | A callback function with the connection details. | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -495,3 +495,3 @@ <a name="cordova.plugins.hotspot+pingHost"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -501,4 +501,4 @@ | Param | Type | Description | | ||
| ip | <code>string</code> | host IP | | ||
| successCB | <code>[pingHostCallback](#pingHostCallback)</code> | A callback function to be called with all information | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>pingHostCallback</code>](#pingHostCallback) | A callback function to be called with all information | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -510,3 +510,3 @@ <a name="cordova.plugins.hotspot+getMacAddressOfHost"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -517,3 +517,3 @@ | Param | Type | Description | | ||
| successCB | <code>getMacAddressOfHost</code> | A callback function to be called with all information | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -525,3 +525,3 @@ <a name="cordova.plugins.hotspot+isDnsLive"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -532,3 +532,3 @@ | Param | Type | Description | | ||
| successCB | <code>function</code> | A callback function to be called with the result | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -540,3 +540,3 @@ <a name="cordova.plugins.hotspot+isPortLive"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
@@ -546,4 +546,4 @@ | Param | Type | Description | | ||
| ip | <code>string</code> | host IP | | ||
| successCB | <code>[isPortLiveCallback](#isPortLiveCallback)</code> | A callback function to be called with all information | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>isPortLiveCallback</code>](#isPortLiveCallback) | A callback function to be called with all information | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -555,8 +555,8 @@ <a name="cordova.plugins.hotspot+isRooted"></a> | ||
**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code> | ||
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot) | ||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| successCB | <code>[isRootedCallback](#isRootedCallback)</code> | A callback function to be called with all information | | ||
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback | | ||
| successCB | [<code>isRootedCallback</code>](#isRootedCallback) | A callback function to be called with all information | | ||
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback | | ||
@@ -563,0 +563,0 @@ <a name="errorCallback"></a> |
# Cordova HotSpot Plugin | ||
**DISCONTINUED** | ||
> If anybody wants to takeover the project feel free to contact me | ||
[![Build Status](https://travis-ci.org/hypery2k/cordova-hotspot-plugin.svg?branch=master)](https://travis-ci.org/hypery2k/cordova-hotspot-plugin) [![npm version](https://badge.fury.io/js/cordova-plugin-hotspot.svg)](http://badge.fury.io/js/cordova-plugin-hotspot) [![Dependency Status](https://david-dm.org/hypery2k/cordova-hotspot-plugin.svg)](https://david-dm.org/hypery2k/cordova-hotspot-plugin) [![devDependency Status](https://david-dm.org/hypery2k/cordova-hotspot-plugin/dev-status.svg)](https://david-dm.org/hypery2k/cordova-hotspot-plugin#info=devDependencies) | ||
@@ -5,0 +8,0 @@ [![Issue Stats](http://issuestats.com/github/hypery2k/cordova-hotspot-plugin/badge/pr?style=flat)](http://issuestats.com/github/hypery2k/cordova-hotspot-plugin) [![Issue Stats](http://issuestats.com/github/hypery2k/cordova-hotspot-plugin/badge/issue?style=flat)](http://issuestats.com/github/hypery2k/cordova-hotspot-plugin) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9955591
174
138015
44
5
2
7
3