systeminformation 5.23.13 → 5.23.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +216 -139
- package/lib/system.js +6 -6
- package/lib/util.js +1161 -0
- package/lib/wifi.js +1 -1
- package/package.json +1 -1
package/lib/wifi.js
CHANGED
|
@@ -700,7 +700,7 @@ function wifiConnections(callback) {
|
|
|
700
700
|
const model = lines[1].indexOf(':') >= 0 ? lines[1].split(':')[1].trim() : '';
|
|
701
701
|
const id = lines[2].indexOf(':') >= 0 ? lines[2].split(':')[1].trim() : '';
|
|
702
702
|
const ssid = util.getValue(lines, 'SSID', ':', true);
|
|
703
|
-
const bssid = util.getValue(lines, 'BSSID', ':', true) || util.getValue(lines, 'AP BSSID', ':', true)
|
|
703
|
+
const bssid = util.getValue(lines, 'BSSID', ':', true) || util.getValue(lines, 'AP BSSID', ':', true);
|
|
704
704
|
const quality = util.getValue(lines, 'Signal', ':', true);
|
|
705
705
|
const signalLevel = wifiDBFromQuality(quality);
|
|
706
706
|
const type = util.getValue(lines, 'Radio type', ':', true) || util.getValue(lines, 'Type de radio', ':', true) || util.getValue(lines, 'Funktyp', ':', true) || null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "systeminformation",
|
|
3
|
-
"version": "5.23.
|
|
3
|
+
"version": "5.23.14",
|
|
4
4
|
"description": "Advanced, lightweight system and OS information library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Sebastian Hildebrandt <hildebrandt@plus-innovations.com> (https://plus-innovations.com)",
|