Integrate extended version of ATBUpdateTool into send-last-version command to ISMAS.

This commit is contained in:
Gerhard Hoffmann 2023-10-12 12:11:48 +02:00
parent c9d6a8d245
commit 3a83efbd3f
2 changed files with 6 additions and 0 deletions

View File

@ -631,6 +631,9 @@ QString IsmasClient::updateOfPSASendVersion(PSAInstalled const &psa) {
"}," "},"
"\"ATBQT\" : {" "\"ATBQT\" : {"
"\"VERSION\" : \"%s\"" "\"VERSION\" : \"%s\""
"},"
"\"ATB-UPDATE-TOOL\" : {"
"\"VERSION\" : \"%s\""
"}" "}"
"}," "},"
"\"PLUGINS\" : {" "\"PLUGINS\" : {"
@ -758,6 +761,7 @@ QString IsmasClient::updateOfPSASendVersion(PSAInstalled const &psa) {
psa.sw.apismVersion.toStdString().c_str(), psa.sw.apismVersion.toStdString().c_str(),
psa.sw.atbQTVersion.toStdString().c_str(), psa.sw.atbQTVersion.toStdString().c_str(),
psa.sw.atbUpdateToolVersion.toStdString().c_str(),
psa.pluginVersion.deviceController.toStdString().c_str(), psa.pluginVersion.deviceController.toStdString().c_str(),
psa.pluginVersion.ingenicoISelfCC.toStdString().c_str(), psa.pluginVersion.ingenicoISelfCC.toStdString().c_str(),

View File

@ -48,6 +48,7 @@ struct PSAInstalled {
struct SoftWare { struct SoftWare {
QString apismVersion; QString apismVersion;
QString atbQTVersion; QString atbQTVersion;
QString atbUpdateToolVersion;
} sw; } sw;
struct PluginVersion { struct PluginVersion {
@ -98,6 +99,7 @@ struct PSAInstalled {
sw.apismVersion = "N/A"; sw.apismVersion = "N/A";
sw.atbQTVersion = "N/A"; sw.atbQTVersion = "N/A";
sw.atbUpdateToolVersion = "N/A";
pluginVersion.deviceController = "N/A"; pluginVersion.deviceController = "N/A";
pluginVersion.ingenicoISelfCC = "N/A"; pluginVersion.ingenicoISelfCC = "N/A";