diff --git a/CHANGELOG.md b/CHANGELOG.md index 44ffdd4..fb4b6f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -90,6 +90,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page. | Version | Date | Comment | | ------- | ---------- | --------------------------------------------------------------------------------------------------- | +| 5.28.8 | 2026-01-01 | `bluetooth()` `battery()` improved enomeration (windows) | | 5.28.7 | 2026-12-31 | `networkInterfaces()` fix wireless speed (linux) | | 5.28.6 | 2025-12-31 | `npx systeminformation` improved output | | 5.28.5 | 2025-12-30 | `cpuCurrentSpeed()` fix cpu loop issue | diff --git a/docs/history.html b/docs/history.html index 5b46b59..758e565 100644 --- a/docs/history.html +++ b/docs/history.html @@ -57,6 +57,11 @@ + + 5.28.8 + 2026-01-01 + bluetooth() battery() imprved enomeration (windows) + 5.28.7 2025-12-31 diff --git a/docs/index.html b/docs/index.html index cef22cf..c435740 100644 --- a/docs/index.html +++ b/docs/index.html @@ -170,7 +170,7 @@
systeminformation
 
-
New Version: 5.28.7
+
New Version: 5.28.8
@@ -212,7 +212,7 @@
Downloads last month
-
931
+
932
Dependents
diff --git a/lib/bluetooth.js b/lib/bluetooth.js index 2838a9d..6a67585 100644 --- a/lib/bluetooth.js +++ b/lib/bluetooth.js @@ -48,6 +48,9 @@ function parseBluetoothType(str) { if (str.indexOf('sound') >= 0) { result = 'Audio'; } + if (str.indexOf('microph') >= 0) { + result = 'Microphone'; + } if (str.indexOf('speaker') >= 0) { result = 'Speaker'; }