Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wifiwizard

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wifiwizard - npm Package Compare versions

Comparing version 0.2.9 to 0.2.10

2

package.json
{
"name": "wifiwizard",
"version": "0.2.9",
"version": "0.2.10",
"description": "This plugin allows Phonegap applications to manage Wifi connections.",

@@ -5,0 +5,0 @@ "cordova": {

# WifiWizard
Version 0.2.10
'getCurrentBSSID' now available on IOS.
Fixed callback issue with 'connectNetwork'. It now checks to make sure you are connected to the specific network before returning.
Updated permissions for Android Marshmallow.
Version 0.2.9

@@ -83,3 +91,3 @@

Set wifi status. `enabled` is a Boolean type, so to disable the Wifi, you'd execute `WifiWizard.setWifiEnabled(false);`
Set wifi status. `enabled` is a Boolean type, so to disable the Wifi, you'd execute `WifiWizard.setWifiEnabled(false, win, fail);`

@@ -86,0 +94,0 @@ ### Changelog:

@@ -251,2 +251,10 @@ /*

},
getCurrentBSSID: function(win, fail) {
if (typeof win != "function") {
console.log("getCurrentSSID first parameter must be a function to handle SSID.");
return;
}
cordova.exec(win, fail, 'WifiWizard', 'getConnectedBSSID', []);
},

@@ -253,0 +261,0 @@ /**

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc