diff --git a/CHANGELOG.md b/CHANGELOG.md index d12b64c1..86ac6554 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -82,6 +82,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page. | Version | Date | Comment | | ------- | ---------- | --------------------------------------------------------------------------------------------------- | +| 5.16.8 | 2022-12-22 | `processes()` params truncated fix (max OS) | | 5.16.7 | 2022-12-22 | `processes()` commandLine missing spaces fix (windows) | | 5.16.6 | 2022-12-12 | `processes()` time format fix (linux) | | 5.16.5 | 2022-12-09 | `inetLatency()` fix for alpine (linux) | diff --git a/docs/history.html b/docs/history.html index c0255cde..8d900ce4 100644 --- a/docs/history.html +++ b/docs/history.html @@ -57,6 +57,11 @@

Full version history

+ + 5.16.8 + 2022-12-22 + processes() params truncated fix (max OS) + 5.16.7 2022-12-22 diff --git a/docs/index.html b/docs/index.html index 61406157..51c3af8a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -170,7 +170,7 @@
systeminformation
 
-
New Version: 5.16.7
+
New Version: 5.16.8
diff --git a/lib/util.js b/lib/util.js index b7de28d6..5e855fd6 100644 --- a/lib/util.js +++ b/lib/util.js @@ -280,7 +280,7 @@ function parseHead(head, rights) { space = head[i] === ' '; } } - to = 2000; + to = 5000; result.push({ from: from, to: to,