From 212b1753d681fc2d8dd7399ba49430d7b77cc5e0 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 4 Feb 2009 14:14:15 +0100 Subject: ppa23 --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index d90661e..ae3db50 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-applet (0.1~ppa23) intrepid; urgency=low + + * Removing border + + -- Ted Gould Wed, 04 Feb 2009 13:57:23 +0100 + indicator-applet (0.1~ppa22) intrepid; urgency=low * Add support for a transparent panel applet -- cgit v1.2.3 From 663d92661c8eecc51728b8e4d2c9c3886864d2ca Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 4 Feb 2009 14:16:06 +0100 Subject: Adding a conflicts and a replaces to get rid of errors. --- debian/changelog | 6 ++++++ debian/control | 2 ++ 2 files changed, 8 insertions(+) diff --git a/debian/changelog b/debian/changelog index ae3db50..a6372f0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-applet (0.1~ppa24) intrepid; urgency=low + + * Adding a conflicts and a replaces to get rid of errors. + + -- Ted Gould Wed, 04 Feb 2009 14:14:25 +0100 + indicator-applet (0.1~ppa23) intrepid; urgency=low * Removing border diff --git a/debian/control b/debian/control index 9d04325..7cacf57 100644 --- a/debian/control +++ b/debian/control @@ -25,6 +25,8 @@ Description: Applet for the GNOME panel providing various indicators for Package: libindicate0 Section: libs +Conflicts: libindicate +Replaces: libindicate Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -- cgit v1.2.3 From eae7dfc09c05436a138cbf0585d6f45e07e46969 Mon Sep 17 00:00:00 2001 From: Neil Jagdish Patel Date: Wed, 4 Feb 2009 14:54:56 +0100 Subject: Set the widget name on the applet rather than the menubar, to make sure it's picked up globally. --- debian/changelog | 7 +++++++ src/applet-main.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index a6372f0..e34e79c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-applet (0.1~ppa25) intrepid; urgency=low + + * Set the widget name on the applet rather than the menubar, to make sure + it's picked up globally. + + -- Neil J. Patel Wed, 04 Feb 2009 14:53:41 +0100 + indicator-applet (0.1~ppa24) intrepid; urgency=low * Adding a conflicts and a replaces to get rid of errors. diff --git a/src/applet-main.c b/src/applet-main.c index e1f1f03..11d85f1 100644 --- a/src/applet-main.c +++ b/src/applet-main.c @@ -96,11 +96,11 @@ applet_fill_cb (PanelApplet * applet, const gchar * iid, gpointer data) " GtkWidget::focus-padding = 0\n" "}\n" "widget \"*.indicator-applet-menubar\" style \"indicator-applet-style\""); - + gtk_widget_set_name(GTK_WIDGET (applet), "indicator-applet-menubar"); + /* Build menubar */ menubar = gtk_menu_bar_new(); GTK_WIDGET_SET_FLAGS (menubar, GTK_WIDGET_FLAGS(menubar) | GTK_CAN_FOCUS); - gtk_widget_set_name(GTK_WIDGET (menubar), "indicator-applet-menubar"); g_signal_connect_after(menubar, "expose-event", G_CALLBACK(menubar_on_expose), menubar); gtk_container_set_border_width(GTK_CONTAINER(menubar), 0); -- cgit v1.2.3 From 206b4073d82940cf8f8356f49821a54f028d60b5 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 4 Feb 2009 19:00:11 +0100 Subject: releasing version 0.1~ppa26 --- debian/changelog | 8 ++++++++ src/applet-main.c | 1 + 2 files changed, 9 insertions(+) diff --git a/debian/changelog b/debian/changelog index e34e79c..e368259 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +indicator-applet (0.1~ppa26) intrepid; urgency=low + + * Removing the icons + * Adding in the docs + * Printing the icons dir + + -- Ted Gould Wed, 04 Feb 2009 18:58:32 +0100 + indicator-applet (0.1~ppa25) intrepid; urgency=low * Set the widget name on the applet rather than the menubar, to make sure diff --git a/src/applet-main.c b/src/applet-main.c index 11d85f1..bff8b71 100644 --- a/src/applet-main.c +++ b/src/applet-main.c @@ -87,6 +87,7 @@ applet_fill_cb (PanelApplet * applet, const gchar * iid, gpointer data) /* Init some theme/icon stuff */ gtk_icon_theme_append_search_path(gtk_icon_theme_get_default(), ICONS_DIR); + g_debug("Icons directory: " ICONS_DIR); gtk_rc_parse_string ( "style \"indicator-applet-style\"\n" "{\n" -- cgit v1.2.3 From d95b17010964e6e2c49e46663c60be0330abdc18 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 4 Feb 2009 19:08:18 +0100 Subject: typo --- src/applet-main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applet-main.c b/src/applet-main.c index bff8b71..b1f1b0e 100644 --- a/src/applet-main.c +++ b/src/applet-main.c @@ -87,7 +87,7 @@ applet_fill_cb (PanelApplet * applet, const gchar * iid, gpointer data) /* Init some theme/icon stuff */ gtk_icon_theme_append_search_path(gtk_icon_theme_get_default(), ICONS_DIR); - g_debug("Icons directory: " ICONS_DIR); + g_debug("Icons directory: %s", ICONS_DIR); gtk_rc_parse_string ( "style \"indicator-applet-style\"\n" "{\n" -- cgit v1.2.3