Skip to content

Commit

Permalink
2.0.2: feedback fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krocheck committed Mar 15, 2023
1 parent 63af730 commit e1583e3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
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": "bmd-smartview",
"shortname": "smart",
"description": "bmd-smartview",
"version": "2.0.1",
"version": "2.0.2",
"license": "MIT",
"repository": "git+https://github.com/bitfocus/companion-module-bmd-smartview.git",
"bugs": "https://github.com/bitfocus/companion-module-bmd-smartview/issues",
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-smartview",
"version": "2.0.1",
"version": "2.0.2",
"main": "src/index.js",
"type": "module",
"scripts": {
Expand Down
18 changes: 9 additions & 9 deletions src/feedback.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function updateFeedbacks() {
type: 'boolean',
name: 'Change background color by monitor brightness',
description: 'If the selected monitor has the brightness specified, change background color of the bank',
style: {
defaultStyle: {
color: combineRgb(0, 0, 0),
bgcolor: combineRgb(255, 255, 0),
},
Expand All @@ -33,7 +33,7 @@ export function updateFeedbacks() {
type: 'boolean',
name: 'Change background color by monitor contrast',
description: 'If the selected monitor has the contrast specified, change background color of the bank',
style: {
defaultStyle: {
color: combineRgb(0, 0, 0),
bgcolor: combineRgb(255, 255, 0),
},
Expand All @@ -50,7 +50,7 @@ export function updateFeedbacks() {
type: 'boolean',
name: 'Change background color by monitor saturation',
description: 'If the selected monitor has the saturation specified, change background color of the bank',
style: {
defaultStyle: {
color: combineRgb(0, 0, 0),
bgcolor: combineRgb(255, 255, 0),
},
Expand All @@ -69,7 +69,7 @@ export function updateFeedbacks() {
type: 'boolean',
name: 'Change background color by monitor identify state',
description: 'If the selected monitor is currently identifying, change background color of the bank',
style: {
defaultStyle: {
color: combineRgb(0, 0, 0),
bgcolor: combineRgb(255, 255, 0),
},
Expand All @@ -87,7 +87,7 @@ export function updateFeedbacks() {
type: 'boolean',
name: 'Change background color by monitor border color',
description: 'If the selected monitor has the border color defined, change background color of the bank',
style: {
defaultStyle: {
color: combineRgb(0, 0, 0),
bgcolor: combineRgb(255, 255, 0),
},
Expand All @@ -106,7 +106,7 @@ export function updateFeedbacks() {
type: 'boolean',
name: 'Change background color by scope function',
description: 'If the selected monitor has the scope function active, change background color of the bank',
style: {
defaultStyle: {
color: combineRgb(0, 0, 0),
bgcolor: combineRgb(255, 255, 0),
},
Expand All @@ -124,7 +124,7 @@ export function updateFeedbacks() {
type: 'boolean',
name: 'Change background color by audio channels',
description: 'If the selected monitor has the audio channels active, change background color of the bank',
style: {
defaultStyle: {
color: combineRgb(0, 0, 0),
bgcolor: combineRgb(255, 255, 0),
},
Expand All @@ -144,7 +144,7 @@ export function updateFeedbacks() {
type: 'boolean',
name: 'Change background color by LUT',
description: 'If the selected monitor has the LUT action, change background color of the bank',
style: {
defaultStyle: {
color: combineRgb(0, 0, 0),
bgcolor: combineRgb(255, 255, 0),
},
Expand All @@ -162,7 +162,7 @@ export function updateFeedbacks() {
type: 'boolean',
name: 'Change background color by input',
description: 'If the selected monitor has the input active, change background color of the bank',
style: {
defaultStyle: {
color: combineRgb(0, 0, 0),
bgcolor: combineRgb(255, 255, 0),
},
Expand Down

0 comments on commit e1583e3

Please sign in to comment.