Merge lp:~dinko-metalac/sudoku-app/fix-for-1347292 into lp:sudoku-app

Proposed by Dinko Osmankovic
Status: Merged
Approved by: Dinko Osmankovic
Approved revision: 254
Merged at revision: 253
Proposed branch: lp:~dinko-metalac/sudoku-app/fix-for-1347292
Merge into: lp:sudoku-app
Diff against target: 225 lines (+54/-51)
5 files modified
apparmor/sudoku.json (+1/-1)
components/AboutTab.qml (+13/-12)
components/AddProfileDialog.qml (+18/-19)
components/HighscoresTab.qml (+2/-0)
components/ManageProfileDialog.qml (+20/-19)
To merge this branch: bzr merge lp:~dinko-metalac/sudoku-app/fix-for-1347292
Reviewer Review Type Date Requested Status
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Review via email: mp+229748@code.launchpad.net

Commit message

Fix for bug #1347292

Description of the change

Fix for bug #1347292

To post a comment you must log in.
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Dinko Osmankovic (dinko-metalac) wrote :

Does anyone know why is this failing?

254. By Dinko Osmankovic <email address hidden>

Will add fix for highscores later

Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'apparmor/sudoku.json'
2--- apparmor/sudoku.json 2014-07-02 12:19:35 +0000
3+++ apparmor/sudoku.json 2014-08-06 10:05:36 +0000
4@@ -4,4 +4,4 @@
5 "usermetrics"
6 ],
7 "policy_version": 1.2
8-}
9+}
10\ No newline at end of file
11
12=== modified file 'components/AboutTab.qml'
13--- components/AboutTab.qml 2014-05-02 13:43:56 +0000
14+++ components/AboutTab.qml 2014-08-06 10:05:36 +0000
15@@ -11,6 +11,7 @@
16 import UserMetrics 0.1
17
18 Tab {
19+ objectName: "aboutTab"
20 page: Page {
21 Layouts {
22 id: aboutTabLayout
23@@ -27,7 +28,7 @@
24 leftMargin: mainView.width*0.1
25 top: parent.top
26 topMargin: mainView.height*0.2
27-
28+
29 }
30 spacing: units.gu(5)
31 ItemLayout {
32@@ -36,7 +37,7 @@
33 property real maxWidth: units.gu(80)
34 width: Math.min(parent.width, maxWidth)/2
35 height: Math.min(parent.width, maxWidth)/2
36-
37+
38 }
39 Column {
40 //height: iconTabletItem.height
41@@ -64,10 +65,10 @@
42 }
43 }
44 }
45-
46-
47+
48+
49 ]
50-
51+
52 Column {
53 id: aboutColumn;
54 spacing: units.gu(3)
55@@ -87,7 +88,7 @@
56 source: "../icons/about.png"
57 smooth: true
58 fillMode: Image.PreserveAspectFit
59-
60+
61 }
62 }
63 Grid {
64@@ -99,7 +100,7 @@
65 Label {
66 objectName: "authorLabel"
67 text: i18n.tr("Author(s): ")
68-
69+
70 }
71 Label {
72 objectName: "authors"
73@@ -115,9 +116,9 @@
74 font.bold: true;
75 text: "dinko.metalac@gmail.com"
76 }
77-
78+
79 }
80-
81+
82 Row {
83 id: homepage;
84 anchors.horizontalCenter: parent.horizontalCenter;
85@@ -149,12 +150,12 @@
86 objectName: "yearLabel"
87 font.bold: true;
88 text: "2013"
89-
90-
91+
92+
93 }
94 }
95 }
96-
97+
98 }
99 }
100 }
101
102=== modified file 'components/AddProfileDialog.qml'
103--- components/AddProfileDialog.qml 2014-03-18 22:55:40 +0000
104+++ components/AddProfileDialog.qml 2014-08-06 10:05:36 +0000
105@@ -25,6 +25,24 @@
106 color: "#AEA79F"
107 anchors.horizontalCenter: parent.horizontalCenter
108 TextField {
109+ objectName: "Firstname"
110+ id:firstnameField
111+ anchors.fill: parent
112+ placeholderText: i18n.tr("Firstname")
113+ color: "white"
114+ onFocusChanged: {
115+ if (firstnameField.focus)
116+ color = UbuntuColors.warmGrey
117+ }
118+ }
119+ }
120+ UbuntuShape{
121+ width: parent.width - units.gu(4)
122+ height: mainView.height/18
123+ radius: "medium"
124+ color: "#AEA79F"
125+ anchors.horizontalCenter: parent.horizontalCenter
126+ TextField {
127 objectName: "Lastname"
128 id:lastnameField
129 anchors.fill: parent
130@@ -36,25 +54,6 @@
131 }
132 }
133 }
134- UbuntuShape{
135- width: parent.width - units.gu(4)
136- height: mainView.height/18
137- radius: "medium"
138- color: "#AEA79F"
139- anchors.horizontalCenter: parent.horizontalCenter
140- TextField {
141- objectName: "Firstname"
142- id:firstnameField
143- anchors.fill: parent
144- placeholderText: i18n.tr("Firstname")
145- color: "white"
146- onFocusChanged: {
147- if (firstnameField.focus)
148- color = UbuntuColors.warmGrey
149- }
150- }
151- }
152-
153
154 Row{
155 width: parent.width
156
157=== modified file 'components/HighscoresTab.qml'
158--- components/HighscoresTab.qml 2014-06-12 11:38:44 +0000
159+++ components/HighscoresTab.qml 2014-08-06 10:05:36 +0000
160@@ -12,6 +12,8 @@
161
162 Tab {
163
164+ //property alias highscoresModel: highscoresModel
165+
166 page: Page {
167 tools: ToolbarItems {
168 ToolbarButton {
169
170=== modified file 'components/ManageProfileDialog.qml'
171--- components/ManageProfileDialog.qml 2014-03-19 08:38:14 +0000
172+++ components/ManageProfileDialog.qml 2014-08-06 10:05:36 +0000
173@@ -26,6 +26,25 @@
174 color: "#AEA79F"
175 anchors.horizontalCenter: parent.horizontalCenter
176 TextField {
177+ id:firstnameField
178+ anchors.fill: parent
179+ //placeholderText: i18n.tr("Firstname")
180+ text: Settings.getUserFirstName(editUserId)
181+ color: "white"
182+ onFocusChanged: {
183+ if (firstnameField.focus)
184+ firstnameField.color = "#333333"
185+ else firstnameField.color = "white"
186+ }
187+ }
188+ }
189+ UbuntuShape {
190+ width: parent.width - units.gu(4)
191+ height: mainView.height/18
192+ radius: "medium"
193+ color: "#AEA79F"
194+ anchors.horizontalCenter: parent.horizontalCenter
195+ TextField {
196 id:lastnameField
197 text: Settings.getUserLastName(editUserId)
198 anchors.fill: parent
199@@ -38,25 +57,7 @@
200 }
201 }
202 }
203- UbuntuShape {
204- width: parent.width - units.gu(4)
205- height: mainView.height/18
206- radius: "medium"
207- color: "#AEA79F"
208- anchors.horizontalCenter: parent.horizontalCenter
209- TextField {
210- id:firstnameField
211- anchors.fill: parent
212- //placeholderText: i18n.tr("Firstname")
213- text: Settings.getUserFirstName(editUserId)
214- color: "white"
215- onFocusChanged: {
216- if (firstnameField.focus)
217- firstnameField.color = "#333333"
218- else firstnameField.color = "white"
219- }
220- }
221- }
222+
223
224
225 Row{

Subscribers

People subscribed via source and target branches