Merge lp:~renatofilho/address-book-app/fix-1277647 into lp:address-book-app

Proposed by Renato Araujo Oliveira Filho
Status: Merged
Merged at revision: 149
Proposed branch: lp:~renatofilho/address-book-app/fix-1277647
Merge into: lp:address-book-app
Diff against target: 23 lines (+5/-1)
1 file modified
src/imports/MainWindow.qml (+5/-1)
To merge this branch: bzr merge lp:~renatofilho/address-book-app/fix-1277647
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Approve
Arthur Mello (community) Approve
Review via email: mp+208220@code.launchpad.net

Commit message

Avoid change the "Theme.name" during the component complete, this was causing a lot of properties binding loops.

To post a comment you must log in.
Revision history for this message
Renato Araujo Oliveira Filho (renatofilho) wrote :

Are there any related MPs required for this MP to build/function as expected? NO
Is your branch in sync with latest trunk (e.g. bzr pull lp:trunk -> no changes) YES
Did you perform an exploratory manual test run of your code change and any related functionality on device or emulator? YES
Did you successfully run all tests found in your component's Test Plan (https://wiki.ubuntu.com/Process/Merges/TestPlan/address-book-app) on device or emulator? YES
If you changed the UI, was the change specified/approved by design? NO UI CHANGES
If you changed the packaging (debian), did you subscribe a core-dev to this MP? NO PACKAGE CHANGES

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Arthur Mello (artmello) wrote :

Did you perform an exploratory manual test run of the code change and any related functionality on device or emulator?
Yes

Did you successfully run all tests found in your component's Test Plan (https://wiki.ubuntu.com/Process/Merges/TestPlan/address-book-app) on device or emulator?
Yes

Did CI run pass? If not, please explain why.
Yes

Have you checked that submitter has accurately filled out the submitter checklist and has taken no shortcut?
Yes

review: Approve
140. By Renato Araujo Oliveira Filho

Merged mainline.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
141. By Renato Araujo Oliveira Filho

Merged mainline.

142. By Renato Araujo Oliveira Filho

Updated change log with forced release.

143. By Renato Araujo Oliveira Filho

Reverted last commit.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Continuous integration, rev:141
http://jenkins.qa.ubuntu.com/job/address-book-app-ci/453/
Executed test runs:
    SUCCESS: http://jenkins.qa.ubuntu.com/job/address-book-app-trusty-amd64-ci/163
    SUCCESS: http://jenkins.qa.ubuntu.com/job/address-book-app-trusty-armhf-ci/163
        deb: http://jenkins.qa.ubuntu.com/job/address-book-app-trusty-armhf-ci/163/artifact/work/output/*zip*/output.zip
    SUCCESS: http://jenkins.qa.ubuntu.com/job/address-book-app-trusty-i386-ci/163
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-trusty/3939/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-trusty-touch/3524
    FAILURE: http://jenkins.qa.ubuntu.com/job/autopilot-testrunner-otto-trusty/3440/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-trusty-amd64/3972
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-trusty-amd64/3972/artifact/work/output/*zip*/output.zip
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-trusty-armhf/3526
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-trusty-armhf/3526/artifact/work/output/*zip*/output.zip
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-runner-mako/5860
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/4801

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/address-book-app-ci/453/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/imports/MainWindow.qml'
2--- src/imports/MainWindow.qml 2013-12-17 14:57:28 +0000
3+++ src/imports/MainWindow.qml 2014-03-14 18:43:41 +0000
4@@ -25,6 +25,11 @@
5 height: units.gu(71)
6 anchorToKeyboard: false
7
8+ // workaround to change the application theme.
9+ // Looks like SDK use this property to guess which theme to load.
10+ // See bug #1277647
11+ backgroundColor: "#221E1C"
12+
13 signal applicationReady()
14
15 function contact(contactId) {
16@@ -67,7 +72,6 @@
17 }
18
19 Component.onCompleted: {
20- Theme.name = "Ubuntu.Components.Themes.SuruGradient"
21 mainStack.push(Qt.createComponent("ContactList/ContactListPage.qml"))
22 mainWindow.applicationReady()
23 }

Subscribers

People subscribed via source and target branches