systeminformation 5.31.12 → 5.31.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/util.js +18 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
## The Systeminformation Project
|
|
32
32
|
|
|
33
33
|
This is amazing. Started as a small project just for myself, it now has > 20,000
|
|
34
|
-
lines of code, >
|
|
34
|
+
lines of code, > 750 versions published, up to 30 mio downloads per month, > 600
|
|
35
35
|
mio downloads overall. Top 10 NPM ranking for backend packages. Thank you to all
|
|
36
36
|
who contributed to this project!
|
|
37
37
|
|
package/lib/util.js
CHANGED
|
@@ -1418,9 +1418,25 @@ function semverCompare(v1, v2) {
|
|
|
1418
1418
|
function getAppleModel(key) {
|
|
1419
1419
|
const appleModelIds = [
|
|
1420
1420
|
{
|
|
1421
|
-
key: 'Mac17,
|
|
1421
|
+
key: 'Mac17,9',
|
|
1422
|
+
name: 'MacBook Pro',
|
|
1423
|
+
size: '14-inch',
|
|
1424
|
+
processor: 'M5 Pro',
|
|
1425
|
+
year: '2026',
|
|
1426
|
+
additional: ''
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
key: 'Mac17,8',
|
|
1422
1430
|
name: 'MacBook Pro',
|
|
1423
1431
|
size: '16-inch',
|
|
1432
|
+
processor: 'M5 Pro',
|
|
1433
|
+
year: '2026',
|
|
1434
|
+
additional: ''
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
key: 'Mac17,7',
|
|
1438
|
+
name: 'MacBook Pro',
|
|
1439
|
+
size: '14-inch',
|
|
1424
1440
|
processor: 'M5 Max',
|
|
1425
1441
|
year: '2026',
|
|
1426
1442
|
additional: ''
|
|
@@ -1428,7 +1444,7 @@ function getAppleModel(key) {
|
|
|
1428
1444
|
{
|
|
1429
1445
|
key: 'Mac17,6',
|
|
1430
1446
|
name: 'MacBook Pro',
|
|
1431
|
-
size: '
|
|
1447
|
+
size: '16-inch',
|
|
1432
1448
|
processor: 'M5 Max',
|
|
1433
1449
|
year: '2026',
|
|
1434
1450
|
additional: ''
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "systeminformation",
|
|
3
|
-
"version": "5.31.
|
|
3
|
+
"version": "5.31.13",
|
|
4
4
|
"description": "Advanced, lightweight system and OS information library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Sebastian Hildebrandt <hildebrandt@plus-innovations.com> (https://plus-innovations.com)",
|