diff --git a/CHANGELOG.md b/CHANGELOG.md index 1807188..06f284e 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.11.3 | 2019-06-16 | `graphics()` optimization windows | | 4.11.2 | 2019-06-16 | `wifiNetworks()` bug fixes | | 4.11.1 | 2019-06-15 | updated docs | | 4.11.0 | 2019-06-14 | `wifiNetworks()` added available wifi networks | diff --git a/docs/history.html b/docs/history.html index c402c3a..b3ca60c 100644 --- a/docs/history.html +++ b/docs/history.html @@ -83,6 +83,11 @@ + + 4.11.3 + 2019-06-16 + graphics() optimization windows + 4.11.2 2019-06-16 diff --git a/docs/index.html b/docs/index.html index 3194d87..3aa6480 100644 --- a/docs/index.html +++ b/docs/index.html @@ -168,7 +168,7 @@
systeminformation
-
Current Version: 4.11.2
+
Current Version: 4.11.3
diff --git a/lib/graphics.js b/lib/graphics.js index 078aba3..f016509 100644 --- a/lib/graphics.js +++ b/lib/graphics.js @@ -694,7 +694,7 @@ function graphics(callback) { vendor: instanceName.startsWith(deviceID) ? vendor : '', model: instanceName.startsWith(deviceID) ? model : '', main: primary.toLowerCase() === 'true', - builtin: false, + builtin: videoOutputTechnology === '2147483648', connection: videoOutputTechnology && videoTypes[videoOutputTechnology] ? videoTypes[videoOutputTechnology] : '', resolutionx: util.toInt(util.getValue(bounds, 'Width', '=')), resolutiony: util.toInt(util.getValue(bounds, 'Height', '=')),