graphics() fixed non nvidia-smi controllers (win)

This commit is contained in:
Sebastian Hildebrandt 2021-01-06 08:19:02 +01:00
parent cddfdd3d85
commit b1d1963fa9
6 changed files with 11 additions and 4 deletions

View File

@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page.
| Version | Date | Comment | | Version | Date | Comment |
| -------------- | -------------- | -------- | | -------------- | -------------- | -------- |
| 4.34.3 | 2020-01-06 | `graphics()` fixed non nvidia-smi controllers (win) |
| 4.34.2 | 2020-01-05 | `system()` uuid lowercase as in uuid() | | 4.34.2 | 2020-01-05 | `system()` uuid lowercase as in uuid() |
| 4.34.1 | 2020-01-05 | `graphics()` nvidia-smi detection improved | | 4.34.1 | 2020-01-05 | `graphics()` nvidia-smi detection improved |
| 4.34.0 | 2020-01-05 | `system()` added flag virtual | | 4.34.0 | 2020-01-05 | `system()` added flag virtual |

View File

@ -910,4 +910,4 @@ All other trademarks are the property of their respective owners.
[mmon-npm-url]: https://npmjs.org/package/mmon [mmon-npm-url]: https://npmjs.org/package/mmon
[mmon-github-url]: https://github.com/sebhildebrandt/mmon [mmon-github-url]: https://github.com/sebhildebrandt/mmon
[smc-code-url]: https://github.com/pcafstockf/osx-temperature-sensor [smc-code-url]: https://github.com/pcafstockf/smc-reader

View File

@ -65,8 +65,7 @@
</ul> </ul>
<p>OSX Temperature: credits here are going to:</p> <p>OSX Temperature: credits here are going to:</p>
<ul> <ul>
<li>Massimiliano Marcon <a href="https://github.com/mmarcon" rel="nofollow">mmarcon</a> for his work on <a href="https://github.com/mmarcon/node-smc" rel="nofollow">smc-code</a></li> <li>Frank Stock <a href="https://github.com/pcafstockf" rel="nofollow">pcafstockf</a> for his work on <a href="https://github.com/pcafstockf/smc-reader" rel="nofollow">smc-reader</a></li>
<li>Sébastien Lavoie <a href="https://github.com/lavoiesl" rel="nofollow">lavoiesl</a> for his work on <a href="https://github.com/lavoiesl/osx-cpu-temp" rel="nofollow">osx-cpu-temp</a> code.</li>
</ul> </ul>
<p>Many thanks also to all who provided help or filed an issue. This really helps improving this package!</p> <p>Many thanks also to all who provided help or filed an issue. This really helps improving this package!</p>
</div> </div>

View File

@ -83,6 +83,11 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr>
<th scope="row">4.34.3</th>
<td>2020-01-06</td>
<td><span class="code">graphics()</span> issue non nvidia-smi controllers fixed (win)</td>
</tr>
<tr> <tr>
<th scope="row">4.34.2</th> <th scope="row">4.34.2</th>
<td>2020-01-05</td> <td>2020-01-05</td>

View File

@ -169,7 +169,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.34.2</span></div> <div class="version">Current Version: <span id="version">4.34.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">

View File

@ -801,6 +801,8 @@ function graphics(callback) {
} }
return windowsSubDeviceId === nvidiaSubDeviceId; return windowsSubDeviceId === nvidiaSubDeviceId;
}) || {}); }) || {});
} else {
return controller;
} }
}); });
// displays // displays