diff options
-rw-r--r-- | NEWS | 17 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | src/ck-manager.c | 2 |
3 files changed, 20 insertions, 3 deletions
@@ -1,4 +1,21 @@ ============== +Version 0.9.1 +============== +[Please note that this is a development release.] + +Development release of ConsoleKit2 targeting the 1.0 release. +Please report all problems to +https://github.com/ConsoleKit2/ConsoleKit2/issues + +Only one commit with this release but since it changes the +public DBUS API it's better to get it out now before someone +starts writing for the 0.9.0 APIs. + +Hybrid Suspend has been added as a sleep method. The sleep +API has been reworked to emulate logind so that supporting +both is easier. + +============== Version 0.9.0 ============== [Please note that this is a development release.] diff --git a/configure.ac b/configure.ac index 028a35e..1a23499 100644 --- a/configure.ac +++ b/configure.ac @@ -3,12 +3,12 @@ AC_COPYRIGHT([Copyright 2014 The ConsoleKit2 Team]) AC_PREREQ([2.50]) AC_INIT([ConsoleKit2], - [0.9.0], + [0.9.1], [https://github.com/ConsoleKit2/ConsoleKit2/issues], [ConsoleKit2]) VERSION_MAJOR=0 VERSION_MINOR=9 -VERSION_REVISION=0 +VERSION_REVISION=1 COPYRIGHT_YEARS="2014" diff --git a/src/ck-manager.c b/src/ck-manager.c index 78b8092..bdec40f 100644 --- a/src/ck-manager.c +++ b/src/ck-manager.c @@ -1631,7 +1631,7 @@ ck_manager_hybrid_sleep (CkManager *manager, dbus-send --system --dest=org.freedesktop.ConsoleKit \ --type=method_call --print-reply --reply-timeout=2000 \ /org/freedesktop/ConsoleKit/Manager \ - org.freedesktop.ConsoleKit.Manager.CanHibernate + org.freedesktop.ConsoleKit.Manager.CanHybridSleep * * Returnes TRUE. **/ |