diff --git a/CHANGELOG.md b/CHANGELOG.md index f80cfe4..5a70c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -81,6 +81,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page. | Version | Date | Comment | | ------- | ---------- | --------------------------------------------------------------------------------------------------- | +| 5.14.0 | 2022-11-10 | `blockDevices()` added raid group member (linux) | | 5.13.5 | 2022-11-18 | `users()` fix parsing issue (windows) | | 5.13.4 | 2022-11-18 | `users()` fix Get-CimInstance issue (windows) | | 5.13.3 | 2022-11-18 | `cpuTemperature()` fix main temp (linux) | diff --git a/README.md b/README.md index e82017b..4399dcf 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,7 @@ si.cpu() (last 7 major and minor version releases) +- Version 5.14.0: `blockDevices()` added raid group member (linux) - Version 5.13.0: `networkConnections()` added process name (mac OS) - Version 5.12.0: `cpu()` added performance and efficiency cores - Version 5.11.0: `networkInterfaces()` added default property and default parameter @@ -464,6 +465,7 @@ Full function reference with examples can be found at [https://systeminformation | | [0].serial | X | | | X | | serial | | | [0].removable | X | | X | X | | serial | | | [0].protocol | X | | X | | | protocol (SATA, PCI-Express, ...) | +| | [0].group | X | | | | | Raid group member (e.g. md1) | | si.disksIO(cb) | {...} | X | | X | | | current transfer stats | | | rIO | X | | X | | | read IOs on all mounted drives | | | wIO | X | | X | | | write IOs on all mounted drives | diff --git a/docs/filesystem.html b/docs/filesystem.html index 1b0e02e..9fe9e69 100644 --- a/docs/filesystem.html +++ b/docs/filesystem.html @@ -426,6 +426,16 @@ si.diskLayout().then(data => console.log(data));