Skip to content

Commit

Permalink
Fix: streaming action value fix (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
thedist authored Jun 3, 2024
1 parent 1d9d671 commit f40dc3d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ For some feedback, such as Tally and Layer Routing it's possible to enable 'blin
This module now supports Companions HTTP API, providing endpoints that can be used by 3rd party applications, and as a Data Source in vMix itself. Information on the API endpoints is available in [docs/HTTP_API.md](./docs/HTTP_API.md)

# Recent Patches
**V3.6.1**
- Fixed a bug with Start Streaming and Stop Streaming actions not targeting specific vMix streams

**V3.6.0**
- Significantly more Boolean type feedbacks where applicable (allow individual styling, and use in Triggers)
- Support for referencing mix by variable in actions/feedbacks
Expand Down
2 changes: 1 addition & 1 deletion companion/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "studiocoast-vmix",
"shortname": "vmix",
"description": "Module to control StudioCoast vMix",
"version": "3.6.0",
"version": "3.6.1",
"license": "MIT",
"repository": "git+https://github.com/bitfocus/companion-module-studiocoast-vmix.git",
"bugs": "https://github.com/bitfocus/companion-module-studiocoast-vmix/issues",
Expand Down
3 changes: 3 additions & 0 deletions docs/PATCH_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Patch Notes

**V3.6.1**
- Fixed a bug with Start Streaming and Stop Streaming actions not targeting specific vMix streams

**V3.6.0**
- Significantly more Boolean type feedbacks where applicable (allow individual styling, and use in Triggers)
- Support for referencing mix by variable in actions/feedbacks
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "studiocoast-vmix",
"version": "3.5.5",
"version": "3.6.1",
"main": "dist/index.js",
"scripts": {
"dev": "yarn build:watch",
Expand Down
2 changes: 1 addition & 1 deletion src/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2280,7 +2280,7 @@ export function getActions(instance: VMixInstance): VMixActions {
callback: (action) => {
let command = `FUNCTION ${action.options.functionID}`

if (action.options.functionID === 'StartStopStreaming' && action.options.value != '') {
if (action.options.functionID.includes('Streaming') && action.options.value != '') {
command += ` value=${action.options.value}`
}

Expand Down

0 comments on commit f40dc3d

Please sign in to comment.