Index: sources/gui/qml/Home.ui.qml =================================================================== diff -u -r310dbfe508ffb4c921bb9337e207223f8677ca10 -rf0ae1a9f6da81f3493aa01257a47125b36b2e73f --- sources/gui/qml/Home.ui.qml (.../Home.ui.qml) (revision 310dbfe508ffb4c921bb9337e207223f8677ca10) +++ sources/gui/qml/Home.ui.qml (.../Home.ui.qml) (revision f0ae1a9f6da81f3493aa01257a47125b36b2e73f) @@ -5,6 +5,7 @@ property alias backgroundColor: backgroundRect.color width: 1280 height: 800 + property alias versionText: versionText property alias mouseAreaTreatmentHistory: mouseAreaTreatmentHistory property alias mouseAreaDeviceSettings: mouseAreaDeviceSettings property alias mouseAreaTreatmentManager: mouseAreaTreatmentManager @@ -227,6 +228,7 @@ Text { id: textHeader + color: "#ffffff" text: qsTr("Diality Home Dialysis") anchors.right: parent.right anchors.rightMargin: 576 @@ -248,5 +250,20 @@ source: "qrc:/images/home" fillMode: Image.PreserveAspectFit } + + Text { + id: versionText + x: 1172 + y: 767 + width: 104 + height: 27 + text: qsTr("0.1") + horizontalAlignment: Text.AlignRight + anchors.bottom: parent.bottom + anchors.bottomMargin: 6 + anchors.right: parent.right + anchors.rightMargin: 4 + font.pixelSize: 14 + } } }