Merge lp:~unity-team/unity-lens-applications/x-sru1 into lp:unity-lens-applications/xenial

Proposed by Marco Trevisan (Treviño)
Status: Merged
Approved by: Andrea Azzarone
Approved revision: 383
Merged at revision: 383
Proposed branch: lp:~unity-team/unity-lens-applications/x-sru1
Merge into: lp:unity-lens-applications/xenial
Diff against target: 37 lines (+17/-2)
2 files modified
debian/changelog (+7/-0)
src/daemon.vala (+10/-2)
To merge this branch: bzr merge lp:~unity-team/unity-lens-applications/x-sru1
Reviewer Review Type Date Requested Status
Andrea Azzarone (community) Approve
Review via email: mp+298663@code.launchpad.net

Commit message

Releasing SRU1 for Xenial

To post a comment you must log in.
Revision history for this message
Andrea Azzarone (azzar1) wrote :

+1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2016-02-17 15:31:32 +0000
3+++ debian/changelog 2016-06-29 16:02:02 +0000
4@@ -1,3 +1,10 @@
5+unity-lens-applications (7.1.0+16.04.20160217.2-0ubuntu2) UNRELEASED; urgency=medium
6+
7+ * Fallback from pkginfo.application_name in case app is NULL. (LP:
8+ #1582433)
9+
10+ -- Andrea Azzarone <azzaronea@gmail.com> Wed, 29 Jun 2016 18:01:37 +0200
11+
12 unity-lens-applications (7.1.0+16.04.20160217.2-0ubuntu1) xenial; urgency=medium
13
14 [ Marco Trevisan (Treviño), Matthias Klose ]
15
16=== modified file 'src/daemon.vala'
17--- src/daemon.vala 2013-09-27 12:37:24 +0000
18+++ src/daemon.vala 2016-06-29 16:02:02 +0000
19@@ -1306,8 +1306,16 @@
20 case Category.INSTALLED:
21 case Category.APPLICATIONS:
22 installed_uris.add (uri);
23- res.title = app.get_display_name ();
24- res.comment = sanitize_binary_name (app.get_executable ());
25+ if (app != null)
26+ {
27+ res.title = app.get_display_name ();
28+ res.comment = sanitize_binary_name (app.get_executable ());
29+ }
30+ else
31+ {
32+ res.title = pkginfo.application_name;
33+ }
34+
35 break;
36 case Category.AVAILABLE:
37 available_uris.add (uri);

Subscribers

People subscribed via source and target branches

to all changes: