diff --git a/qml/pages/FirstPage.qml b/qml/pages/FirstPage.qml index 9b2bf9b..1659f80 100644 --- a/qml/pages/FirstPage.qml +++ b/qml/pages/FirstPage.qml @@ -30,7 +30,8 @@ Page { recordLabel.text = "Making new record!"; } else { - recordLabel.text = "Record: " + uptime.rDays + " days " + uptime.rHours + " h " + uptime.rMinutes + " min"; + var rStrings = formatUptime(uptime.rDays, uptime.rHours, uptime.rMinutes); + recordLabel.text = "Record: " + rStrings.days + " " + rStrings.hours + " " + rStrings.minutes; } diff --git a/rpm/harbour-sailtime.spec b/rpm/harbour-sailtime.spec index c696e12..8e90210 100644 --- a/rpm/harbour-sailtime.spec +++ b/rpm/harbour-sailtime.spec @@ -14,7 +14,7 @@ Name: harbour-sailtime %{?qtc_builddir:%define _builddir %qtc_builddir} Summary: SailTime Version: 1.1.1 -Release: 1 +Release: 2 Group: Qt/Qt License: MIT Expat licence URL: http://example.org/ diff --git a/rpm/harbour-sailtime.yaml b/rpm/harbour-sailtime.yaml index 36ecf21..c1ff5ef 100644 --- a/rpm/harbour-sailtime.yaml +++ b/rpm/harbour-sailtime.yaml @@ -1,7 +1,7 @@ Name: harbour-sailtime Summary: SailTime Version: 1.1.1 -Release: 1 +Release: 2 Group: Qt/Qt URL: http://example.org/ License: "MIT Expat licence"