mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Additional information on system used (#1045)
* Allow --version, even if hyperion is already running * Add CPU-Model to SysInfo * Add additional CPUInfos * Use fileUtils & RegEx on CPU-Info * Add CPU - Hardware info * Update changelog * Suppress empty CPU info elements
This commit is contained in:
@@ -275,6 +275,10 @@ void JsonAPI::handleSysInfoCommand(const QJsonObject &, const QString &command,
|
||||
system["kernelType"] = data.kernelType;
|
||||
system["kernelVersion"] = data.kernelVersion;
|
||||
system["architecture"] = data.architecture;
|
||||
system["cpuModelName"] = data.cpuModelName;
|
||||
system["cpuModelType"] = data.cpuModelType;
|
||||
system["cpuHardware"] = data.cpuHardware;
|
||||
system["cpuRevision"] = data.cpuRevision;
|
||||
system["wordSize"] = data.wordSize;
|
||||
system["productType"] = data.productType;
|
||||
system["productVersion"] = data.productVersion;
|
||||
@@ -289,6 +293,7 @@ void JsonAPI::handleSysInfoCommand(const QJsonObject &, const QString &command,
|
||||
hyperion["gitremote"] = QString(HYPERION_GIT_REMOTE);
|
||||
hyperion["time"] = QString(__DATE__ " " __TIME__);
|
||||
hyperion["id"] = _authManager->getID();
|
||||
|
||||
info["hyperion"] = hyperion;
|
||||
|
||||
// send the result
|
||||
|
Reference in New Issue
Block a user