mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
project: Version 0.11.0a8
This commit is contained in:
parent
e730b5b9bd
commit
5d89b0d8b1
4 changed files with 8 additions and 11 deletions
1
.github/ISSUE_TEMPLATE/issue.yml
vendored
1
.github/ISSUE_TEMPLATE/issue.yml
vendored
|
@ -34,6 +34,7 @@ body:
|
|||
label: "StreamFX Version"
|
||||
description: "On which StreamFX version did you first encounter this issue?"
|
||||
options:
|
||||
- "0.11.0a8"
|
||||
- "0.11.0a7"
|
||||
- "0.11.0a6"
|
||||
- "0.11.0a5"
|
||||
|
|
2
.github/PULL_REQUEST_TEMPLATE/feature.md
vendored
2
.github/PULL_REQUEST_TEMPLATE/feature.md
vendored
|
@ -8,8 +8,6 @@ labels: "type:enhancement" "status:help-wanted" "status:testing-required"
|
|||
### Explain the Feature/Enhancement
|
||||
<!-- Describe the feature or enhancement in as much detail as possible, leave nothing out. -->
|
||||
<!-- If you think images or example videos help describe the Feature/Enhancement, include them. -->
|
||||
|
||||
### Why is this useful?
|
||||
<!-- Why should this feature/enhancement become part of the StreamFX plugin? -->
|
||||
<!-- What benefits do other users of StreamFX get from this? -->
|
||||
|
||||
|
|
10
.github/PULL_REQUEST_TEMPLATE/fix.md
vendored
10
.github/PULL_REQUEST_TEMPLATE/fix.md
vendored
|
@ -8,15 +8,13 @@ labels: "type:fix" "status:help-wanted" "status:testing-required"
|
|||
### Explain the Fix
|
||||
<!-- Describe the fix in as much detail as possible, leave nothing out. -->
|
||||
<!-- If you think images or example videos help describe the Fix, include them. -->
|
||||
|
||||
### Why is this necessary?
|
||||
<!-- What makes this Fix necessary for StreamFX and it's users? -->
|
||||
|
||||
### Checklist
|
||||
- [ ] I will become the maintainer for this part of code.
|
||||
- [ ] I have tested this code on all supported Platforms.
|
||||
|
||||
### Related Issues
|
||||
<!-- Is this PR related to another PR or Issue? List them here. -->
|
||||
<!-- - #0000 Name of Issue -->
|
||||
<!-- - #0001 Name of Issue -->
|
||||
|
||||
### Checklist
|
||||
- [ ] I will become the maintainer for this part of code.
|
||||
- [ ] I have tested this code on all supported Platforms.
|
||||
|
|
|
@ -40,7 +40,7 @@ set(VERSION_MAJOR 0)
|
|||
set(VERSION_MINOR 11)
|
||||
set(VERSION_PATCH 0)
|
||||
set(VERSION_TWEAK 0)
|
||||
set(VERSION_SUFFIX "a7")
|
||||
set(VERSION_SUFFIX "a8")
|
||||
set(VERSION_COMMIT "00000000")
|
||||
|
||||
# Check if we are in a git repository.
|
||||
|
@ -662,7 +662,7 @@ function(feature_filter_autoframing RESOLVE)
|
|||
message(WARNING "${LOGPREFIX}: 'NVIDIA Augmented Reality SDK' is missing. Disabling NVIDIA provider...")
|
||||
set_feature_disabled(FILTER_AUTOFRAMING_NVIDIA ON)
|
||||
endif()
|
||||
|
||||
|
||||
# Verify that we have at least one provider for Auto-Framing.
|
||||
is_feature_enabled(FILTER_AUTOFRAMING_NVIDIA T_CHECK_NVIDIA)
|
||||
if (NOT T_CHECK_NVIDIA)
|
||||
|
@ -911,7 +911,7 @@ if(REQUIRE_NVIDIA_AR_SDK AND D_PLATFORM_WINDOWS)
|
|||
if(EXISTS "${PROJECT_SOURCE_DIR}/third-party/nvidia-maxine-ar-sdk/version.h")
|
||||
set(HAVE_NVIDIA_AR_SDK ON)
|
||||
endif()
|
||||
|
||||
|
||||
if(NOT TARGET NVIDIA::AR)
|
||||
add_library(NVIDIA::AR IMPORTED INTERFACE)
|
||||
target_include_directories(NVIDIA::AR
|
||||
|
|
Loading…
Reference in a new issue