diff options
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 20 | ||||
-rw-r--r-- | debian/patches/04_language_handling.patch | 4 |
4 files changed, 35 insertions, 3 deletions
@@ -1,3 +1,15 @@ +Overview of changes in lightdm 1.13.0 + + * Fix crash when having configuration keys defined in multiple places + * Fix pipe file descriptor leak for each session login / authentication + * Use correct syntax for DesktopNames key in session files + * Match seat configuration with globbing + * Allow user switching in multi-seat until bug stopping greeter showing on + logout is fixed + * Disable log message when AccountsService users change + * Update AppArmor scripts, requires AppArmor 2.9 + * Update tests to run better on servers + Overview of changes in lightdm 1.12.0 * Fix assumption that the display server is X when running scripts. diff --git a/configure.ac b/configure.ac index 01a32509..ca820a9d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(lightdm, 1.12.0) +AC_INIT(lightdm, 1.13.0) AC_CONFIG_MACRO_DIR(m4) AC_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz foreign]) diff --git a/debian/changelog b/debian/changelog index a5dfb77a..c9758dbd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,23 @@ +lightdm (1.13.0-0ubuntu1) vivid; urgency=medium + + * New upstream release: + - Fix crash when having configuration keys defined in multiple places + (LP: #1377373) + - Fix pipe file descriptor leak for each session login / authentication + (LP: #1190344) + - Use correct syntax for DesktopNames key in session files (LP: #1383321) + - Match seat configuration with globbing (LP: #1364911) + - Allow user switching in multi-seat until bug stopping greeter showing on + logout is fixed + - Disable log message when AccountsService users change (LP: #1376357) + - Update AppArmor scripts, requires AppArmor 2.9 + - Update tests to run better on servers + * debian/config-error-dialog.sh: + - Show warning dialog instead of interrupted login if syntax error in + ~/.profile etc (LP: #678421) + + -- Robert Ancell <robert.ancell@canonical.com> Thu, 13 Nov 2014 11:08:17 +1300 + lightdm (1.12.0-0ubuntu2) utopic; urgency=medium * Restore 1.11.9-0ubuntu2, it was reverted by error in the previous upload diff --git a/debian/patches/04_language_handling.patch b/debian/patches/04_language_handling.patch index 7547f919..6c840712 100644 --- a/debian/patches/04_language_handling.patch +++ b/debian/patches/04_language_handling.patch @@ -75,8 +75,8 @@ Index: trunk/src/seat.c =================================================================== --- trunk.orig/src/seat.c +++ trunk/src/seat.c -@@ -944,7 +944,7 @@ configure_session (Session *session, Ses - session_set_env (session, "XDG_CURRENT_DESKTOP", desktop_name); +@@ -949,7 +949,7 @@ configure_session (Session *session, Ses + } if (language && language[0] != '\0') { - session_set_env (session, "LANG", language); |