diff options
author | Hans de Goede <hdegoede@redhat.com> | 2011-08-25 14:19:27 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2011-08-25 14:55:52 +0200 |
commit | 75dacb8d62b30cd08a3e6286d6c36e77e3e21254 (patch) | |
tree | aa9e144998190623ff8a17c67f86bb6eabcc6fca | |
parent | 731c44d75234b5a35d267d67418db233dcdec0c6 (diff) |
Release 0.9.10.9.1
-rw-r--r-- | NEWS | 10 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 12 insertions, 2 deletions
@@ -1,4 +1,14 @@ +Major changes in 0.9.1: +======================= +* !Development Release! +* Multi-client support, disabled by default (experimental!) set the + environment variable PICE_DEBUG_ALLOW_MC before starting qemu to enable +* Add support for adding generic spicevmc chardev passthrough channels +* Add USB redirection channel (using generic spicevmc chardev passthrough) +* Various bugfixes / cleanups + Major changes in 0.9.0: +======================= * !Development Release! * volume synchronization between client and guest (client->guest only) * turbo-jpeg used to avoid expensive color conversion in mjpeg encoder. diff --git a/configure.ac b/configure.ac index 486e3237..2afc5597 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.57]) m4_define([SPICE_MAJOR], 0) m4_define([SPICE_MINOR], 9) -m4_define([SPICE_MICRO], 0) +m4_define([SPICE_MICRO], 1) AC_INIT(spice, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice) @@ -132,7 +132,7 @@ AM_CONDITIONAL(SUPPORT_CLIENT, test "x$enable_client" = "xyes") dnl ========================================================================= dnl Check deps -PKG_CHECK_MODULES(PROTOCOL, spice-protocol >= 0.8.1) +PKG_CHECK_MODULES(PROTOCOL, spice-protocol >= 0.9.0) AC_SUBST(PROTOCOL_CFLAGS) AC_CHECK_LIBM |