added MX linux detection

This commit is contained in:
Sebastian Hildebrandt 2019-06-14 17:35:47 +02:00
parent a4b888ca86
commit d29686ed7f
2 changed files with 4 additions and 1 deletions

View File

@ -30,7 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page.
| Version | Date | Comment |
| -------------- | -------------- | -------- |
| 4.10.0 | 2019-06-14 | `graphics()` windows multiple display support |
| 4.10.0 | 2019-06-14 | `graphics()` windows multiple display support |
| 4.9.2 | 2019-06-12 | type definitions bug fix |
| 4.9.1 | 2019-06-11 | `networkStats()` bug fix windows |
| 4.9.0 | 2019-06-03 | `graphics()` added vendor, refresh rate, current res |

View File

@ -95,6 +95,9 @@ function getLogoFile(distro) {
else if (distro.indexOf('mint') !== -1) {
result = 'mint';
}
else if (distro.indexOf('mx') !== -1) {
result = 'mx';
}
else if (distro.indexOf('openbsd') !== -1) {
result = 'openbsd';
}