Skip to content

Commit

Permalink
chore: v3.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Dec 17, 2024
1 parent a8bcb87 commit 3c5707a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ To add a new model to the list:

## Changes

## v3.15.1

- Fix audio routing for higher channel pairs

## v3.15.0

- Add camera control recording actions
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": "bmd-atem",
"version": "3.15.0",
"version": "3.15.1",
"homepage": "https://github.com/bitfocus/companion-module-atem#readme",
"main": "dist/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/util.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ test('parseAudioRoutingStringSingle', () => {

const parse5 = parseAudioRoutingStringSingle('9291-8_9')
expect(parse5).toEqual(null)

const parse6 = parseAudioRoutingStringSingle('2001-9_10')
expect(parse6).toEqual(combineInputId(2001, AudioChannelPair.Channel9_10))

Expand Down
2 changes: 1 addition & 1 deletion src/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function getDSK(state: AtemState, keyIndex: InputValue | undefined): Vide
export function getSuperSourceBox(
state: AtemState,
boxIndex: InputValue | undefined,
ssrcId?: InputValue | undefined,
ssrcId?: InputValue,
): SuperSource.SuperSourceBox | undefined {
const ssrc = state.video.superSources[Number(ssrcId ?? 0)]
return ssrc ? ssrc.boxes[Number(boxIndex)] : undefined
Expand Down

0 comments on commit 3c5707a

Please sign in to comment.