From b61a5c243137681a206bca2cef0f92e20598353a Mon Sep 17 00:00:00 2001 From: tt2468 Date: Wed, 24 Jan 2024 15:51:27 -0800 Subject: [PATCH] base: Update version to 5.4.0 New Features: - Added `GetSourceFilterKindList` request - Added `GetSceneItemSource` request - Added `InputSettingsChanged` event - Added `SourceFilterSettingsChanged` event - Added UUID support to Sources (Inputs/Scenes), Inputs, Scenes, Transitions - The `Source` requests/events use `sourceUuid` - The `Input` requests/events use `inputUuid` - The `Scene` requests/events use `sceneUuid` - The `Transition` requests/events use `transitionUuid` - Filters do not have support for UUIDs at this time. Enhancements: - Added `contextName` field to `TriggerHotkeyByName` (exeldro) Bug Fixes: - Fixed a crash on shutdown with notifications enabled (r1ch) - Added safety check to prevent `null` `outputCongestion` values in `GetStreamStatus` - Fixed a memory leak when switching service kinds via `SetStreamServiceSettings` Other Notes: - Documented missing `outputActive` `ToggleRecord` response field - Added a few new client softwares to the README list - Removed a mis-documented `imageData` field - Added a note to the hotkey requests that they are as-is and we will not provide support for them --- CMakeLists.txt | 2 +- cmake/legacy.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 63b1c9d5..3f7b3d4a 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.3.5) +set(obs-websocket_VERSION 5.4.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 3ee54a20..7e3226b2 100644 --- a/cmake/legacy.cmake +++ b/cmake/legacy.cmake @@ -1,4 +1,4 @@ -project(obs-websocket VERSION 5.3.5) +project(obs-websocket VERSION 5.4.0) set(OBS_WEBSOCKET_RPC_VERSION 1) option(ENABLE_WEBSOCKET "Enable building OBS with websocket plugin" ON)