Skip to content

Commit

Permalink
Merge pull request #30 from bitfocus/2.0.5
Browse files Browse the repository at this point in the history
Version 2.0.5
  • Loading branch information
adamtow authored May 14, 2024
2 parents 443ff1f + 27e4ff2 commit 2d32872
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## [3.0.1](https://github.com/bitfocus/companion-module-tow-mixeffect/compare/v3.0.0...v3.0.1) (2024-01-09)
## [2.0.5]() (2024-05-15)

* Support for ATEM 1 M/E Constellation 4K and 2 M/E Constellation 4K switchers.

## [3.0.1](https://github.com/bitfocus/companion-module-tow-mixeffect/compare/v3.0.0...v3.0.1) (2024-01-09)

### Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This module will allow you to control an instance of [MixEffect](https://mixeffe

## System Requirements

Version 2.0.4 of the native MixEffect module for Companion is designed for use with Companion 3.0.
The native MixEffect module for Companion is designed for use with Companion 3.0.

**It will not work with prior versions of Companion 2.4.x.**

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tow-mixeffect",
"version": "2.0.4",
"version": "2.0.5",
"compatibility": "MixEffect Pro 1.8.0",
"main": "src/index.js",
"scripts": {
Expand All @@ -22,6 +22,6 @@
"semantic-release": "^19.0.3"
},
"dependencies": {
"@companion-module/base": "~1.7.0"
"@companion-module/base": "~1.8.0"
}
}
4 changes: 4 additions & 0 deletions src/switchers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ const { atemSdiExtremeIso } = require('./atem-sdi-extreme-iso')
const { atemTelevisionStudioHd8 } = require('./atem-television-studio-hd8')
const { atemTelevisionStudioHd8Iso } = require('./atem-television-studio-hd8-iso')

const { atem1meConstellation4k } = require('./atem-1-me-constellation-4k')
const { atem2meConstellation4k } = require('./atem-2-me-constellation-4k')
const { atem4meConstellation4k } = require('./atem-4-me-constellation-4k')
const { atemTelevisionStudio4k8 } = require('./atem-television-studio-4k8')

Expand Down Expand Up @@ -60,6 +62,8 @@ module.exports = [
atemTelevisionStudioHd8,
atemTelevisionStudioHd8Iso,

atem1meConstellation4k,
atem2meConstellation4k,
atem4meConstellation4k,
atemTelevisionStudio4k8,
]
2 changes: 2 additions & 0 deletions src/switchers/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ module.exports = {
atemTelevisionStudioHd8: 26,
atemTelevisionStudioHd8Iso: 27,

atem1meConstellation4k: 28,
atem2meConstellation4k: 29,
atem4meConstellation4k: 30,
atemTelevisionStudio4k8: 32,
},
Expand Down

0 comments on commit 2d32872

Please sign in to comment.