diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2011-07-18 17:14:14 +0200 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2011-07-18 20:28:07 +0200 |
commit | 5be4767449b5a23d7d707b1021ba96aed82b74ef (patch) | |
tree | 62373436622f1d2fb89a203707817abbedd5b378 | |
parent | e5fca5c02b6b7db6344f356feb4f2588e03980cc (diff) |
Release v0.7v0.7
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | README | 25 | ||||
-rw-r--r-- | TODO | 6 | ||||
-rw-r--r-- | configure.ac | 2 |
4 files changed, 36 insertions, 11 deletions
@@ -1,3 +1,17 @@ +v0.7 +==== + +- smartcard support +- better video playback performance (jpeg-turbo & audio improvements) +- support for audio volume (needs qemu support) +- controller support for Windows (NamedPipe) +- make perl-Text-CSV optional for tarball builds +- new spice_get_option_group()/spice_set_session_option() +- keyboard improvements, grab-sequence can be configured, various windows fixes +- new tool spicy-stats, to collect informations during a session +- bugfixes: memleak fixes, SASL fixes, crash with virt-manager +- various build fixes, should build on MacOS as well now + v0.6 ==== @@ -27,33 +27,42 @@ snappy Command line tool, connects to spice server and writes out a screen shot. +spicy-stats + Command line tool, connects to spice server and writes out a + summary of connection details, amount of bytes transferred... + SpiceClientGtk python module (only built with Gtk+ 2.0) SpiceClientGlib and SpiceClientGtk GObject-introspection modules. -Build depedencies: +Build dependencies: ------------------ -On Fedora: (gtk2-devel if building with --with-gtk=2.0) +. On Fedora: (gtk2-devel if building with --with-gtk=2.0) -gtk3-devel spice-protocol pygtk2-devel intltool celt051-devel -openssl-devel pulseaudio-libs-devel pixman-devel python perl-Text-CSV +gtk3-devel spice-protocol intltool celt051-devel +openssl-devel pulseaudio-libs-devel pixman-devel gobject-introspection-devel libjpeg-turbo-devel zlib-devel cyrus-sasl-devel gtk-doc -The experimental GStreamer backend needs: +. To build python bindings for virt-manager, you need gtk2, and: + +pygtk2-devel python + +. The experimental GStreamer backend needs: gstreamer-devel gstreamer-plugins-base-devel -If you build from git, you'll also need: +. If you build from git, you'll also need: -libtool automake pyparsing vala +libtool automake pyparsing vala perl-Text-CSV current state ------------- -Some features are missing, see TODO +There are some known bugs, check the TODO list and +bugzilla.freedesktop.org. Copyright 2009-2011 Red Hat, Inc. and/or its affiliates. @@ -1,4 +1,6 @@ +* Pointer/cursor issues if no agent: +** https://bugs.freedesktop.org/show_bug.cgi?id=36323 +** https://bugs.freedesktop.org/show_bug.cgi?id=38008 +** https://bugs.freedesktop.org/show_bug.cgi?id=38024 * TunnelChannel -* ungrab pointer when clicking for drag&drop in multi-display is broken if releasing outside * create a ChannelBaseAudio -* document SmartcardChannel diff --git a/configure.ac b/configure.ac index 8c2802b..8c9c5db 100644 --- a/configure.ac +++ b/configure.ac @@ -61,7 +61,7 @@ AC_CHECK_HEADERS([sys/socket.h netinet/in.h arpa/inet.h]) dnl ========================================================================= dnl Chek optional features -PKG_CHECK_MODULES(PROTOCOL, spice-protocol >= 0.6.3) +PKG_CHECK_MODULES(PROTOCOL, spice-protocol >= 0.8.1) AC_SUBST(PROTOCOL_CFLAGS) SPICE_GLIB_REQUIRES="" |