Compare commits

..

No commits in common. "42624409ba5298a6af162496b8eeede981e0f8cc" and "1ea1cdc3e67fe0abfd7b315f67abc96dd5146c65" have entirely different histories.

2 changed files with 3 additions and 5 deletions

View File

@ -148,8 +148,7 @@ DEFINES += QT_DEPRECATED_WARNINGS
# versions.
# 1.5.6 : Show additional update progress info in status bar.
# 1.5.7 : Add support for dynamic portrait / landscape.
# 1.5.8 : Use EVENT_ID=<pid of update-tool> for CMD_EVENT.
VERSION="1.5.8"
VERSION="1.5.7"
# PLANNED TODOS:
# 1: Das Repository wird repariert bwz. neu geklont. Unabhaengig vom WAIT.
# 2: Wenn der WAIT-Button aktiv ist, dann wird ein Repository repariert (neu

View File

@ -21,7 +21,6 @@
#include <QThread>
#include <QJsonDocument>
#include <QJsonObject>
#include <QCoreApplication>
#if 0
########################
@ -381,7 +380,7 @@ QString IsmasClient::updateNewsToIsmas(char const *event,
"{"
"\"REASON\":\"SW_UP\","
"\"TIMESTAMP\":\"%s\","
"\"EVENT_ID\":\"%d\","
"\"EVENT_ID\":\"0\","
"\"EVENT\":\"%s\","
"\"EVENTSTATE\":1,"
"\"PARAMETER\": {"
@ -391,7 +390,7 @@ QString IsmasClient::updateNewsToIsmas(char const *event,
"\"STEP_RESULT\" : \"%s\","
"\"VERSION\" : \"%s\""
"}"
"}", ts.toStdString().c_str(), static_cast<int>(QCoreApplication::applicationPid()), event, percent, resultCode,
"}", ts.toStdString().c_str(), event, percent, resultCode,
step, step_result, version);
return buf;
}