diff --git a/ismas/ismas_client.cpp b/ismas/ismas_client.cpp index 5b224cb..0f08d87 100644 --- a/ismas/ismas_client.cpp +++ b/ismas/ismas_client.cpp @@ -616,8 +616,9 @@ QString IsmasClient::updateOfPSASendVersion(PSAInstalled const &psa) { "}" "}," "\"SOFTWARE\": {" - "\"RAUC\" : \"%s\"," - "\"OPKG\" : \"%s\"," + "\"APISM\" : {" + "\"VERSION\" : \"%s\"" + "}," "\"ATBQT\" : {" "\"VERSION\" : \"%s\"" "}" @@ -745,8 +746,7 @@ QString IsmasClient::updateOfPSASendVersion(PSAInstalled const &psa) { psa.dc.gitBlob.toStdString().c_str(), psa.dc.gitLastCommit.toStdString().c_str(), - psa.sw.raucVersion.toStdString().c_str(), - psa.sw.opkgVersion.toStdString().c_str(), + psa.sw.apismVersion.toStdString().c_str(), psa.sw.atbQTVersion.toStdString().c_str(), psa.pluginVersion.deviceController.toStdString().c_str(), diff --git a/ismas/ismas_client.h b/ismas/ismas_client.h index 2e028eb..71beffc 100644 --- a/ismas/ismas_client.h +++ b/ismas/ismas_client.h @@ -46,8 +46,7 @@ struct PSAInstalled { } dc; struct SoftWare { - QString raucVersion; - QString opkgVersion; + QString apismVersion; QString atbQTVersion; } sw; @@ -97,8 +96,7 @@ struct PSAInstalled { dc.gitLastCommit = "N/A"; dc.size = -1; - sw.raucVersion = "N/A"; - sw.opkgVersion = "N/A"; + sw.apismVersion = "N/A"; sw.atbQTVersion = "N/A"; pluginVersion.deviceController = "N/A";