aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-04-14 14:29:40 -0500
committerTed Gould <ted@gould.cx>2011-04-14 14:29:40 -0500
commitd8f7ec7a4d933bf9ca989b8760e6d05c3d50d5ed (patch)
tree57aea79d68725b349d3efcec800ac3e4bb215c1d
parent36e1489aa1f123d9e9724f47679249eb9379d25e (diff)
parentb8ece12c8057d848a5b502bf659dddb6fe59fcd9 (diff)
downloadayatana-indicator-application-d8f7ec7a4d933bf9ca989b8760e6d05c3d50d5ed.tar.gz
ayatana-indicator-application-d8f7ec7a4d933bf9ca989b8760e6d05c3d50d5ed.tar.bz2
ayatana-indicator-application-d8f7ec7a4d933bf9ca989b8760e6d05c3d50d5ed.zip
New upstream release.
∘ Free app using application_free() instead of just freeing the memory (LP: #743564) ∘ Protect against cancellation ∘ Make it so that we can cancel GetAll() (LP: #725665) ∘ Make it so that we can cancel Approver requests
-rw-r--r--ChangeLog36
-rwxr-xr-xconfigure20
-rw-r--r--configure.ac4
-rw-r--r--debian/changelog16
4 files changed, 56 insertions, 20 deletions
diff --git a/ChangeLog b/ChangeLog
index de65255..1d8f58c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,41 @@
# Generated by Makefile. Do not edit.
+2011-04-14 Ted Gould <ted@gould.cx>
+
+ 0.3.2
+
+2011-04-12 Ted Gould <ted@gould.cx>
+
+ Make approver signals cancelable
+
+2011-04-12 Michael Terry <mike@mterry.name>
+
+ cancel approver requests too
+
+2011-04-12 Ted Gould <ted@gould.cx>
+
+ Ensure we can cancel GetAll()
+
+2011-04-11 Michael Terry <mike@mterry.name>
+
+ make sure we can cancel GetAll call
+
+2011-04-12 Ted Gould <ted@gould.cx>
+
+ Protect from canceling
+
+2011-04-11 Michael Terry <mike@mterry.name>
+
+ catch one more cancel-before-accessing freed memory instance -- this one resulting in a double free
+
+2011-04-12 Ted Gould <ted@gould.cx>
+
+ Makes sure to free the application using the application_free() function
+
+2011-04-08 Michael Terry <mike@mterry.name>
+
+ don't merely free an app, it has to be properly removed from list and such
+
2011-04-07 Ted Gould <ted@gould.cx>
0.3.1
diff --git a/configure b/configure
index 67f41fe..a177521 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.67 for indicator-application 0.3.1.
+# Generated by GNU Autoconf 2.67 for indicator-application 0.3.2.
#
# Report bugs to <ted@canonical.com>.
#
@@ -703,8 +703,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='indicator-application'
PACKAGE_TARNAME='indicator-application'
-PACKAGE_VERSION='0.3.1'
-PACKAGE_STRING='indicator-application 0.3.1'
+PACKAGE_VERSION='0.3.2'
+PACKAGE_STRING='indicator-application 0.3.2'
PACKAGE_BUGREPORT='ted@canonical.com'
PACKAGE_URL=''
@@ -1446,7 +1446,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures indicator-application 0.3.1 to adapt to many kinds of systems.
+\`configure' configures indicator-application 0.3.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1517,7 +1517,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of indicator-application 0.3.1:";;
+ short | recursive ) echo "Configuration of indicator-application 0.3.2:";;
esac
cat <<\_ACEOF
@@ -1634,7 +1634,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-indicator-application configure 0.3.1
+indicator-application configure 0.3.2
generated by GNU Autoconf 2.67
Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1914,7 +1914,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by indicator-application $as_me 0.3.1, which was
+It was created by indicator-application $as_me 0.3.2, which was
generated by GNU Autoconf 2.67. Invocation command line was
$ $0 $@
@@ -2735,7 +2735,7 @@ fi
# Define the identity of the package.
PACKAGE=indicator-application
- VERSION=0.3.1
+ VERSION=0.3.2
cat >>confdefs.h <<_ACEOF
@@ -12462,7 +12462,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by indicator-application $as_me 0.3.1, which was
+This file was extended by indicator-application $as_me 0.3.2, which was
generated by GNU Autoconf 2.67. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -12528,7 +12528,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-indicator-application config.status 0.3.1
+indicator-application config.status 0.3.2
configured by $0, generated by GNU Autoconf 2.67,
with options \\"\$ac_cs_config\\"
diff --git a/configure.ac b/configure.ac
index 12bc68b..d29a293 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,11 +1,11 @@
-AC_INIT(indicator-application, 0.3.1, ted@canonical.com)
+AC_INIT(indicator-application, 0.3.2, ted@canonical.com)
AC_COPYRIGHT([Copyright 2009, 2010 Canonical])
AC_PREREQ(2.53)
AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(indicator-application, 0.3.1)
+AM_INIT_AUTOMAKE(indicator-application, 0.3.2)
AM_MAINTAINER_MODE
diff --git a/debian/changelog b/debian/changelog
index 59739e5..e26ecfe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,14 +1,14 @@
-indicator-application (0.3.1-0ubuntu3~ppa1) natty; urgency=low
+indicator-application (0.3.2-0ubuntu1~ppa1) UNRELEASED; urgency=low
- * Upstream Merge
- * Free app using application_free() instead of just freeing the
- memory (LP: #743564)
- * Protect against cancelation
- * Make it so that we can cancel GetAll() (LP: #725665)
- * Make it so that we can cancel Approver requests
+ * New upstream release.
+ ∘ Free app using application_free() instead of just freeing
+ the memory (LP: #743564)
+ ∘ Protect against cancellation
+ ∘ Make it so that we can cancel GetAll() (LP: #725665)
+ ∘ Make it so that we can cancel Approver requests
* Drop debian/patches/lp_743564.patch as merged upstream.
- -- Ted Gould <ted@ubuntu.com> Tue, 12 Apr 2011 15:51:37 -0500
+ -- Ted Gould <ted@ubuntu.com> Thu, 14 Apr 2011 14:28:01 -0500
indicator-application (0.3.1-0ubuntu2) natty; urgency=low