Merge lp:~sylvain-pineau/ubuntu/trusty/checkbox/bug-1287389-1287395 into lp:ubuntu/trusty/checkbox

Proposed by Sylvain Pineau
Status: Merged
Merged at revision: 1992
Proposed branch: lp:~sylvain-pineau/ubuntu/trusty/checkbox/bug-1287389-1287395
Merge into: lp:ubuntu/trusty/checkbox
Diff against target: 49 lines (+11/-2)
3 files modified
checkbox-gui/checkbox-gui/qml/ManualInteractionDialog.qml (+1/-1)
checkbox-gui/checkbox-gui/qml/SuiteSelectionView.qml (+1/-1)
debian/changelog (+9/-0)
To merge this branch: bzr merge lp:~sylvain-pineau/ubuntu/trusty/checkbox/bug-1287389-1287395
Reviewer Review Type Date Requested Status
Daniel Manrique (community) Approve
Ubuntu branches Pending
Review via email: mp+209469@code.launchpad.net

Description of the change

Fixes for the two linked bugs, already fixed in trunk.

To post a comment you must log in.
Revision history for this message
Daniel Manrique (roadmr) wrote :

Looks good and the changes target the linked bug specifically, so this looks OK for merging under Feature Freeze constraints. Thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'checkbox-gui/checkbox-gui/qml/ManualInteractionDialog.qml'
2--- checkbox-gui/checkbox-gui/qml/ManualInteractionDialog.qml 2014-02-03 19:24:31 +0000
3+++ checkbox-gui/checkbox-gui/qml/ManualInteractionDialog.qml 2014-03-05 14:47:37 +0000
4@@ -228,7 +228,7 @@
5 skipcheck.enabled = true;
6
7 // Outcome values refer to PBJobResult enums
8- if (outcome === 2 /* PBJobResult_Pass */) {
9+ if (suggested_outcome === 2 /* PBJobResult_Pass */) {
10 yescheck.checked = true;
11 nocheck.checked = false;
12 skipcheck.checked = false; // we didnt skip it
13
14=== modified file 'checkbox-gui/checkbox-gui/qml/SuiteSelectionView.qml'
15--- checkbox-gui/checkbox-gui/qml/SuiteSelectionView.qml 2014-02-03 19:24:31 +0000
16+++ checkbox-gui/checkbox-gui/qml/SuiteSelectionView.qml 2014-03-05 14:47:37 +0000
17@@ -79,7 +79,6 @@
18 var item = whiteListModel.get(i);
19 if (item.testname.match(/default/i)) {
20 whiteListModel.setProperty(i, "check", true);
21- return;
22 }
23 }
24 suiteSelect();
25@@ -125,6 +124,7 @@
26 bottom: parent.bottom
27 margins: units.gu(2)
28 }
29+ enabled: false
30 text: i18n.tr("OK")
31 color: UbuntuColors.lightAubergine
32 onClicked: {
33
34=== modified file 'debian/changelog'
35--- debian/changelog 2014-02-19 19:43:48 +0000
36+++ debian/changelog 2014-03-05 14:47:37 +0000
37@@ -1,3 +1,12 @@
38+checkbox (0.17.6-0ubuntu2) trusty; urgency=low
39+
40+ [Sylvain Pineau]
41+ * Update the default whitelist selection check mark on startup (LP: #1287389)
42+ * Properly set the suggested outcome for user-interact type jobs. Due to a
43+ variable name change, the outcome wasn't getting set (LP: #1287395)
44+
45+ -- Sylvain Pineau <sylvain.pineau@canonical.com> Wed, 05 Mar 2014 15:34:29 +0100
46+
47 checkbox (0.17.6-0ubuntu1) trusty; urgency=low
48
49 * New upstream release, changes detailed in checkbox-old/CHANGELOG

Subscribers

People subscribed via source and target branches