systeminformation
Advanced tools
Comparing version 2.0.3 to 2.0.4
@@ -70,3 +70,4 @@ // ================================================================================== | ||
// version date comment | ||
// 2.0.2 2016-02-22 optimized cpuCurrentspeed | ||
// 2.0.4 2016-02-22 tiny correction - removed double quotes CPU brand, ... | ||
// 2.0.3 2016-02-22 optimized cpuCurrentspeed | ||
// 2.0.2 2016-02-22 added CoreOS identification | ||
@@ -319,6 +320,6 @@ // 2.0.1 2016-01-07 minor patch | ||
}); | ||
result.distro = release.DISTRIB_ID || release.NAME || 'unknown'; | ||
result.distro = (release.DISTRIB_ID || release.NAME || 'unknown').replace(/"/g, ''); | ||
result.logofile = getLogoFile(result.distro); | ||
result.release = release.DISTRIB_RELEASE || release.VERSION_ID || 'unknown'; | ||
result.codename = release.DISTRIB_CODENAME || ''; | ||
result.release = (release.DISTRIB_RELEASE || release.VERSION_ID || 'unknown').replace(/"/g, ''); | ||
result.codename = (release.DISTRIB_CODENAME || '').replace(/"/g, ''); | ||
} | ||
@@ -325,0 +326,0 @@ callback(result); |
{ | ||
"name": "systeminformation", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"description": "Simple system and OS information library", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -232,2 +232,3 @@ # systeminformation | ||
| -------------- | -------------- | -------- | | ||
| 2.0.4 | 2016-02-22 | tiny correction - removed double quotes CPU brand, ... | | ||
| 2.0.3 | 2016-02-22 | optimized cpuCurrentspeed | | ||
@@ -234,0 +235,0 @@ | 2.0.2 | 2016-02-22 | added CoreOS identification | |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
81843
1196
314