diff --git a/ismas/ismas_client.cpp b/ismas/ismas_client.cpp index 5608b4a..3e78abb 100644 --- a/ismas/ismas_client.cpp +++ b/ismas/ismas_client.cpp @@ -631,6 +631,9 @@ QString IsmasClient::updateOfPSASendVersion(PSAInstalled const &psa) { "}," "\"ATBQT\" : {" "\"VERSION\" : \"%s\"" + "}," + "\"ATB-UPDATE-TOOL\" : {" + "\"VERSION\" : \"%s\"" "}" "}," "\"PLUGINS\" : {" @@ -758,6 +761,7 @@ QString IsmasClient::updateOfPSASendVersion(PSAInstalled const &psa) { psa.sw.apismVersion.toStdString().c_str(), psa.sw.atbQTVersion.toStdString().c_str(), + psa.sw.atbUpdateToolVersion.toStdString().c_str(), psa.pluginVersion.deviceController.toStdString().c_str(), psa.pluginVersion.ingenicoISelfCC.toStdString().c_str(), diff --git a/ismas/ismas_client.h b/ismas/ismas_client.h index a43fe1f..d443a0b 100644 --- a/ismas/ismas_client.h +++ b/ismas/ismas_client.h @@ -48,6 +48,7 @@ struct PSAInstalled { struct SoftWare { QString apismVersion; QString atbQTVersion; + QString atbUpdateToolVersion; } sw; struct PluginVersion { @@ -98,6 +99,7 @@ struct PSAInstalled { sw.apismVersion = "N/A"; sw.atbQTVersion = "N/A"; + sw.atbUpdateToolVersion = "N/A"; pluginVersion.deviceController = "N/A"; pluginVersion.ingenicoISelfCC = "N/A";