From b65fa3c320de1a9121bb69539b676c95f99d5013 Mon Sep 17 00:00:00 2001 From: FiniteSingularity <72580859+FiniteSingularity@users.noreply.github.com> Date: Sat, 16 Dec 2023 13:20:05 -0600 Subject: [PATCH] Release/1.1.0 (#98) * Updates version number to 1.1.0 * Updates readme for v1.1.0 --- CMakeLists.txt | 2 +- README.md | 7 ++++--- buildspec.json | 2 +- src/version.h | 6 +++--- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 582d994..6af557d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ else() cmake_minimum_required(VERSION 3.18) endif() -project(obs-composite-blur VERSION 1.0.6) +project(obs-composite-blur VERSION 1.1.0) set(PROJECT_FULL_NAME "Composite Blur") # Set new UUIDs when you start to create a new plugin. diff --git a/README.md b/README.md index 9c8b392..27b539e 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,10 @@ +> **IMPORTANT RECENT RELEASE NOTES** +> - In the 1.1.0 release, I have decided to leave the plug-in name (in the add filter list) as the english version of the name even in cases where there is a localization/translation file. This is so that the finding the filter matches the documentation here. If you were using a pre-1.1.0 version with either German, Spanish, or Finnish localization, note that the plug in name will now show up as "Composite Blur" instead of being translated. +> - Another potentially breaking change in 1.1.0- if you were using the background for compositing option and had set the blending method to `SRGB Off`, you may notice a light halo around the blurred source. Simply switch the blending method back to `Default` to fix this. + > **Note** > While we only release new versions of Composite Blur after testing it on local hardware, there are bugs and issues that will slip through. If you happen to run into any issues, please [open an issue](https://github.com/finitesingularity/obs-composite-blur/issues) and we will work to resolve it. @@ -119,9 +123,6 @@ Blurring sources that have different dimensions than the canvas can be difficult ![Background Composite Source Example](.github/assets/background-composite.png) *An example with and without background source compositing. Notice the dark halo around the non-composited facecam, versus the smooth and more natural blurring into the background when a background source is provided.* -> **Warning** -> There is currently a bug that requires composite background enabled sources to set their blending method to SRGB Off if the source is cropped in OBS. To do this, right click the source, and select 'SRGB Off' under `Blending Method` - ## Effect Masking Composite Blur offers a variety of ways to mask where and how blur is applied to your source. For all mask options, the mask can also be inverted by checking the "Invert Mask" box. The following options are available. diff --git a/buildspec.json b/buildspec.json index 15ad40b..3a505f0 100644 --- a/buildspec.json +++ b/buildspec.json @@ -79,5 +79,5 @@ } }, "name": "obs-composite-blur", - "version": "1.0.6" + "version": "1.1.0" } \ No newline at end of file diff --git a/src/version.h b/src/version.h index 139231f..7550afa 100644 --- a/src/version.h +++ b/src/version.h @@ -1,6 +1,6 @@ #pragma once -#define PROJECT_VERSION "1.0.6" +#define PROJECT_VERSION "1.1.0" #define PROJECT_VERSION_MAJOR 1 -#define PROJECT_VERSION_MINOR 0 -#define PROJECT_VERSION_PATCH 6 +#define PROJECT_VERSION_MINOR 1 +#define PROJECT_VERSION_PATCH 0