From 5c3f38fb74c6d377feee07d8e51b3770ffca8ea6 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sun, 13 Feb 2011 16:46:11 +0100 Subject: Release 0.6.4 --- NEWS | 20 ++++++++++++++++++++ configure.ac | 4 ++-- server/spice.h | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index f160f676..73643358 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,23 @@ +Changes in 0.6.4: +================= +* cmd-line-parser: fix wrong reporting of bad argument in --bla=val case +* Client: various bugfixes to the controller support: + * Make title and controller menu text UTF-8 + * Change source of controller socket name, fixing CVE-2010-2792 +* Client: Add a --title cmdline option (rhbz#662452) +* Client: fix minor for old migration support +* Client: Remove spice-client watermark (rhbz#662450) +* Client: accept 4 as top down flag value for compatibility with older servers +* Client: stop blinking keyboard when out of focus +* Client: More verbose error logging in various cases +* Client-x11: Make sure we get focus (Don't set NET_WM_USER_TIME to 0) on start +* Client-x11: Fix a lockup (rhbz#654265) +* Client-x11: Fix a crash in combination with xim (rhbz#655836) +* Client-x11: Fix modifier keys getting stuck (rhbz#655048) +* Client-x11: Allow window manager to place the spice window (rhbz#662407) +* Server: send 1 instead of 4 as topdown flag "true" value +* Server: Drop unnecessary CEGUI, X11 and alsa requires from spice-server.pc + Major changes in 0.6.3: ======================= Major changes in this release: diff --git a/configure.ac b/configure.ac index ba931e9d..f343526a 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.57]) m4_define([SPICE_MAJOR], 0) m4_define([SPICE_MINOR], 6) -m4_define([SPICE_MICRO], 3) +m4_define([SPICE_MICRO], 4) AC_INIT(spice, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice) @@ -116,7 +116,7 @@ AM_CONDITIONAL(SUPPORT_GL, test "x$have_opengl" = "xyes") dnl ========================================================================= dnl Check deps -PKG_CHECK_MODULES(PROTOCOL, spice-protocol >= 0.6.0) +PKG_CHECK_MODULES(PROTOCOL, spice-protocol >= 0.6.4) AC_SUBST(PROTOCOL_CFLAGS) AC_CHECK_LIBM diff --git a/server/spice.h b/server/spice.h index 898a32db..ea108797 100644 --- a/server/spice.h +++ b/server/spice.h @@ -21,7 +21,7 @@ #include #include -#define SPICE_SERVER_VERSION 0x000603 /* release 0.6.3 */ +#define SPICE_SERVER_VERSION 0x000604 /* release 0.6.4 */ /* interface base type */ -- cgit