graphics() check for qwMemorySize on Windows
This commit is contained in:
parent
b3ce10da82
commit
de5054a0a9
@ -77,6 +77,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
|
||||
|
||||
| Version | Date | Comment |
|
||||
| -------------- | -------------- | -------- |
|
||||
| 5.7.1 | 2021-05-20 | `graphics()` Check for qwMemorySize on Windows |
|
||||
| 5.7.0 | 2021-05-20 | `diskLayout()` added smartdata for win (if istalled) |
|
||||
| 5.6.22 | 2021-05-18 | `diskLayout()` fixed to small buffer smartdata (linux) |
|
||||
| 5.6.21 | 2021-05-14 | `graphics()` fixed dual gpu issue (macOS) |
|
||||
|
||||
@ -56,10 +56,15 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">5.7.1</th>
|
||||
<td>2021-05-20</td>
|
||||
<td><span class="code">grahics()</span> Check for qwMemorySize on Windows</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">5.7.0</th>
|
||||
<td>2021-05-20</td>
|
||||
<td><span class="code">diskLayout()</span> added smartdata fro Windows (if installed)</td>
|
||||
<td><span class="code">diskLayout()</span> added smartdata for Windows (if installed)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">5.6.22</th>
|
||||
|
||||
@ -170,7 +170,7 @@
|
||||
<img class="logo" src="assets/logo.png">
|
||||
<div class="title">systeminformation</div>
|
||||
<div class="subtitle"><span id="typed"></span> </div>
|
||||
<div class="version">New Version: <span id="version">5.7.0</span></div>
|
||||
<div class="version">New Version: <span id="version">5.7.1</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>
|
||||
</div>
|
||||
<div class="down">
|
||||
|
||||
@ -932,7 +932,7 @@ function graphics(callback) {
|
||||
if (memorySize == null && pnpDeviceId[3] && pnpDeviceId[4]) {
|
||||
const deviceId = pnpDeviceId[1].toUpperCase() + '&' + pnpDeviceId[2].toUpperCase() + '&' + pnpDeviceId[3].toUpperCase() + '&' + pnpDeviceId[4].toUpperCase();
|
||||
if ({}.hasOwnProperty.call(memorySizes, deviceId)) {
|
||||
memorySize = memorySizes[deviceId]
|
||||
memorySize = memorySizes[deviceId];
|
||||
}
|
||||
}
|
||||
|
||||
@ -940,7 +940,7 @@ function graphics(callback) {
|
||||
if (memorySize == null && pnpDeviceId[3]) {
|
||||
const deviceId = pnpDeviceId[1].toUpperCase() + '&' + pnpDeviceId[2].toUpperCase() + '&' + pnpDeviceId[3].toUpperCase();
|
||||
if ({}.hasOwnProperty.call(memorySizes, deviceId)) {
|
||||
memorySize = memorySizes[deviceId]
|
||||
memorySize = memorySizes[deviceId];
|
||||
}
|
||||
}
|
||||
|
||||
@ -948,7 +948,7 @@ function graphics(callback) {
|
||||
if (memorySize == null && pnpDeviceId[4]) {
|
||||
const deviceId = pnpDeviceId[1].toUpperCase() + '&' + pnpDeviceId[2].toUpperCase() + '&' + pnpDeviceId[4].toUpperCase();
|
||||
if ({}.hasOwnProperty.call(memorySizes, deviceId)) {
|
||||
memorySize = memorySizes[deviceId]
|
||||
memorySize = memorySizes[deviceId];
|
||||
}
|
||||
}
|
||||
|
||||
@ -956,7 +956,7 @@ function graphics(callback) {
|
||||
if (memorySize == null) {
|
||||
const deviceId = pnpDeviceId[1].toUpperCase() + '&' + pnpDeviceId[2].toUpperCase();
|
||||
if ({}.hasOwnProperty.call(memorySizes, deviceId)) {
|
||||
memorySize = memorySizes[deviceId]
|
||||
memorySize = memorySizes[deviceId];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user