aboutsummaryrefslogtreecommitdiffstats
path: root/Main.qml
diff options
context:
space:
mode:
authorLukáš Tinkl <ltinkl@luxoft.com>2018-05-04 10:40:15 +0200
committerBramastyo Harimukti Santoso <bramastyo.harimukti.santoso@pelagicore.com>2018-05-07 09:50:09 +0000
commit83c14feed30ed6f9810e8f9ebed7b65014b9a0fa (patch)
tree2b99e028e2175d571c24e7ab18801e191395cb4a /Main.qml
parent15d0610c2674a60e45a89f223ec9d48cc18205cf (diff)
[about] Add version information of QtAppMan and QtIVI
So far only build time versions are displayed (runtime versions TBA to qtivi/qtam) Task-number: AUTOSUITE-411 Change-Id: I267931fb5d545a47103e1ae3e9147bd125f8aa0c Reviewed-by: Bramastyo Harimukti Santoso <bramastyo.harimukti.santoso@pelagicore.com>
Diffstat (limited to 'Main.qml')
-rw-r--r--Main.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Main.qml b/Main.qml
index eda13213..e32e6a1d 100644
--- a/Main.qml
+++ b/Main.qml
@@ -253,7 +253,10 @@ Window {
function saveFile(fileUrl, text) {
var request = new XMLHttpRequest();
request.open("PUT", fileUrl);
- request.send("Neptune 3: " + Qt.application.version + "\n\n" + text);
+ request.send("Neptune 3: " + Qt.application.version + "\n" +
+ "Qt Application Manager: %1".arg(qtamVersion) + "\n" +
+ "Qt IVI: %1".arg(qtiviVersion) + "\n\n" +
+ text);
}
function dumpScreenshotAndVersion() {