From 129efd6638cab89a3bc75a2b5f252e613a30163d Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Wed, 30 Jul 2008 20:38:21 -0400 Subject: update for 0.3.0 release --- NEWS | 42 ++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- src/ck-session.c | 2 +- 3 files changed, 44 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index cc5d64a..b60fff3 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,45 @@ +============== +Version 0.3.0 +============== + + * API changes to make the daemon conform to the published spec + + * don't allow reboot if PolicyKit and RBAC are disabled (William Jon McCann) + * fix path in includes (William Jon McCann) + * reorganize the docs a bit (William Jon McCann) + * pull updated DTD and xsl from DeviceKit-disks (William Jon McCann) + * fix distcheck (William Jon McCann) + * still having problems using xinclude (William Jon McCann) + * fix the includes (William Jon McCann) + * add missing bits (William Jon McCann) + * use spec files directly as introspection xml and try to generate docs on the fly (William Jon McCan + * use object paths for seat added/removed signals per spec (William Jon McCann) + * regenerate the docs and xml from the spec (William Jon McCann) + * add GetLoginSessionId to exported interface (William Jon McCann) + * fix use of unix-user as int (William Jon McCann) + * use fortify source flag when building from git (William Jon McCann) + * fix location of scripts again (William Jon McCann) + * dist bzip by default (William Jon McCann) + * fix up signal definition (William Jon McCann) + * fix UnixUser to be uint (William Jon McCann) + * use object paths instead of strings for signals (William Jon McCann) + * cleanly shutdown event logging thread (William Jon McCann) + * export login session id to the bus (William Jon McCann) + * exit with the bus now that we're activated by the bus (William Jon McCann) + * allow retaining authorizations for {stop,restart}-multiple-users (David Zeuthen) + * make sure to add all override parameters (William Jon McCann) + * fix the script to work with recent dbus-python api changes (William Jon McCann) + * always try to detect parameters for session (William Jon McCann) + * oops one more place (William Jon McCann) + * install scripts into $(prefix)/lib instead of $libdir (William Jon McCann) + * return PolicyKit results when not privileged for action (William Jon McCann) + * fix typo (William Jon McCann) + * initial login session id support (William Jon McCann) + * display uid as unix-user to match api (William Jon McCann) + * fix packaging of policy file (William Jon McCann) + * rename policy file (William Jon McCann) + * post release version bump (William Jon McCann) + ============== Version 0.2.10 ============== diff --git a/configure.ac b/configure.ac index b540f24..77a8844 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ(2.59c) AC_INIT([ConsoleKit], - [0.2.11], + [0.3.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=ConsoleKit], [ConsoleKit]) diff --git a/src/ck-session.c b/src/ck-session.c index dd4f13a..8ba8791 100644 --- a/src/ck-session.c +++ b/src/ck-session.c @@ -505,7 +505,7 @@ ck_session_get_login_session_id (CkSession *session, GError **error) { g_return_val_if_fail (CK_IS_SESSION (session), FALSE); - g_debug ("Got: %s", session->priv->login_session_id); + if (login_session_id != NULL) { *login_session_id = g_strdup (session->priv->login_session_id); } -- cgit