summaryrefslogtreecommitdiff
path: root/app/qml
diff options
context:
space:
mode:
authorTomasz Sterna <tomek@xiaoka.com>2015-04-17 14:06:50 +0200
committerTomasz Sterna <tomek@xiaoka.com>2015-04-17 14:06:50 +0200
commit453e9ea4ea8d56ad84c2329cb95f1dfed279be95 (patch)
tree0987f90f3c9d0302dcc7dde7d1854af38f04f419 /app/qml
parente059c47ff2986c329d075f6f5fbedbf19cff430d (diff)
Better watch versions handling
Didn't react on firmware version change.
Diffstat (limited to 'app/qml')
-rw-r--r--app/qml/pages/WatchInfo.qml32
1 files changed, 16 insertions, 16 deletions
diff --git a/app/qml/pages/WatchInfo.qml b/app/qml/pages/WatchInfo.qml
index 94445fb..69a916c 100644
--- a/app/qml/pages/WatchInfo.qml
+++ b/app/qml/pages/WatchInfo.qml
@@ -46,22 +46,6 @@ Page {
Label {
text: new Date(pebbled.info.bootloader * 1000).toLocaleString(Qt.locale(), Locale.ShortFormat)
}
-
- Label {
- color: Theme.highlightColor
- text: qsTr("Firmware")
- }
- Label {
- text: app.firmwareVersion
- }
-
- Label {
- color: Theme.highlightColor
- text: qsTr("Recovery")
- }
- Label {
- text: app.recoveryVersion
- }
}
Label {
@@ -82,6 +66,22 @@ Page {
Label {
color: Theme.highlightColor
+ text: qsTr("Recovery")
+ }
+ Label {
+ text: app.recoveryVersion
+ }
+
+ Label {
+ color: Theme.highlightColor
+ text: qsTr("Running")
+ }
+ Label {
+ text: app.firmwareVersion
+ }
+
+ Label {
+ color: Theme.highlightColor
text: qsTr("Latest")
}
Label {