graphics() optimization windows
This commit is contained in:
parent
4ec97a2b11
commit
7284b79669
@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page.
|
|||||||
|
|
||||||
| Version | Date | Comment |
|
| Version | Date | Comment |
|
||||||
| -------------- | -------------- | -------- |
|
| -------------- | -------------- | -------- |
|
||||||
|
| 4.11.3 | 2019-06-16 | `graphics()` optimization windows |
|
||||||
| 4.11.2 | 2019-06-16 | `wifiNetworks()` bug fixes |
|
| 4.11.2 | 2019-06-16 | `wifiNetworks()` bug fixes |
|
||||||
| 4.11.1 | 2019-06-15 | updated docs |
|
| 4.11.1 | 2019-06-15 | updated docs |
|
||||||
| 4.11.0 | 2019-06-14 | `wifiNetworks()` added available wifi networks |
|
| 4.11.0 | 2019-06-14 | `wifiNetworks()` added available wifi networks |
|
||||||
|
|||||||
@ -83,6 +83,11 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<th scope="row">4.11.3</th>
|
||||||
|
<td>2019-06-16</td>
|
||||||
|
<td><span class="code">graphics()</span> optimization windows</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">4.11.2</th>
|
<th scope="row">4.11.2</th>
|
||||||
<td>2019-06-16</td>
|
<td>2019-06-16</td>
|
||||||
|
|||||||
@ -168,7 +168,7 @@
|
|||||||
<img class="logo" src="assets/logo.png">
|
<img class="logo" src="assets/logo.png">
|
||||||
<div class="title">systeminformation</div>
|
<div class="title">systeminformation</div>
|
||||||
<div class="subtitle"><span id="typed"></span></div>
|
<div class="subtitle"><span id="typed"></span></div>
|
||||||
<div class="version">Current Version: <span id="version">4.11.2</span></div>
|
<div class="version">Current Version: <span id="version">4.11.3</span></div>
|
||||||
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
|
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="down">
|
<div class="down">
|
||||||
|
|||||||
@ -694,7 +694,7 @@ function graphics(callback) {
|
|||||||
vendor: instanceName.startsWith(deviceID) ? vendor : '',
|
vendor: instanceName.startsWith(deviceID) ? vendor : '',
|
||||||
model: instanceName.startsWith(deviceID) ? model : '',
|
model: instanceName.startsWith(deviceID) ? model : '',
|
||||||
main: primary.toLowerCase() === 'true',
|
main: primary.toLowerCase() === 'true',
|
||||||
builtin: false,
|
builtin: videoOutputTechnology === '2147483648',
|
||||||
connection: videoOutputTechnology && videoTypes[videoOutputTechnology] ? videoTypes[videoOutputTechnology] : '',
|
connection: videoOutputTechnology && videoTypes[videoOutputTechnology] ? videoTypes[videoOutputTechnology] : '',
|
||||||
resolutionx: util.toInt(util.getValue(bounds, 'Width', '=')),
|
resolutionx: util.toInt(util.getValue(bounds, 'Width', '=')),
|
||||||
resolutiony: util.toInt(util.getValue(bounds, 'Height', '=')),
|
resolutiony: util.toInt(util.getValue(bounds, 'Height', '=')),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user