Merge lp:~nik90/ubuntu-clock-app/increase-clockmode-switch-speed into lp:ubuntu-clock-app

Proposed by Nekhelesh Ramananthan
Status: Merged
Approved by: Nekhelesh Ramananthan
Approved revision: 90
Merged at revision: 92
Proposed branch: lp:~nik90/ubuntu-clock-app/increase-clockmode-switch-speed
Merge into: lp:ubuntu-clock-app
Diff against target: 71 lines (+9/-8)
4 files modified
app/components/AnalogShadow.qml (+2/-2)
app/components/Clock.qml (+4/-4)
app/components/DigitalShadow.qml (+2/-2)
debian/changelog (+1/-0)
To merge this branch: bzr merge lp:~nik90/ubuntu-clock-app/increase-clockmode-switch-speed
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Approve
Nekhelesh Ramananthan Abstain
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Victor Thompson Approve
Review via email: mp+233620@code.launchpad.net

Commit message

Made clock mode switch animation twice as fast based on public user testing results.

Description of the change

Made clock mode switch animation twice as fast based on public user testing results. Also changed the NumberAnimation to UbuntuNumberAnimation to maintain consistency.

==== Checklist ====

* Are there any related MPs required for this MP to build/function as expected? Please list.

None Required.

* Is your branch in sync with latest trunk? (e.g. bzr pull lp:ubuntu-clock-app -> no changes)

Yes it is.

* Did the tests run successfully (QML and AP)?

Yes

* Did you perform an exploratory manual test run of your code change and any related functionality?

Yes

* What device (or emulator) has your component test plan been executed successfully on?

x86 Emulator and N4 Device

* If you changed the UI, was the change specified/approved by design?

Yes this was approved by Giorgio after testing it on his N4 device.

* What manual tests are relevant for this MP?

- Open the clock app and switch from analog to digital mode
- The animation must be twice as fast as the old one

* If you changed UI labels, did you update the pot file?

None

* Did you include a link to the MR Review Checklist Template to make your reviewer's life easier?

https://wiki.ubuntu.com/Process/Merges/Checklists/Clock

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: Approve (continuous-integration)
Revision history for this message
Victor Thompson (vthompson) wrote :

Assuming the bug report filed by design was to indicate that the speed should be twice as fast, this looks good.

review: Approve
Revision history for this message
Nekhelesh Ramananthan (nik90) wrote :

Actually I don't have access to the design document attached to the bug report :P as well. So this will have to wait until monday to get design approval and merge. But thnx for the quick code review.

review: Needs Fixing
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
Nekhelesh Ramananthan (nik90) :
review: Abstain
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'app/components/AnalogShadow.qml'
2--- app/components/AnalogShadow.qml 2014-08-24 12:47:50 +0000
3+++ app/components/AnalogShadow.qml 2014-09-09 10:23:20 +0000
4@@ -74,10 +74,10 @@
5 }
6
7 transitions: Transition {
8- NumberAnimation {
9+ UbuntuNumberAnimation {
10 target: rotation
11 property: "angle"
12- duration: 666
13+ duration: 333
14 }
15 }
16 }
17
18=== modified file 'app/components/Clock.qml'
19--- app/components/Clock.qml 2014-08-24 12:47:50 +0000
20+++ app/components/Clock.qml 2014-09-09 10:23:20 +0000
21@@ -190,18 +190,18 @@
22 }
23 }
24
25- PropertyAnimation {
26+ UbuntuNumberAnimation {
27 target: bottomShadow
28 property: "opacity"
29- duration: 333
30+ duration: 166
31 from: 1
32 to: 0
33 }
34
35- PropertyAnimation {
36+ UbuntuNumberAnimation {
37 target: upperShadow
38 property: "opacity"
39- duration: 333
40+ duration: 166
41 from: 0
42 to: 1
43 }
44
45=== modified file 'app/components/DigitalShadow.qml'
46--- app/components/DigitalShadow.qml 2014-08-24 12:47:50 +0000
47+++ app/components/DigitalShadow.qml 2014-09-09 10:23:20 +0000
48@@ -74,10 +74,10 @@
49 }
50
51 transitions: Transition {
52- NumberAnimation {
53+ UbuntuNumberAnimation {
54 target: rotation
55 property: "angle"
56- duration: 666
57+ duration: 333
58 }
59 }
60 }
61
62=== modified file 'debian/changelog'
63--- debian/changelog 2014-09-08 22:22:57 +0000
64+++ debian/changelog 2014-09-09 10:23:20 +0000
65@@ -29,6 +29,7 @@
66 * Added pressed visual state to the settings button (LP: #1364553)
67 * Fixed no UI hint being show to add cities (LP: #1362263)
68 * Fixed add world city being triggered accidentally (LP: #1359180)
69+ * Fixed clock mode animations being too slow (LP: #1365440)
70 * Added alarm snooze settings (LP: #1354400)
71 * Fixed default alarm label not being translatable (LP: #1365012)
72

Subscribers

People subscribed via source and target branches