From 548daa53dbb19ad5998001a67f56f31904519d4c Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Fri, 15 Apr 2011 09:32:45 -0500 Subject: releasing version 0.2.3-0ubuntu2~ppa1 --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index f2a2537..0c384ae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,7 +3,7 @@ indicator-datetime (0.2.3-0ubuntu2~ppa1) natty; urgency=low * Upstream Merge * Ellipsize calendar entries that are too long (LP: #750671) - -- Ted Gould Fri, 15 Apr 2011 09:01:32 -0500 + -- Ted Gould Fri, 15 Apr 2011 09:32:43 -0500 indicator-datetime (0.2.3-0ubuntu1) natty; urgency=low -- cgit v1.2.3 From 7c382b431db95888a76b9cbbfcd2263d34580fdb Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 21 Jun 2011 14:26:32 -0500 Subject: - Set minimum width for appointments to prevent continuous resizing when the calendar is hiden and ensure there is enough of the event description visible (LP: #762976) - ellipsize long appointment descriptions (LP: #750671) - GTK3 build * Dropping debian/patches/lp_762976.patch and debian/patches/lp_750671.patch as merged upstream. --- debian/changelog | 9 ++++++++- debian/patches/lp_750671.patch | 12 ------------ debian/patches/lp_762976.patch | 18 ------------------ 3 files changed, 8 insertions(+), 31 deletions(-) delete mode 100644 debian/patches/lp_750671.patch delete mode 100644 debian/patches/lp_762976.patch (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index b433c02..176a8b9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,15 @@ indicator-datetime (0.2.90-0ubuntu1) UNRELEASED; urgency=low * New upstream release. + - Set minimum width for appointments to prevent continuous resizing + when the calendar is hiden and ensure there is enough of the + event description visible (LP: #762976) + - ellipsize long appointment descriptions (LP: #750671) + - GTK3 build + * Dropping debian/patches/lp_762976.patch and debian/patches/lp_750671.patch + as merged upstream. - -- Ted Gould Tue, 21 Jun 2011 14:13:01 -0500 + -- Ted Gould Tue, 21 Jun 2011 14:24:41 -0500 indicator-datetime (0.2.3-0ubuntu3) natty; urgency=low diff --git a/debian/patches/lp_750671.patch b/debian/patches/lp_750671.patch deleted file mode 100644 index 676f4f1..0000000 --- a/debian/patches/lp_750671.patch +++ /dev/null @@ -1,12 +0,0 @@ -=== modified file 'src/indicator-datetime.c' ---- src/indicator-datetime.c 2011-04-13 19:32:18 +0000 -+++ src/indicator-datetime.c 2011-04-15 13:23:28 +0000 -@@ -1285,6 +1285,7 @@ - /* Label, probably a username, chat room or mailbox name */ - mi_data->label = gtk_label_new(dbusmenu_menuitem_property_get(newitem, APPOINTMENT_MENUITEM_PROP_LABEL)); - gtk_misc_set_alignment(GTK_MISC(mi_data->label), 0.0, 0.5); -+ gtk_label_set_ellipsize(GTK_LABEL(mi_data->label), PANGO_ELLIPSIZE_END); - gtk_box_pack_start(GTK_BOX(hbox), mi_data->label, TRUE, TRUE, 0); - gtk_widget_show(mi_data->label); - - diff --git a/debian/patches/lp_762976.patch b/debian/patches/lp_762976.patch deleted file mode 100644 index e62280a..0000000 --- a/debian/patches/lp_762976.patch +++ /dev/null @@ -1,18 +0,0 @@ -=== modified file 'src/indicator-datetime.c' ---- src/indicator-datetime.c 2011-04-13 19:32:18 +0000 -+++ src/indicator-datetime.c 2011-04-18 09:59:43 +0000 -@@ -1285,6 +1285,13 @@ - /* Label, probably a username, chat room or mailbox name */ - mi_data->label = gtk_label_new(dbusmenu_menuitem_property_get(newitem, APPOINTMENT_MENUITEM_PROP_LABEL)); - gtk_misc_set_alignment(GTK_MISC(mi_data->label), 0.0, 0.5); -+ -+ GtkStyle * style = gtk_widget_get_style(GTK_WIDGET(mi_data->label)); -+ PangoContext * context = gtk_widget_get_pango_context(GTK_WIDGET(mi_data->label)); -+ gint length = measure_string(style, context, "GGGGGGGGGGGGGGG"); // 15 char wide string max -+ gtk_widget_set_size_request(GTK_WIDGET(mi_data->label), length, -1); // Set the min size in pixels -+ -+ gtk_label_set_ellipsize(GTK_LABEL(mi_data->label), PANGO_ELLIPSIZE_END); - gtk_box_pack_start(GTK_BOX(hbox), mi_data->label, TRUE, TRUE, 0); - gtk_widget_show(mi_data->label); - - -- cgit v1.2.3 From c17c99dea0e5b7c1655c92b27ff79edc60bf0e2a Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 21 Jun 2011 14:28:34 -0500 Subject: debian/control: Switching dep to libedataserverui-3.0-dev --- debian/changelog | 5 +++-- debian/control | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 176a8b9..1d370eb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -indicator-datetime (0.2.90-0ubuntu1) UNRELEASED; urgency=low +indicator-datetime (0.2.90-0ubuntu1~ppa1) UNRELEASED; urgency=low * New upstream release. - Set minimum width for appointments to prevent continuous resizing @@ -8,8 +8,9 @@ indicator-datetime (0.2.90-0ubuntu1) UNRELEASED; urgency=low - GTK3 build * Dropping debian/patches/lp_762976.patch and debian/patches/lp_750671.patch as merged upstream. + * debian/control: Switching dep to libedataserverui-3.0-dev - -- Ted Gould Tue, 21 Jun 2011 14:24:41 -0500 + -- Ted Gould Tue, 21 Jun 2011 14:28:25 -0500 indicator-datetime (0.2.3-0ubuntu3) natty; urgency=low diff --git a/debian/control b/debian/control index ee66b3a..96e66ef 100644 --- a/debian/control +++ b/debian/control @@ -19,7 +19,7 @@ Build-Depends: cdbs, libunique-dev, libpolkit-gtk-1-dev, libedataserver1.2-dev (>= 2.30), - libedataserverui1.2-dev (>= 2.30), + libedataserverui-3.0-dev, libgconf2-dev (>= 2.31), dh-autoreconf Standards-Version: 3.9.1 -- cgit v1.2.3 From d84d6a67d0c63d270462cade09d33efc9d2b6de8 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 21 Jun 2011 14:29:27 -0500 Subject: releasing version 0.2.90-0ubuntu1~ppa1 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 1d370eb..c949921 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -indicator-datetime (0.2.90-0ubuntu1~ppa1) UNRELEASED; urgency=low +indicator-datetime (0.2.90-0ubuntu1~ppa1) oneiric; urgency=low * New upstream release. - Set minimum width for appointments to prevent continuous resizing @@ -10,7 +10,7 @@ indicator-datetime (0.2.90-0ubuntu1~ppa1) UNRELEASED; urgency=low as merged upstream. * debian/control: Switching dep to libedataserverui-3.0-dev - -- Ted Gould Tue, 21 Jun 2011 14:28:25 -0500 + -- Ted Gould Tue, 21 Jun 2011 14:29:24 -0500 indicator-datetime (0.2.3-0ubuntu3) natty; urgency=low -- cgit v1.2.3