[Spice-commits] 3 commits - .gitlab-ci.yml Makefile.am NEWS spice-common
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Mon Jun 11 17:49:39 UTC 2018
.gitlab-ci.yml | 3 ++-
Makefile.am | 1 +
NEWS | 24 ++++++++++++++++++++++++
spice-common | 2 +-
4 files changed, 28 insertions(+), 2 deletions(-)
New commits:
commit 7cc2b4afd5afd650339816dc785d98a29226811b
Author: Victor Toso <me at victortoso.com>
Date: Mon Jun 11 13:13:44 2018 +0200
Update NEWS for v0.35 release
Signed-off-by: Victor Toso <victortoso at redhat.com>
Acked-by: Christophe Fergeau <cfergeau at redhat.com>
diff --git a/NEWS b/NEWS
index e691583..3f54f77 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,27 @@
+v0.35
+=====
+
+- TLS v1.0 was disabled (rhbz#1521053)
+- New SpiceSession::disconnected signal
+- Use GstVideoOverlay if possible to render directly on Gstreamer's sink element
+- Handling smooth-scroll for scroll events on touchpads in Wayland
+- CELT codec is disabled by default but configure will error out if detects that
+ its headers are available unless --enable-celt051/--disable-051 is used.
+- Glib requirement bumped to 2.46
+- Spice-protocol bumped to 0.12.14
+- The spice-controller library was removed
+- Fix migration regression introduced in v0.34 (rhbz#1558043)
+- Fix connecting from big endian machine including SASL authentication
+- Webdav: Fix some runtime warnings
+- Introspection: Fixes for SpicePortChannel, SpiceDisplayChannel,
+ SpiceRecordChannel, SpiceInputsChannel, SpiceMainChannel
+- Enable ACL support on FreeBSD (fdo#104525)
+- win32: Convert locale dir from UTF-8 to local encoding
+- Fix width computation for palette images (rhbz#1508847)
+- Introduction of spice+tls:// URI format to tls all channels
+- Fix keycodes on Xwayland (rhbz#1479682)
+- Memory leak fixes, new tests
+
v0.34
=====
commit 089553fffb2af890c5c6804dd8b9746daa3dec99
Author: Christophe Fergeau <cfergeau at redhat.com>
Date: Mon Jun 11 16:06:24 2018 +0200
build-sys: disable celt051 by default
With spice-common commit 72b0d603e12, SPICE_CHECK_CELT051 will error
out if celt051-devel is installed, but neither --enable-celt051 nor
--disable-celt051 are specified. This could be a problem when running
make distcheck, so this commit adds --disable-celt051 so that we never
hit that error.
Signed-off-by: Victor Toso <victortoso at redhat.com>
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a34eb0e..e2c35ef 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,7 +10,7 @@ before_script:
makecheck:
script:
- - ./autogen.sh --enable-static
+ - ./autogen.sh --enable-static --disable-celt051
- make -j4
- make check
@@ -27,5 +27,6 @@ makecheck_simple:
--enable-smartcard=no
--enable-usbredir=no
--enable-dbus=no
+ --disable-celt051
- make -j4
- make check
diff --git a/Makefile.am b/Makefile.am
index 8717cbc..8c000fd 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -59,6 +59,7 @@ $(top_srcdir)/.version:
DISTCHECK_CONFIGURE_FLAGS = \
--enable-introspection \
+ --disable-celt051 \
--disable-vala \
--disable-usbredir \
--enable-gtk-doc \
commit e6e9d7acbb07e9f298498ec38a8f4fdec016b83b
Author: Victor Toso <me at victortoso.com>
Date: Mon Jun 11 12:20:13 2018 +0200
Update spice-common
Christophe Fergeau (21):
quic: Remove configurable RLE_PRED
quic: Remove configurable PRED
quic: Get rid of QUIC_RGB #define
quic: Get rid of RLE_STAT #define
quic: Get rid of RLE #define
quic: Factor common code
quic: Introduce CommonState *state variable in templates
quic: s/decorrelate_drow/correlate_row
quic: Add macros to make quic_tmpl.c much closer to quic_rgb_tmpl.c
quic: Remove unused argument in uncompress_row{0, }
quic: Use channel->correlate_row in macros
quic: Add test case for compression/decompression
build: Ensure we link with -lm if needed
build: Disable celt 0.5.1 by default
build: By default, error out if Opus is missing
build: Use AM_COND_IF
build: Remove checks for functions which are never called
build: Remove bitops.h
build: Move client sources to libspice_common_client_la_SOURCES
meson: Support auto/true/false for optional dependencies
meson: Remove check for vfork
Frediano Ziglio (21):
protocol: Add some documentation for inval_all_pixmaps message
Add --enable-extra-checks option
codegen: Add some comments
codegen: Removed unused get_type methods
protocol: Use a typedef to specify stream_id type
lz: Move ENCODE_PIXEL for RGB24 and RGB32 to a common place
Fix integer overflows computing sizes
Write a small test to test possible crash
Avoid integer overflow computing image sizes
Fix generation of Smartcard channel
test-overflow: Remove a leak in the test
marshaller: Remove initial underscore from static function
codegen: Remove duplicate client and server code from ChannelType::resolve
Check for messages with duplicate names inside a channel
Check for messages with duplicate values inside a channel
lz: Optimise SAME_PIXEL for RGB16
lz: Inline GET_{r,g,b} macros
quic: Remove 'no-inline' hack
quic: Remove some too strict asserts in hot paths
quic: Fix endianness encoding
quic: Use __builtin_clz if available
Eduardo Lima (Etrunko) (8):
build: Remove FIXME_SERVER_SMARTCARD hack
Fix demarshaller code generator
Fix field names for Smartcard protocol structures
Fix cast to spice_marshaller_item_free_func function
Bump glib requirements to 2.38
test-quic: Fix -Wsign-compare warning
Add support for building with meson/ninja
Add .gitlab-ci.yml file
Jonathon Jongsma (2):
Remove extra self parameter from member function
miLineArc(): initialize edge1, edge2
Victor Toso (1):
messages: document limitation of id in StreamCreate
Signed-off-by: Victor Toso <victortoso at redhat.com>
Acked-by: Christophe Fergeau <cfergeau at redhat.com>
diff --git a/spice-common b/spice-common
index 8096b12..95743f4 160000
--- a/spice-common
+++ b/spice-common
@@ -1 +1 @@
-Subproject commit 8096b1206bb266b8d0b80b3e4c0d36fc621d772d
+Subproject commit 95743f40a2da39e0a19859c305e69e2c99d39e42
More information about the Spice-commits
mailing list