diff --git a/CHANGELOG.md b/CHANGELOG.md
index f0b5201..d7b6ffe 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -30,6 +30,8 @@ For major (breaking) changes - version 3 and 2 see end of page.
| Version | Date | Comment |
| -------------- | -------------- | -------- |
+| 4.26.1 | 2020-05-13 | code cleanup |
+| 4.26.0 | 2020-05-12 | `diskLayout()` added full smart data where supported |
| 4.25.2 | 2020-05-12 | `getDynamicData()` added wifiNetworks() |
| 4.25.1 | 2020-05-07 | `get()` minor bounds test fix, updated docs |
| 4.25.0 | 2020-05-07 | `get()` added function to get partial system info |
diff --git a/README.md b/README.md
index 96e8ed8..d53e28f 100644
--- a/README.md
+++ b/README.md
@@ -87,13 +87,13 @@ si.cpu()
(last 7 major and minor version releases)
+- Version 4.26.0: `diskLayout()` added full S.M.A.R.T data (linux)
- Version 4.25.0: `get()` added function to get partial system info
- Version 4.24.0: `networkInterfaces()` added subnet mask ip4 and ip6
- Version 4.23.0: `versions()` added param to specify which program/lib versions to detect
- Version 4.22.0: `services()` added pids (windows)
- Version 4.21.0: added npx copmpatibility
- Version 4.20.0: `battery()` added designcapacity, voltage, unit
-- Version 4.19.0: `osInfo()` added uefi (OS uses UEFI during startup)
- ...
You can find all changes here: [detailed changelog][changelog-url]
@@ -382,6 +382,7 @@ I also created a nice little command line tool called [mmon][mmon-github-url] (
| | [0].serialNum | X | | X | X | | serial number |
| | [0].interfaceType | X | | | X | | SATA, PCIe, ... |
| | [0].smartStatus | X | | X | X | | S.M.A.R.T Status (see Known Issues) |
+| | [0].smartData | X | | | | | full S.M.A.R.T data from smartctl
requires at least smartmontools 7.0 |
| si.blockDevices(cb) | [{...}] | X | | X | X | | returns array of disks, partitions,
raids and roms |
| | [0].name | X | | X | X | | name |
| | [0].type | X | | X | X | | type |
@@ -801,6 +802,7 @@ Written by Sebastian Hildebrandt [sebhildebrandt](https://github.com/sebhildebra
- Nathan Patten [nrpatten](https://github.com/nrpatten)
- Juan Campuzano [juancampuzano](https://github.com/juancampuzano)
- Ricardo Polo [ricardopolo](https://github.com/ricardopolo)
+- Miłosz Dźwigała [mily20001]https://github.com/mily20001
OSX Temperature: credits here are going to:
diff --git a/docs/contributors.html b/docs/contributors.html
index 2d5cd37..e4be83f 100644
--- a/docs/contributors.html
+++ b/docs/contributors.html
@@ -60,6 +60,7 @@
OSX Temperature: credits here are going to:
Keep in mind, that there is another function si.versions() that will return versions of other system libraries and software packages
Normally you would call each of the functions (where you want to have detailed system information) seperately. The docs pages contain a full reference (with examples) for each available function. But there is also another really handy way to get a self-defined information object in one single call:
+Normally you would call each of the functions (where you want to get detailed system information) seperately. The docs pages contain a full reference (with examples) for each available function. But there is also another really handy way to get a self-defined result object in one single call:
The si.get() function is an alternative, where you can obtain several system information data in one call. You can define a json object which represents the data structure you are expecting and the si.get() call will then return all of the requested data in a single result object
| 4.26.1 | +2020-05-13 | +code cleanup | +
|---|---|---|
| 4.26.0 | +2020-05-12 | +diskLayout() added full smart data (where supported) | +
| 4.25.2 | 2020-05-12 | diff --git a/docs/index.html b/docs/index.html index 1810b38..a25eab5 100644 --- a/docs/index.html +++ b/docs/index.html @@ -168,7 +168,7 @@