Skip to content

Commit

Permalink
Merge pull request #177 from kbernhagen/full-os-version-info
Browse files Browse the repository at this point in the history
Provide full OS version in info
  • Loading branch information
jcoffland authored Dec 14, 2023
2 parents e419107 + 44c2e94 commit ac1b0cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fah/client/App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ void App::loadConfig() {
auto info = get("info");
info->insert("version", getVersion().toString());
info->insert("os", os->getName());
info->insert("os_version", SystemInfo::instance().getOSVersion().getMajor());
info->insert("os_version", SystemInfo::instance().getOSVersion().toString());
info->insert("cpu", os->getCPU());
info->insert("cpu_brand", CPUInfo::create()->getBrand());
info->insert("cpus", SystemInfo::instance().getCPUCount());
Expand Down

0 comments on commit ac1b0cf

Please sign in to comment.