Merge lp:~bcurtiswx/ubuntu/natty/empathy/empathy-2.32.2-0ubuntu7 into lp:~ubuntu-desktop/empathy/ubuntu

Proposed by Brian Curtis
Status: Merged
Merged at revision: 162
Proposed branch: lp:~bcurtiswx/ubuntu/natty/empathy/empathy-2.32.2-0ubuntu7
Merge into: lp:~ubuntu-desktop/empathy/ubuntu
Diff against target: 170 lines (+129/-1)
6 files modified
debian/changelog (+10/-0)
debian/patches/00_git_F2_opens_contact_info.patch (+54/-0)
debian/patches/00_git_conn_disc_notif.patch (+42/-0)
debian/patches/00_git_tooltip_on_error_info.patch (+18/-0)
debian/patches/series (+3/-0)
debian/rules (+2/-1)
To merge this branch: bzr merge lp:~bcurtiswx/ubuntu/natty/empathy/empathy-2.32.2-0ubuntu7
Reviewer Review Type Date Requested Status
Ubuntu Desktop Pending
Review via email: mp+47557@code.launchpad.net

Description of the change

empathy (2.32.2-0ubuntu7) natty; urgency=low

  * debian/patches/00_git_conn_disc_notif.patch (LP: #582757)
  * debian/patches/00_git_F2_opens_contact_info.patch (LP: #387991)
  * debian/patches/00_git_tooltip_on_error_info.patch (LP: #681413)
  * debian/rules
    - added --with-ca-file='/etc/ssl/certs/ca-certificates.crt'

 -- Brian Curtis <email address hidden> Tue, 25 Jan 2011 13:20:01 -0500

To post a comment you must log in.
163. By Brian Curtis

* debian/rules
  - added --with-ca-file='/etc/ssl/certs/ca-certificates.crt'

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 2011-01-17 15:18:36 +0000
3+++ debian/changelog 2011-01-26 17:12:31 +0000
4@@ -1,3 +1,13 @@
5+empathy (2.32.2-0ubuntu7) natty; urgency=low
6+
7+ * debian/patches/00_git_conn_disc_notif.patch (LP: #582757)
8+ * debian/patches/00_git_F2_opens_contact_info.patch (LP: #387991)
9+ * debian/patches/00_git_tooltip_on_error_info.patch (LP: #681413)
10+ * debian/rules
11+ - added --with-ca-file='/etc/ssl/certs/ca-certificates.crt'
12+
13+ -- Brian Curtis <bcurtiswx@ubuntu.com> Tue, 25 Jan 2011 13:20:01 -0500
14+
15 empathy (2.32.2-0ubuntu6) natty; urgency=low
16
17 * debian/patches/22_tell_if_the_message_is_a_pending_one_or_not.patch:
18
19=== added file 'debian/patches/00_git_F2_opens_contact_info.patch'
20--- debian/patches/00_git_F2_opens_contact_info.patch 1970-01-01 00:00:00 +0000
21+++ debian/patches/00_git_F2_opens_contact_info.patch 2011-01-26 17:12:31 +0000
22@@ -0,0 +1,54 @@
23+From c4a806bea01fcb3862ab43e88eede77fca1ce7e0 Mon Sep 17 00:00:00 2001
24+From: Kushal Das <kushal@fedoraproject.org>
25+Date: Tue, 11 Jan 2011 12:19:18 +0000
26+Subject: Pressing F2 opens the Edit Contact Information window for #586257
27+
28+---
29+Index: empathy-2.32.2/libempathy-gtk/empathy-individual-view.c
30+===================================================================
31+--- empathy-2.32.2.orig/libempathy-gtk/empathy-individual-view.c 2010-11-18 09:25:30.000000000 -0500
32++++ empathy-2.32.2/libempathy-gtk/empathy-individual-view.c 2011-01-25 13:27:17.253997002 -0500
33+@@ -47,6 +47,7 @@
34+ #include "empathy-individual-view.h"
35+ #include "empathy-individual-menu.h"
36+ #include "empathy-individual-store.h"
37++#include "empathy-contact-dialogs.h"
38+ #include "empathy-images.h"
39+ #include "empathy-linking-dialog.h"
40+ #include "empathy-cell-renderer-expander.h"
41+@@ -891,6 +892,25 @@
42+ data->button = 0;
43+ data->time = event->time;
44+ g_idle_add (individual_view_popup_menu_idle_cb, data);
45++ } else if (event->keyval == GDK_KEY_F2) {
46++ FolksIndividual *individual;
47++ EmpathyContact *contact;
48++
49++ g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_VIEW (view), FALSE);
50++
51++ individual = empathy_individual_view_dup_selected (view);
52++ if (individual == NULL)
53++ return FALSE;
54++
55++ contact = empathy_contact_dup_from_folks_individual (individual);
56++ if (contact == NULL) {
57++ g_object_unref (individual);
58++ return FALSE;
59++ }
60++ empathy_contact_edit_dialog_show (contact, NULL);
61++
62++ g_object_unref (individual);
63++ g_object_unref (contact);
64+ }
65+
66+ return FALSE;
67+@@ -1314,7 +1334,8 @@
68+ GdkEventKey *eventkey = ((GdkEventKey *) event);
69+ gboolean ret = FALSE;
70+
71+- if (eventkey->keyval == GDK_Up || eventkey->keyval == GDK_Down)
72++ if (eventkey->keyval == GDK_KEY_Up || eventkey->keyval == GDK_KEY_Down
73++ || eventkey->keyval == GDK_KEY_F2)
74+ {
75+ GdkEvent *new_event;
76+
77
78=== added file 'debian/patches/00_git_conn_disc_notif.patch'
79--- debian/patches/00_git_conn_disc_notif.patch 1970-01-01 00:00:00 +0000
80+++ debian/patches/00_git_conn_disc_notif.patch 2011-01-26 17:12:31 +0000
81@@ -0,0 +1,42 @@
82+From 59a145f0076fd39b5ff624e936dbe3d4dbc49d5b Mon Sep 17 00:00:00 2001
83+From: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
84+Date: Fri, 14 Jan 2011 08:53:04 +0000
85+Subject: Improve connected/disconnected notifications (#639352)
86+
87+---
88+Index: empathy-2.32.2/src/empathy-event-manager.c
89+===================================================================
90+--- empathy-2.32.2.orig/src/empathy-event-manager.c 2010-11-18 09:25:31.000000000 -0500
91++++ empathy-2.32.2/src/empathy-event-manager.c 2011-01-25 13:18:55.713997002 -0500
92+@@ -1049,11 +1049,12 @@
93+ if (g_settings_get_boolean (gsettings,
94+ EMPATHY_PREFS_NOTIFICATIONS_CONTACT_SIGNOUT))
95+ {
96+- header = g_strdup_printf (_("%s is now offline."),
97++ header = g_strdup_printf ("<b>%s</b>",
98+ empathy_contact_get_alias (contact));
99+
100+- event_manager_add (manager, contact, EMPATHY_EVENT_TYPE_PRESENCE,
101+- EMPATHY_IMAGE_AVATAR_DEFAULT, header, NULL, NULL, NULL, NULL);
102++ event_manager_add (manager, contact,
103++ EMPATHY_EVENT_TYPE_PRESENCE, EMPATHY_IMAGE_AVATAR_DEFAULT,
104++ header, _("Disconnected"), NULL, NULL, NULL);
105+ }
106+ }
107+ }
108+@@ -1069,11 +1070,12 @@
109+ if (g_settings_get_boolean (gsettings,
110+ EMPATHY_PREFS_NOTIFICATIONS_CONTACT_SIGNIN))
111+ {
112+- header = g_strdup_printf (_("%s is now online."),
113++ header = g_strdup_printf ("<b>%s</b>",
114+ empathy_contact_get_alias (contact));
115+
116+- event_manager_add (manager, contact, EMPATHY_EVENT_TYPE_PRESENCE,
117+- EMPATHY_IMAGE_AVATAR_DEFAULT, header, NULL, NULL, NULL, NULL);
118++ event_manager_add (manager, contact,
119++ EMPATHY_EVENT_TYPE_PRESENCE, EMPATHY_IMAGE_AVATAR_DEFAULT,
120++ header, _("Connected"), NULL, NULL, NULL);
121+ }
122+ }
123+ }
124
125=== added file 'debian/patches/00_git_tooltip_on_error_info.patch'
126--- debian/patches/00_git_tooltip_on_error_info.patch 1970-01-01 00:00:00 +0000
127+++ debian/patches/00_git_tooltip_on_error_info.patch 2011-01-26 17:12:31 +0000
128@@ -0,0 +1,18 @@
129+From b4930806a93a8b365400e563b8fa359c00c4016a Mon Sep 17 00:00:00 2001
130+From: Robert Sajdok <robert.sajdok@gmail.com>
131+Date: Mon, 13 Dec 2010 09:40:23 +0000
132+Subject: main-window: add a tooltip on connection error info bars (#626507)
133+
134+---
135+Index: empathy-2.32.2/src/empathy-main-window.c
136+===================================================================
137+--- empathy-2.32.2.orig/src/empathy-main-window.c 2010-11-18 09:25:31.000000000 -0500
138++++ empathy-2.32.2/src/empathy-main-window.c 2011-01-25 13:42:34.073996998 -0500
139+@@ -591,6 +591,7 @@
140+ G_CALLBACK (main_window_error_retry_clicked_cb),
141+ window);
142+
143++ gtk_widget_set_tooltip_text (priv->errors_vbox, error_message);
144+ gtk_widget_show (priv->errors_vbox);
145+
146+ g_hash_table_insert (priv->errors, g_object_ref (account), info_bar);
147
148=== modified file 'debian/patches/series'
149--- debian/patches/series 2011-01-17 15:18:36 +0000
150+++ debian/patches/series 2011-01-26 17:12:31 +0000
151@@ -1,3 +1,6 @@
152+00_git_tooltip_on_error_info.patch
153+00_git_F2_opens_contact_info.patch
154+00_git_conn_disc_notif.patch
155 enable_pidgin_imported_contacts.patch
156 reword_subscription_dailog_to_be_less_technical.patch
157 00git_folks_aliasable_groupable.patch
158
159=== modified file 'debian/rules'
160--- debian/rules 2010-11-24 06:32:18 +0000
161+++ debian/rules 2011-01-26 17:12:31 +0000
162@@ -21,7 +21,8 @@
163 --enable-webkit \
164 --enable-map=no \
165 --enable-favourite-contacts=no \
166- --enable-nautilus-sendto
167+ --enable-nautilus-sendto \
168+ --with-ca-file='/etc/ssl/certs/ca-certificates.crt'
169
170 DEB_DBG_PACKAGE_empathy = empathy-dbg
171

Subscribers

People subscribed via source and target branches