graphics() added display vendors (macOS)

This commit is contained in:
Sebastian Hildebrandt 2021-08-26 11:56:00 +02:00
parent 9b83851a2c
commit 2d413b0914
4 changed files with 8 additions and 1 deletions

View File

@ -77,6 +77,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
| Version | Date | Comment | | Version | Date | Comment |
| -------------- | -------------- | -------- | | -------------- | -------------- | -------- |
| 5.8.4 | 2021-08-26 | `graphics()` added vendor (macOS) |
| 5.8.3 | 2021-08-26 | `graphics()` fix empty controller (macOS) | | 5.8.3 | 2021-08-26 | `graphics()` fix empty controller (macOS) |
| 5.8.2 | 2021-08-24 | `baseboard()`, `getDefaultNetworkInterface()` fix catch error | | 5.8.2 | 2021-08-24 | `baseboard()`, `getDefaultNetworkInterface()` fix catch error |
| 5.8.1 | 2021-08-24 | `battery()` fix capacity | | 5.8.1 | 2021-08-24 | `battery()` fix capacity |

View File

@ -56,6 +56,11 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr>
<th scope="row">5.8.4</th>
<td>2021-08-26</td>
<td><span class="code">graphics()</span> added vendor (macOS)</td>
</tr>
<tr> <tr>
<th scope="row">5.8.3</th> <th scope="row">5.8.3</th>
<td>2021-08-26</td> <td>2021-08-26</td>

View File

@ -170,7 +170,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>&nbsp;</div> <div class="subtitle"><span id="typed"></span>&nbsp;</div>
<div class="version">New Version: <span id="version">5.8.3</span></div> <div class="version">New Version: <span id="version">5.8.4</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

@ -63,6 +63,7 @@ function getVendorFromModel(model) {
{ pattern: '^ASUS.+', manufacturer: 'Asus' }, { pattern: '^ASUS.+', manufacturer: 'Asus' },
{ pattern: '^DELL.+', manufacturer: 'Dell' }, { pattern: '^DELL.+', manufacturer: 'Dell' },
{ pattern: '^SAMSUNG.+', manufacturer: 'Samsung' }, { pattern: '^SAMSUNG.+', manufacturer: 'Samsung' },
{ pattern: '^VIEWSON.+', manufacturer: 'ViewSonic' },
{ pattern: '^SONY.+', manufacturer: 'Sony' }, { pattern: '^SONY.+', manufacturer: 'Sony' },
{ pattern: '^ACER.+', manufacturer: 'Acer' }, { pattern: '^ACER.+', manufacturer: 'Acer' },
{ pattern: '^AOC.+', manufacturer: 'AOC Monitors' }, { pattern: '^AOC.+', manufacturer: 'AOC Monitors' },