Merge lp:~unity-team/unity/8-release-7.81 into lp:unity/8.0

Proposed by Michał Sawicz
Status: Merged
Approved by: Ricardo Salveti
Approved revision: no longer in the source branch.
Merged at revision: 32
Proposed branch: lp:~unity-team/unity/8-release-7.81
Merge into: lp:unity/8.0
Prerequisite: lp:~unity-team/unity/8.new-libunity
Diff against target: 106 lines (+67/-14)
2 files modified
Shell.qml (+27/-12)
debian/changelog (+40/-2)
To merge this branch: bzr merge lp:~unity-team/unity/8-release-7.81
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Approve
Ricardo Salveti (community) Approve
Ricardo Mendoza (community) Approve
Review via email: mp+170460@code.launchpad.net

This proposal supersedes a proposal from 2013-06-19.

Commit message

Release 7.81.0

  * Translation updates.

  [ Michał Sawicz ]
  * Drop People lens.
  * Support git-backed checkout.
  * Revert focus stealing prevention for new apps. Fixes:
    https://bugs.launchpad.net/bugs/1190155.
  * Update CODING after unity8 rename.
  * Update translation template file.
  * Fix notification placement.

  [ Michael Terry ]
  * Show login list when not in narrow mode, instead of only when we have
    multiple users.

  [ Günter Schwann ]
  * Bring back ListView'ed Carousel now that Qt is fixed.

  [ Daniel d'Andrada ]
  * Stage: code cleanup.
  * DirectionalDragArea: added minSpeed and maxSilenceTime constraints.
  * Move Direction enum out of DirectionalDragArea.
  * Added uqmlscene tool and tryFoo targets for manual testing.

  [ Michael Zanetti ]
  * Add Lockscreens.
  * Added right edge hinting to greeter.

  [ Nick Dedekind ]
  * Added Dash tests.

  [ Nicolas d'Offay ]
  * Changed infographic gradient colours.

  [ Mirco Müller ]
  * Integrate notifications.

  [ Pawel Stołowski ]
  * New version with support for smart scopes.

To post a comment you must log in.
Revision history for this message
Ricardo Mendoza (ricmm) wrote :

All works fine, no obvious regressions.

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Ricardo Salveti (rsalveti) wrote :

Looking good, tested with mako and manta.

Thanks.

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
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) 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 'Shell.qml'
2--- Shell.qml 2013-06-19 23:12:38 +0000
3+++ Shell.qml 2013-06-20 00:04:30 +0000
4@@ -172,18 +172,6 @@
5 // greeterRevealer.animatedProgress are not animated
6 Behavior on disappearingAnimationProgress { SmoothedAnimation { velocity: 5 }}
7 }
8-
9- Notifications {
10- id: notifications
11-
12- model: NotificationBackend.Model
13- anchors {
14- fill: parent
15- leftMargin: units.gu(1)
16- rightMargin: units.gu(1)
17- topMargin: panel.panelHeight + units.gu(1)
18- }
19- }
20 }
21
22
23@@ -573,6 +561,33 @@
24 }
25 }
26 }
27+
28+ Notifications {
29+ id: notifications
30+
31+ model: NotificationBackend.Model
32+ anchors {
33+ top: parent.top
34+ right: parent.right
35+ bottom: parent.bottom
36+ leftMargin: units.gu(1)
37+ rightMargin: units.gu(1)
38+ topMargin: panel.panelHeight + units.gu(1)
39+ }
40+ states: [
41+ State {
42+ name: "narrow"
43+ when: overlay.width <= units.gu(60)
44+ AnchorChanges { target: notifications; anchors.left: parent.left }
45+ },
46+ State {
47+ name: "wide"
48+ when: overlay.width > units.gu(60)
49+ AnchorChanges { target: notifications; anchors.left: undefined }
50+ PropertyChanges { target: notifications; width: units.gu(38) }
51+ }
52+ ]
53+ }
54 }
55
56 focus: true
57
58=== modified file 'debian/changelog'
59--- debian/changelog 2013-06-14 11:15:32 +0000
60+++ debian/changelog 2013-06-20 00:04:30 +0000
61@@ -1,5 +1,43 @@
62-unity8 (7.81.0) UNRELEASED; urgency=low
63-
64+unity8 (7.81.0) saucy; urgency=low
65+
66+ * Translation updates.
67+
68+ [ Michał Sawicz ]
69+ * Drop People lens.
70+ * Support git-backed checkout.
71+ * Revert focus stealing prevention for new apps. Fixes:
72+ https://bugs.launchpad.net/bugs/1190155.
73+ * Update CODING after unity8 rename.
74+ * Update translation template file.
75+ * Fix notification placement.
76+
77+ [ Michael Terry ]
78+ * Show login list when not in narrow mode, instead of only when we have
79+ multiple users.
80+
81+ [ Günter Schwann ]
82+ * Bring back ListView'ed Carousel now that Qt is fixed.
83+
84+ [ Daniel d'Andrada ]
85+ * Stage: code cleanup.
86+ * DirectionalDragArea: added minSpeed and maxSilenceTime constraints.
87+ * Move Direction enum out of DirectionalDragArea.
88+ * Added uqmlscene tool and tryFoo targets for manual testing.
89+
90+ [ Michael Zanetti ]
91+ * Add Lockscreens.
92+ * Added right edge hinting to greeter.
93+
94+ [ Nick Dedekind ]
95+ * Added Dash tests.
96+
97+ [ Nicolas d'Offay ]
98+ * Changed infographic gradient colours.
99+
100+ [ Mirco Müller ]
101+ * Integrate notifications.
102+
103+ [ Pawel Stołowski ]
104 * New version with support for smart scopes.
105
106 -- Michał Sawicz <michal.sawicz@canonical.com> Fri, 14 Jun 2013 12:56:17 +0200

Subscribers

People subscribed via source and target branches

to all changes: