From ec2cdc84759d737e8612fdd0b3c3fcec6ac89761 Mon Sep 17 00:00:00 2001 From: Ryan Foster Date: Tue, 5 Sep 2023 14:30:27 -0400 Subject: [PATCH] base: Update version to 5.3.0 - Various minor build process cleanups - Various code cleanups - requesthandler: Added NotReady request status - base: Pause requests and events during start, SC change, and shutdown - eventhandler: Use OBS_FRONTEND_EVENT_SCRIPTING_SHUTDOWN for exit - requesthandler: Added SetRecordDirectory - websocketserver: Retry listen on IPv4 if IPv6 is not available --- CMakeLists.txt | 2 +- cmake/legacy.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b4ceb0b54..23b03bbf7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16...3.25) legacy_check() -set(obs-websocket_VERSION 5.2.2) +set(obs-websocket_VERSION 5.3.0) set(OBS_WEBSOCKET_RPC_VERSION 1) option(ENABLE_WEBSOCKET "Enable building OBS with websocket plugin" ON) diff --git a/cmake/legacy.cmake b/cmake/legacy.cmake index 8c90c56d3..e83d1f930 100644 --- a/cmake/legacy.cmake +++ b/cmake/legacy.cmake @@ -1,4 +1,4 @@ -project(obs-websocket VERSION 5.2.2) +project(obs-websocket VERSION 5.3.0) set(OBS_WEBSOCKET_RPC_VERSION 1) option(ENABLE_WEBSOCKET "Enable building OBS with websocket plugin" ON)