From 6f0d0ab126b1bed52897598867d0e19ca2cc6202 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf <jb@videolan.org> Date: Mon, 30 Oct 2023 08:25:53 +0100 Subject: [PATCH] News for 3.0.20 --- NEWS | 20 +++++++++++++++++++- configure.ac | 4 ++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 7690f54a530a..2cbc3e00b522 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,21 @@ +Changes between 3.0.19 and 3.0.20: +---------------------------------- + +Video Output: + - Fix green line in fullscreen in D3D11 video output + - Fix crash with some AMD drivers old versions + - Fix events propagation issue when double-clicking with mouse wheel + +Decoders: + - Fix crash when AV1 hardware decoder fails + +Interface: + - Fix annoying disappearance of the Windows fullscreen controller + +Demuxers: + - Fix potential security issue (OOB Write) on MMS:// by checking user size bounds + + Changes between 3.0.18 and 3.0.19: ---------------------------------- @@ -55,7 +73,7 @@ Misc: * Fix 5.1/7.1 output on macOS and tvOS * Fix several crashes and bugs in the macOS preferences panel * Improvements on the threading of the MMDevice audio output on Windows - * Fix a potential security issue on the uninstaller DLLs + * Fix a potential security issue on the uninstaller DLLs (CVE-2023-46814) * Fix memory leaks when using the media_list_player libVLC APIs Translations: diff --git a/configure.ac b/configure.ac index 753d0610e6c7..69beb77ac04c 100644 --- a/configure.ac +++ b/configure.ac @@ -2,10 +2,10 @@ dnl Autoconf settings for vlc AC_COPYRIGHT([Copyright 1999-2023 VLC authors and VideoLAN]) -AC_INIT(vlc, 3.0.19) +AC_INIT(vlc, 3.0.20) VERSION_MAJOR=3 VERSION_MINOR=0 -VERSION_REVISION=19 +VERSION_REVISION=20 VERSION_EXTRA=0 VERSION_DEV= -- GitLab