systeminformation 5.18.7 → 5.18.8
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/lib/cpu.js +31 -2
- package/package.json +1 -1
package/lib/cpu.js
CHANGED
|
@@ -421,20 +421,24 @@ const AMDBaseFrequencies = {
|
|
|
421
421
|
|
|
422
422
|
// Epyc (Milan)
|
|
423
423
|
|
|
424
|
+
'7773X': '2.2',
|
|
424
425
|
'7763': '2.45',
|
|
425
426
|
'7713': '2.0',
|
|
426
427
|
'7713P': '2.0',
|
|
427
428
|
'7663': '2.0',
|
|
428
429
|
'7643': '2.3',
|
|
430
|
+
'7573X': '2.8',
|
|
429
431
|
'75F3': '2.95',
|
|
430
432
|
'7543': '2.8',
|
|
431
433
|
'7543P': '2.8',
|
|
432
434
|
'7513': '2.6',
|
|
435
|
+
'7473X': '2.8',
|
|
433
436
|
'7453': '2.75',
|
|
434
437
|
'74F3': '3.2',
|
|
435
438
|
'7443': '2.85',
|
|
436
439
|
'7443P': '2.85',
|
|
437
440
|
'7413': '2.65',
|
|
441
|
+
'7373X': '3.05',
|
|
438
442
|
'73F3': '3.5',
|
|
439
443
|
'7343': '3.2',
|
|
440
444
|
'7313': '3.0',
|
|
@@ -445,10 +449,35 @@ const AMDBaseFrequencies = {
|
|
|
445
449
|
'5600X': '3.7',
|
|
446
450
|
'5800X': '3.8',
|
|
447
451
|
'5900X': '3.7',
|
|
448
|
-
'5950X': '3.4'
|
|
452
|
+
'5950X': '3.4',
|
|
453
|
+
|
|
454
|
+
// ZEN4
|
|
455
|
+
'9754': '2.25',
|
|
456
|
+
'9754S': '2.25',
|
|
457
|
+
'9734': '2.2',
|
|
458
|
+
'9684X': '2.55',
|
|
459
|
+
'9384X': '3.1',
|
|
460
|
+
'9184X': '3.55',
|
|
461
|
+
'9654P': '2.4',
|
|
462
|
+
'9654': '2.4',
|
|
463
|
+
'9634': '2.25',
|
|
464
|
+
'9554P': '3.1',
|
|
465
|
+
'9554': '3.1',
|
|
466
|
+
'9534': '2.45',
|
|
467
|
+
'9474F': '3.6',
|
|
468
|
+
'9454P': '2.75',
|
|
469
|
+
'9454': '2.75',
|
|
470
|
+
'9374F': '3.85',
|
|
471
|
+
'9354P': '3.25',
|
|
472
|
+
'9354': '3.25',
|
|
473
|
+
'9334': '2.7',
|
|
474
|
+
'9274F': '4.05',
|
|
475
|
+
'9254': '2.9',
|
|
476
|
+
'9224': '2.5',
|
|
477
|
+
'9174F': '4.1',
|
|
478
|
+
'9124': '3.0'
|
|
449
479
|
};
|
|
450
480
|
|
|
451
|
-
|
|
452
481
|
const socketTypes = {
|
|
453
482
|
1: 'Other',
|
|
454
483
|
2: 'Unknown',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "systeminformation",
|
|
3
|
-
"version": "5.18.
|
|
3
|
+
"version": "5.18.8",
|
|
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)",
|