[Spice-commits] 6 commits - CHANGELOG.md Makefile.am NEWS README README.md src/Makefile.am

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu May 16 12:09:32 UTC 2019


 CHANGELOG.md    |   30 ++++++++++++++++++++++-
 Makefile.am     |    2 +
 README          |   59 ----------------------------------------------
 README.md       |   71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/Makefile.am |    2 +
 5 files changed, 104 insertions(+), 60 deletions(-)

New commits:
commit 7ead0ad5d120411e2019e96108ec4ba6dfba8fa7
Author: Victor Toso <me at victortoso.com>
Date:   Tue May 14 15:28:07 2019 +0000

    CHANGELOG: Prepare for v0.37 release
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2d2ad35..ee6f18d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,32 @@
+v0.37
+=====
+
+- Deprecated: SpiceMainChannel:color-depth and SpiceSession::color-depth see
+  ([rhbz#1543538] and [rhbz#1350853]).
+- Fix race condition on keyboard modifiers
+- Fix cursor on Wayland: Fixes hidden cursor #83
+- Fix clipboard on X11: avoid request client clipboard data when is known that
+  there is no data.
+- Improve code around usb redirection feature
+- Fix on usb redirection: Don't add same device twice
+- Fix on smartcard: Warn if multiple readers are detected
+- Add instrumentation for frame and queue statistics of SpiceDisplay using
+  [Recorder] library
+- Fix Warnings with GStreamer >= 1.14 on video decoding due setting buffer's PTS
+- Fix some Critical warnings when build without GNOME desktop integration
+- Fix Criticals when no primary monitor is set
+- Documentation fixes
+- Added optional dependency: [Recorder]
+- Require GStreamer >= 1.10 (optional)
+- Require usbredir >= 0.7.1 (optional)
+- Translations:
+  - Added Czech
+  - Fix Italian
+
+[Recorder]: https://github.com/c3d/recorder
+[rhbz#1543538]: https://bugzilla.redhat.com/show_bug.cgi?id=1543538
+[rhbz#1350853]: https://bugzilla.redhat.com/show_bug.cgi?id=1350853
+
 v0.36
 =====
 
commit 873c04bd2ce9f9c2b7b6720fb446ea4cb6f2c27f
Author: Victor Toso <me at victortoso.com>
Date:   Thu May 16 09:54:54 2019 +0000

    build-sys: Ship keycodemapdb's meson.build on release
    
    Otherwise we break meson builds with "meson.build:44:0: ERROR:
    Subproject exists but has no meson.build file"
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/src/Makefile.am b/src/Makefile.am
index 7b98180..7a7ecb4 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -30,6 +30,7 @@ EXTRA_DIST =					\
 	$(KEYMAPS)				\
 	$(KEYMAP_CSV)				\
 	$(KEYMAP_GEN)				\
+	$(KEYMAP_DIST)				\
 	map-file				\
 	spice-glib-sym-file			\
 	spice-gtk-sym-file			\
@@ -65,6 +66,7 @@ endif
 
 KEYMAP_GEN = $(top_srcdir)/subprojects/keycodemapdb/tools/keymap-gen
 KEYMAP_CSV = $(top_srcdir)/subprojects/keycodemapdb/data/keymaps.csv
+KEYMAP_DIST = $(top_srcdir)/subprojects/keycodemapdb/meson.build
 
 SPICE_COMMON_CPPFLAGS =						\
 	-DSPICE_COMPILATION					\
commit 0f1b3ec0555a8ef431c861d7ef93dd6df9c6cab7
Author: Victor Toso <me at victortoso.com>
Date:   Tue May 14 15:09:28 2019 +0000

    CHANGELOG: remove empty line
    
    This extra empty line makes the v0.24 section have extra line between
    each element of the list in the Markdown. Just removing it to keep all
    sections similar.
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/CHANGELOG.md b/CHANGELOG.md
index df41f8d..2d2ad35 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -240,7 +240,6 @@ v0.24
 - fix a few memory leaks with SASL
 - fix spice_display_get_pixbuf() with offset area
 - build-sys improvements
-
 - note: until now, providing an invalid plain-port didn't error, and
   was falling back silently on tls-port. With this release, an error
   will be reported if the port can't be opened.
commit c3e5b73e0ef35cf80dc557b5297c9a61262b02a8
Author: Victor Toso <me at victortoso.com>
Date:   Tue May 14 15:06:01 2019 +0000

    Rename NEWS to CHANGELOG.md
    
    In order to have gitlab interface to handle this file as Markdown
    and properly feed the changelog section.
    Add to EXTRA_DIST to include the renamed file to release's tarball.
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/NEWS b/CHANGELOG.md
similarity index 100%
rename from NEWS
rename to CHANGELOG.md
diff --git a/Makefile.am b/Makefile.am
index 131f17c..3c607c9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -22,6 +22,7 @@ DISTCLEANFILES = $(pkgconfig_DATA)
 
 EXTRA_DIST =					\
 	README.md				\
+	CHANGELOG.md				\
 	meson.build				\
 	meson_options.txt			\
 	po/meson.build				\
commit df66571e0ded4a19f1777b6bb31d11914f05033d
Author: Victor Toso <me at victortoso.com>
Date:   Tue May 14 15:03:16 2019 +0000

    README: Use Markdown format
    
    No other significant changes in the content were done besides format.
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/README.md b/README.md
index 612027d..101da4d 100644
--- a/README.md
+++ b/README.md
@@ -8,52 +8,64 @@ Please report bugs at: spice-devel at lists.freedesktop.org
 Project content
 ---------------
 
-libspice-client-glib-2.0
-   provides glib objects for spice protocol decoding and surface rendering.
-      * SpiceSession (see spice-session.h).
-      * SpiceChannel (see spice-channel.h).
-      * SpiceAudio (see spice-audio.h).
-      * Various Spice<Type>Channel (see channel-<type>.h).
-
-libspice-client-gtk-3.0
-   provides gtk widget to show spice display and accept user input.
-      * SpiceDisplay (see spice-widget.h)
-
-spicy
+* **libspice-client-glib-2.0**
+
+    Provides glib objects for spice protocol decoding and surface rendering.
+    * SpiceSession (see spice-session.h).
+    * SpiceChannel (see spice-channel.h).
+    * SpiceAudio (see spice-audio.h).
+    * Various Spice<Type>Channel (see channel-<type>.h).
+
+* **libspice-client-gtk-3.0**
+
+    provides gtk widget to show spice display and accept user input.
+    * SpiceDisplay (see spice-widget.h)
+
+* **spicy**
+
    a gtk test client. The recommended client for end user is
-   virt-viewer (https://pagure.io/virt-viewer)
+   [virt-viewer]
+
+* **spicy-screenshot**
 
-spicy-screenshot
    Command line tool, connects to spice server and writes out a
    screen shot.
 
-spicy-stats
+* **spicy-stats**
+
    Command line tool, connects to spice server and writes out a
    summary of connection details, amount of bytes transferred...
 
-SpiceClientGlib and SpiceClientGtk GObject-introspection modules.
+* **SpiceClientGlib** and **SpiceClientGtk** GObject-introspection modules.
+
+[virt-viewer]: https://pagure.io/virt-viewer
 
 Build dependencies:
 ------------------
 
-. On Fedora use:
+* On Fedora use:
 
-dnf builddep spice-gtk
+>>>
+    dnf builddep spice-gtk
+>>>
 
-. or install:
+* or install:
 
-gtk3-devel spice-protocol
-openssl-devel pulseaudio-libs-devel pixman-devel
-gobject-introspection-devel libjpeg-turbo-devel zlib-devel
-cyrus-sasl-devel gtk-doc
+>>>
+    gtk3-devel spice-protocol openssl-devel pulseaudio-libs-devel pixman-devel
+    gobject-introspection-devel libjpeg-turbo-devel zlib-devel cyrus-sasl-devel gtk-doc
+>>>
 
-. The GStreamer backend needs:
+The GStreamer backend needs:
 
-gstreamer1-devel gstreamer1-plugins-base-devel gstreamer1-plugins-good gstreamer1-plugins-bad-free
+>>>
+    gstreamer1-devel gstreamer1-plugins-base-devel gstreamer1-plugins-good gstreamer1-plugins-bad-free
+>>>
 
-. If you build from git, you'll also need:
+* If you build from git, you'll also need:
 
-libtool automake gettext-devel vala vala-tools
-  python2 python2-pyparsing
-or
-  python3 python3-pyparsing
+>>>
+    libtool automake gettext-devel vala vala-tools
+    python3 python3-pyparsing
+    # or python2 python2-pyparsing
+>>>
commit 8dff5ea5183553ccfb7b89aba71b5773d4c72d00
Author: Victor Toso <me at victortoso.com>
Date:   Tue May 14 15:02:30 2019 +0000

    Rename README to README.md
    
    In order to have gitlab interface to handle this file as Markdown.
    Add to EXTRA_DIST to include the renamed file to release's tarball.
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/Makefile.am b/Makefile.am
index ac62ca0..131f17c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -21,6 +21,7 @@ endif
 DISTCLEANFILES = $(pkgconfig_DATA)
 
 EXTRA_DIST =					\
+	README.md				\
 	meson.build				\
 	meson_options.txt			\
 	po/meson.build				\
diff --git a/README b/README.md
similarity index 100%
rename from README
rename to README.md


More information about the Spice-commits mailing list