Skip to content

Commit

Permalink
Release/1.1.0 (#98)
Browse files Browse the repository at this point in the history
* Updates version number to 1.1.0
* Updates readme for v1.1.0
  • Loading branch information
FiniteSingularity authored Dec 16, 2023
1 parent 6eea218 commit b65fa3c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
</a>
</h4>

> **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.
Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion buildspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@
}
},
"name": "obs-composite-blur",
"version": "1.0.6"
"version": "1.1.0"
}
6 changes: 3 additions & 3 deletions src/version.h
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b65fa3c

Please sign in to comment.