[Spice-commits] 3 commits - CHANGELOG.md .gitlab-ci.yml NEWS

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Apr 23 09:51:13 UTC 2019


 .gitlab-ci.yml |   24 ++++++++++++++++++++++++
 CHANGELOG.md   |   16 ++++++++++++++++
 2 files changed, 40 insertions(+)

New commits:
commit 58bc1b958054b5e1e1c5d0fd914e30b64c30653e
Author: Victor Toso <me at victortoso.com>
Date:   Thu Apr 11 08:32:16 2019 +0000

    Prepare for 0.10.0 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 f142aab..56c9d65 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
+v0.10.0
+=======
+- Introduce turn_monitor_off method of WDDM interface
+- Fix number of displays after reconnection ([rhbz#1477191])
+- Avoid possible integer overflows from reading spice-protocol messages
+- Fix possible buffer overflows while reading from registry
+- Fix loss of mouse movement events
+- file-xfer: only store completed files
+- Some fixes in vcproj file to build with Visual Studio
+- Do not use reserved chars for filenames ([rhbz#1520393])
+- Fix saving BMP file format
+- Various cleanups and code improvements
+
+[rhbz#1477191]: https://bugzilla.redhat.com/show_bug.cgi?id=1477191
+[rhbz#1520393]: https://bugzilla.redhat.com/show_bug.cgi?id=1520393
+
 v0.9.0
 ======
 - remove cximage dependency
commit b67a8870447de14b76468916868fed326c9282c7
Author: Victor Toso <me at victortoso.com>
Date:   Thu Apr 11 08:32:15 2019 +0000

    Rename NEWS to CHANGELOG and append md suffix
    
    In order to have Gitlab format this properly
    
    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
commit fb8060bd66a7b1b2c479b942de22f1deb0dc2a22
Author: Victor Toso <me at victortoso.com>
Date:   Thu Apr 11 08:32:14 2019 +0000

    gitlab-ci: Add ci for x86 and i686
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..3bd30ea
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,24 @@
+image: fedora:latest
+
+variables:
+  DEPS_COMMON: git libtool make ImageMagick
+      wine-core.x86_64 wine-core.i686 mingw32-spice-protocol mingw64-spice-protocol
+      mingw32-libpng-static mingw32-zlib-static mingw32-gcc-c++ mingw32-winpthreads-static
+      mingw64-libpng-static mingw64-zlib-static mingw64-gcc-c++ mingw64-winpthreads-static
+
+before_script:
+  - dnf install -y $DEPS_COMMON
+  - autoreconf -if
+  - git submodule update --init --recursive
+
+fedora-mingw32:
+  script:
+  - mingw32-configure
+  - mingw32-make
+  - mingw32-make check
+
+fedora-mingw64:
+  script:
+  - mingw64-configure
+  - mingw64-make
+  - mingw64-make check


More information about the Spice-commits mailing list