Merge pull request #12077 from akallabeth/release-3.20.0

Release 3.20.0
This commit is contained in:
akallabeth
2025-12-17 11:39:29 +01:00
committed by GitHub
4 changed files with 22 additions and 11 deletions

View File

@@ -1,3 +1,14 @@
# 2025-12-17 Version 3.20.0
## What's Changed
* Mingw fixes (#12070)
* [crypto,certificate_data] add some hostname sanitation (#12072)
* [client,common]: Fix loading of rdpsnd channel (#12074)
* [client,sdl] set touch and pen hints (#12076)
For a complete and detailed change log since the last release run:
git log 3.20.0...3.19.1
# 2025-12-12 Version 3.19.1
## What's Changed

View File

@@ -4,7 +4,7 @@ option(USE_GIT_FOR_REVISION "Extract git tag/commit" OFF)
function(get_project_version VERSION_MAJOR VERSION_MINOR VERSION_REVISION VERSION_SUFFIX GIT_REVISION)
# Default version, hard codec per release
set(RAW_VERSION_STRING "3.19.2-dev0")
set(RAW_VERSION_STRING "3.20.1-dev0")
set(VERSION_REGEX "^(.*)([0-9]+)\\.([0-9]+)\\.([0-9]+)-?(.*)")

View File

@@ -133,17 +133,17 @@ CMAKE_ARGS="-DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON \
if [ ! -d $SRC ]; then
mkdir -p $SRC
cd $SRC
git clone --depth 1 -b openssl-3.5.0 https://github.com/openssl/openssl.git
git clone --depth 1 -b v1.3.1 https://github.com/madler/zlib.git
git clone --depth 1 -b uriparser-0.9.8 https://github.com/uriparser/uriparser.git
git clone --depth 1 -b openssl-3.6.0 https://github.com/openssl/openssl.git
git clone --depth 1 -b v1.3.1.2 https://github.com/madler/zlib.git
git clone --depth 1 -b uriparser-1.0.0 https://github.com/uriparser/uriparser.git
git clone --depth 1 -b json-c-0.18-20240915 https://github.com/json-c/json-c.git
git clone --depth 1 -b release-3.2.10 https://github.com/libsdl-org/SDL.git
git clone --depth 1 -b release-3.2.28 https://github.com/libsdl-org/SDL.git
git clone --depth 1 --shallow-submodules --recurse-submodules -b release-3.2.2 https://github.com/libsdl-org/SDL_ttf.git
git clone --depth 1 --shallow-submodules --recurse-submodules -b release-3.2.4 https://github.com/libsdl-org/SDL_image.git
git clone --depth 1 --shallow-submodules --recurse-submodules -b v1.0.28-0 https://github.com/libusb/libusb-cmake.git
git clone --depth 1 -b n7.1.1 https://github.com/FFmpeg/FFmpeg.git
git clone --depth 1 -b v2.4.1 https://github.com/cisco/openh264.git
git clone --depth 1 -b v1.5.2 https://gitlab.xiph.org/xiph/opus.git
git clone --depth 1 --shallow-submodules --recurse-submodules -b v1.0.29-0 https://github.com/libusb/libusb-cmake.git
git clone --depth 1 -b n8.0.1 https://github.com/FFmpeg/FFmpeg.git
git clone --depth 1 -b v2.6.0 https://github.com/cisco/openh264.git
git clone --depth 1 -b v1.6 https://gitlab.xiph.org/xiph/opus.git
git clone --depth 1 -b v2.0.3 https://github.com/mstorsjo/fdk-aac.git
fi

View File

@@ -139,7 +139,7 @@ mkdir -p "$BUILD_BASE"
cd "$SRC_BASE"
if [ $CLONE -ne 0 ]; then
do_clone v1.3.1 https://github.com/madler/zlib.git zlib
do_clone uriparser-0.9.8 https://github.com/uriparser/uriparser.git uriparser
do_clone uriparser-1.0.0 https://github.com/uriparser/uriparser.git uriparser
do_clone json-c-0.18-20240915 https://github.com/json-c/json-c.git json-c
do_clone release-3.2.28 https://github.com/libsdl-org/SDL.git SDL
if [ $FFMPEG -ne 0 ]; then
@@ -152,7 +152,7 @@ if [ $CLONE -ne 0 ]; then
do_clone release-3.2.4 https://github.com/libsdl-org/SDL_image.git SDL_image
do_clone release-3.2.2 https://github.com/libsdl-org/SDL_ttf.git SDL_ttf
do_clone v2.0.3 https://github.com/mstorsjo/fdk-aac.git fdk-aac
do_clone v1.5.2 https://gitlab.xiph.org/xiph/opus.git opus
do_clone v1.6 https://gitlab.xiph.org/xiph/opus.git opus
do_download https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/ libressl-4.2.1.tar.gz 6d5c2f58583588ea791f4c8645004071d00dfa554a5bf788a006ca1eb5abd70b libressl
fi