systeminformation 5.19.0 → 5.19.1
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 +2 -2
- package/lib/wifi.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -130,11 +130,11 @@ si.cpu()
|
|
|
130
130
|
|
|
131
131
|
- Version 5.19.0: `currentLoad()` added steal and guest time (linux)
|
|
132
132
|
- Version 5.18.0: `fsSize()` added optional drive parameter
|
|
133
|
-
- Version 5.17.0: `graphics()` added positionX, positionY (
|
|
133
|
+
- Version 5.17.0: `graphics()` added positionX, positionY (macOS)
|
|
134
134
|
- Version 5.16.0: `fsSize()` added rw property
|
|
135
135
|
- Version 5.15.0: `blockDevices()` added device
|
|
136
136
|
- Version 5.14.0: `blockDevices()` added raid group member (linux)
|
|
137
|
-
- Version 5.13.0: `networkConnections()` added process name (
|
|
137
|
+
- Version 5.13.0: `networkConnections()` added process name (macOS)
|
|
138
138
|
- Version 5.12.0: `cpu()` added performance and efficiency cores
|
|
139
139
|
- Version 5.11.0: `networkInterfaces()` added default property and default parameter
|
|
140
140
|
- Version 5.10.0: basic `android` support
|
package/lib/wifi.js
CHANGED
|
@@ -366,9 +366,9 @@ function parseWifiDarwin(wifiObj) {
|
|
|
366
366
|
});
|
|
367
367
|
}
|
|
368
368
|
}
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
369
|
+
if (wifiItem.SSID) {
|
|
370
|
+
ssid = Buffer.from(wifiItem.SSID, 'base64').toString('utf8');
|
|
371
|
+
}
|
|
372
372
|
result.push({
|
|
373
373
|
ssid,
|
|
374
374
|
bssid: wifiItem.BSSID || '',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "systeminformation",
|
|
3
|
-
"version": "5.19.
|
|
3
|
+
"version": "5.19.1",
|
|
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)",
|