~costales/unav/0.60-recalc-route-from-out

« back to all changes in this revision

Viewing changes to qml/AboutPage.qml

  • Committer: costales
  • Author(s): Marcos Costales
  • Date: 2016-06-15 17:26:44 UTC
  • mfrom: (55.7.58 0.60-simple-code)
  • Revision ID: costales.marcos@gmail.com-20160615172644-efmn602rqd5i8ygh
Added calculating route status because 'searching' flag is n...
Rework error web API
Rework no confirm route
No donation btn
Bug 1/15 pos doesn't exits anymore
Recalculate if API error
i18n updated
Message looking for position when user clicks center
Remove decimals from lat,lng in another way. If not, the coo...
Large font for info msg and hide if click fast on map
Msgs for more intuitive simulation process
Added log for check denied
Removed check accuracy
No maximumAge (testing purpose)
Securize all GPS data
Allow double click for zooming
Allow wheel mouse for zooming (check this on phone)
Redefine distance for zoom near
Speak voice before high zoom
Removed timer auto confirm route in X seconds
Remove timer for gps died
Max zoom 19
BG image for map

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
 
107
107
        header: Item {
108
108
            width: parent.width
109
 
            height: appColumn.height + donateColumn.height + units.gu(10)
 
109
            height: appColumn.height + units.gu(10)
110
110
            Column {
111
111
                id: appColumn
112
112
                spacing: units.gu(1)
134
134
                    onLinkActivated: Qt.openUrlExternally(link)
135
135
                }
136
136
            }
137
 
 
138
 
            Column {
139
 
                id: donateColumn
140
 
                anchors.top: appColumn.bottom
141
 
                anchors.topMargin: units.gu(3)
142
 
                width: parent.width
143
 
                spacing: units.gu(1)
144
 
                Label {
145
 
                    id: donateLabel
146
 
                    text: i18n.tr("Support its future development")
147
 
                    anchors.horizontalCenter: parent.horizontalCenter
148
 
                    wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
149
 
                    horizontalAlignment: Text.AlignHCenter
150
 
                    width: parent.width - units.gu(12)
151
 
                }
152
 
                Button {
153
 
                    anchors.horizontalCenter: parent.horizontalCenter
154
 
                    color: UbuntuColors.green
155
 
                    text: i18n.tr("Buy Donate Version")
156
 
                    onClicked: Qt.openUrlExternally("scope://com.canonical.scopes.clickstore?q=unavdonateversion")
157
 
                }
158
 
            }
159
137
        }
160
138
 
161
139
        delegate: ListItem {