From 685ed27efc56cac8c59d8950ab41720994e33c1c Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Fri, 24 Apr 2020 05:23:51 +0200 Subject: [PATCH] project: Version 0.8.0b2 * #153 #167 #178 Update localization. * #157 Fix a few example shaders and add some new ones. * #160 Fix Look Ahead setting * #162 Increase Direct3D11 texture eviction priority. * #163 Asynchronous Nvidia Face Tracking. * #164 Add clang-tidy support to CMake. * #165 Fix some clang-10 errors. * #168 Updated StreamFX logo. * #169 Redesigned version string generation. * #170 Fix compiler error with C++17 when using libobs. * #171 Add global configuration handler. * #172 Move Windows exclusive library handler into its own file. * #174 Refactor everything into the streamfx:: namespace. * #176 Implement a new UI/UX experience for StreamFX users. * #177 Link to stdc++fs on GNU and Clang. * #179 Fix incorrect render sizes and performance with gfx::shader. * #181 #183 Fix locale strings missing info or no longer being used. * #182 Add a default path for gfx::shader based on the selected file or the examples directory. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6bdd8e3..1bc53f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ set(VERSION_MAJOR 0) set(VERSION_MINOR 8) set(VERSION_PATCH 0) set(VERSION_TWEAK 0) -set(VERSION_SUFFIX "b1") +set(VERSION_SUFFIX "b2") if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/.git") set(GIT_RESULT "") set(GIT_OUTPUT "")