diff --git a/CHANGELOG.md b/CHANGELOG.md index eb83ad4..4e88b7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page. | Version | Date | Comment | | -------------- | -------------- | -------- | +| 4.13.2 | 2019-07-02 | `versions()` fix getting all versions | | 4.13.1 | 2019-07-01 | `versions()` gcc fix macos | | 4.13.0 | 2019-07-01 | `networkConnections()` added PID and process | | 4.12.2 | 2019-06-24 | `system()` added Raspberry PI 4 detection | diff --git a/docs/gettingstarted.html b/docs/gettingstarted.html index 8608db7..2775b44 100644 --- a/docs/gettingstarted.html +++ b/docs/gettingstarted.html @@ -75,7 +75,7 @@ si.cpu() .then(data => console.log(data)) .catch(error => console.error(error)); -
Remember: all functions (except version and time) are implemented as asynchronous functions! There are now three ways to consume them:
Callback Style
const si = require('systeminformation');
diff --git a/docs/history.html b/docs/history.html
index cf0025d..30ba79a 100644
--- a/docs/history.html
+++ b/docs/history.html
@@ -83,6 +83,11 @@
+
+ 4.13.2
+ 2019-07-02
+ versions() fix getting all versions
+
4.13.1
2019-07-01
diff --git a/docs/index.html b/docs/index.html
index 93f51e9..512a2ac 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -168,7 +168,7 @@
systeminformation
- Current Version: 4.13.1
+ Current Version: 4.13.2
diff --git a/lib/osinfo.js b/lib/osinfo.js
index 4f0b653..cb700c9 100644
--- a/lib/osinfo.js
+++ b/lib/osinfo.js
@@ -346,7 +346,7 @@ function versions(callback) {
};
let functionProcessed = (function () {
- let totalFunctions = 24;
+ let totalFunctions = 25;
return function () {
if (--totalFunctions === 0) {
if (callback) {