summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--configure.ac8
-rw-r--r--src/gs-fade.c2
-rw-r--r--src/gs-manager.c2
4 files changed, 10 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 0f1a9ec..81bdc65 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,8 @@
===============
+Version 1.11.0
+===============
+
+===============
Version 1.10.1
===============
diff --git a/configure.ac b/configure.ac
index 379f9b1..05d2de6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ dnl -*- mode: m4 -*-
AC_PREREQ(2.60)
AC_INIT([mate-screensaver],
- [1.10.1],
+ [1.11.0],
[http://www.mate-desktop.org/])
AC_CONFIG_SRCDIR(src/mate-screensaver.c)
@@ -934,9 +934,9 @@ AC_ARG_WITH(systemd,
[Add systemd support]),
[with_systemd=$withval], [with_systemd=auto])
-PKG_CHECK_MODULES(SYSTEMD,
- [libsystemd-login],
- [have_systemd=yes], [have_systemd=no])
+PKG_CHECK_MODULES(SYSTEMD, [libsystemd], [have_systemd=yes],
+ [PKG_CHECK_MODULES(SYSTEMD, [libsystemd-login],
+ [have_systemd=yes], [have_systemd=no])])
if test "x$with_systemd" = "xauto" ; then
if test x$have_systemd = xno ; then
diff --git a/src/gs-fade.c b/src/gs-fade.c
index 566078d..e8d52b7 100644
--- a/src/gs-fade.c
+++ b/src/gs-fade.c
@@ -729,7 +729,7 @@ static void
gs_fade_start (GSFade *fade,
guint timeout)
{
- guint steps_per_sec = 30;
+ guint steps_per_sec = 60;
guint msecs_per_step;
struct GSFadeScreenPrivate *screen_priv;
gboolean active_fade, res;
diff --git a/src/gs-manager.c b/src/gs-manager.c
index 769e743..a77ebd7 100644
--- a/src/gs-manager.c
+++ b/src/gs-manager.c
@@ -116,7 +116,7 @@ enum
PROP_THROTTLED,
};
-#define FADE_TIMEOUT 1000
+#define FADE_TIMEOUT 250
static guint signals [LAST_SIGNAL] = { 0, };