aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-02-17 13:30:01 -0600
committerTed Gould <ted@gould.cx>2011-02-17 13:30:01 -0600
commitc8b0c8db359a2eca840adde04cf62004151735c4 (patch)
tree3484da43e2be0418b17b344ee1358e4e2193e638
parent4209721529302daa7cb3a1f73b9ae2a1946195a4 (diff)
parent54dde179be74619f64add30cb99f75fee2dfdd31 (diff)
downloadayatana-indicator-session-c8b0c8db359a2eca840adde04cf62004151735c4.tar.gz
ayatana-indicator-session-c8b0c8db359a2eca840adde04cf62004151735c4.tar.bz2
ayatana-indicator-session-c8b0c8db359a2eca840adde04cf62004151735c4.zip
* New upstream release.
* Adding in accessible description
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog20
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac4
-rw-r--r--debian/changelog7
-rw-r--r--src/indicator-session.c8
6 files changed, 40 insertions, 4 deletions
diff --git a/AUTHORS b/AUTHORS
index 41d6de8..146463b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -7,6 +7,7 @@
Gabor Kelemen
Ken VanDine
Kyle Nitzsche
+ Luke Yelavich
Marc Deslauriers
Martin Pitt
Matthew Rasmus
diff --git a/ChangeLog b/ChangeLog
index 8a7f766..b70f74d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,25 @@
# Generated by Makefile. Do not edit.
+2011-02-17 Ted Gould <ted@gould.cx>
+
+ 0.2.14
+
+2011-02-17 Ted Gould <ted@gould.cx>
+
+ Adding an accessible description
+
+2011-02-17 Ted Gould <ted@gould.cx>
+
+ Increasing the libindicator version
+
+2011-02-14 Luke Yelavich <luke.yelavich@canonical.com>
+
+ Make the word session translatable
+
+2011-02-14 Luke Yelavich <luke.yelavich@canonical.com>
+
+ Add accessible_desc support
+
2011-02-11 Ted Gould <ted@gould.cx>
0.2.13
diff --git a/configure b/configure
index 66e14ae..0cd412f 100755
--- a/configure
+++ b/configure
@@ -2882,7 +2882,7 @@ fi
# Define the identity of the package.
PACKAGE=indicator-session
- VERSION=0.2.13
+ VERSION=0.2.14
cat >>confdefs.h <<_ACEOF
@@ -11979,7 +11979,7 @@ AM_BACKSLASH='\'
###########################
GTK_REQUIRED_VERSION=2.12
-INDICATOR_REQUIRED_VERSION=0.3.5
+INDICATOR_REQUIRED_VERSION=0.3.19
DBUSMENUGTK_REQUIRED_VERSION=0.3.91
POLKIT_REQUIRED_VERSION=0.92
diff --git a/configure.ac b/configure.ac
index 8350dd5..e12c744 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ AC_INIT(src/indicator-session.c)
AC_PREREQ(2.53)
AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(indicator-session, 0.2.13)
+AM_INIT_AUTOMAKE(indicator-session, 0.2.14)
AM_MAINTAINER_MODE
@@ -26,7 +26,7 @@ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
###########################
GTK_REQUIRED_VERSION=2.12
-INDICATOR_REQUIRED_VERSION=0.3.5
+INDICATOR_REQUIRED_VERSION=0.3.19
DBUSMENUGTK_REQUIRED_VERSION=0.3.91
POLKIT_REQUIRED_VERSION=0.92
diff --git a/debian/changelog b/debian/changelog
index 9d8f8c0..bbd644f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+indicator-session (0.2.14-0ubuntu1~ppa1) UNRELEASED; urgency=low
+
+ * New upstream release.
+ * Adding in accessible description
+
+ -- Ted Gould <ted@ubuntu.com> Thu, 17 Feb 2011 13:29:14 -0600
+
indicator-session (0.2.13-0ubuntu1) natty; urgency=low
* New upstream release.
diff --git a/src/indicator-session.c b/src/indicator-session.c
index 2104281..97e2ce9 100644
--- a/src/indicator-session.c
+++ b/src/indicator-session.c
@@ -72,6 +72,7 @@ INDICATOR_SET_TYPE(INDICATOR_SESSION_TYPE)
static GtkLabel * get_label (IndicatorObject * io);
static GtkImage * get_icon (IndicatorObject * io);
static GtkMenu * get_menu (IndicatorObject * io);
+static const gchar * get_accessible_desc (IndicatorObject * io);
static gboolean build_menu_switch (DbusmenuMenuitem * newitem, DbusmenuMenuitem * parent, DbusmenuClient * client, gpointer user_data);
static gboolean new_user_item (DbusmenuMenuitem * newitem, DbusmenuMenuitem * parent, DbusmenuClient * client, gpointer user_data);
static void icon_changed (IndicatorSession * session, const gchar * icon_name);
@@ -99,6 +100,7 @@ indicator_session_class_init (IndicatorSessionClass *klass)
io_class->get_label = get_label;
io_class->get_image = get_icon;
io_class->get_menu = get_menu;
+ io_class->get_accessible_desc = get_accessible_desc;
return;
}
@@ -253,6 +255,12 @@ get_label (IndicatorObject * io)
return NULL;
}
+static const gchar *
+get_accessible_desc (IndicatorObject * io)
+{
+ return _("Session");
+}
+
static void
icon_changed (IndicatorSession * session, const gchar * icon_name)
{