cpu() corrected processor names (Raspberry Pi)

This commit is contained in:
Sebastian Hildebrandt 2020-12-01 09:35:49 +01:00
parent f0220ca6c4
commit 33137354d4
4 changed files with 11 additions and 5 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.30.9 | 2020-11-30 | `cpu()` corrected processor names (Raspberry Pi) |
| 4.30.8 | 2020-11-30 | `fsSize()` catch error (mac OS) | | 4.30.8 | 2020-11-30 | `fsSize()` catch error (mac OS) |
| 4.30.7 | 2020-11-29 | `cpuTemperature()` rewrite hwmon parsing | | 4.30.7 | 2020-11-29 | `cpuTemperature()` rewrite hwmon parsing |
| 4.30.6 | 2020-11-27 | wmic added default windows path (windows) | | 4.30.6 | 2020-11-27 | wmic added default windows path (windows) |

View File

@ -83,6 +83,11 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr>
<th scope="row">4.30.9</th>
<td>2020-12-01</td>
<td><span class="code">cpu()</span> corrected processor names (Raspberry Pi)</td>
</tr>
<tr> <tr>
<th scope="row">4.30.8</th> <th scope="row">4.30.8</th>
<td>2020-11-30</td> <td>2020-11-30</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.30.8</span></div> <div class="version">Current Version: <span id="version">4.30.9</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

@ -718,10 +718,10 @@ function decodePiCpuinfo(lines) {
} }
const processorList = [ const processorList = [
'BMC2835', 'BCM2835',
'BMC2836', 'BCM2836',
'BMC2837', 'BCM2837',
'BMC2711', 'BCM2711',
]; ];
const manufacturerList = [ const manufacturerList = [
'Sony UK', 'Sony UK',