Skip to content

Commit

Permalink
Merge pull request #124 from istnv/fix/lrfader
Browse files Browse the repository at this point in the history
Fix 'Set fader to' actions  #122
  • Loading branch information
istnv authored Dec 10, 2024
2 parents 214c662 + 192a3df commit f656704
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 475 deletions.
2 changes: 1 addition & 1 deletion helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export async function fadeTo(cmd, strip, opt, self) {
// intentionally returns 'null' vs an accidental 'undefined'
break
default: // set new value
r = parseFloat(opt[node])
r = parseFloat(opt[node] || opt.fad)
}
// if max fader limit check requested
// anything over -0.3db resets to 0db
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "behringer-xair",
"version": "2.6.2",
"version": "2.6.3",
"type": "module",
"main": "index.js",
"scripts": {
Expand All @@ -12,11 +12,11 @@
"url": "git+https://github.com/bitfocus/companion-module-behringer-xair.git"
},
"dependencies": {
"@companion-module/base": "^1.10.0",
"@companion-module/base": "^1.11.2",
"companion-module-utils": "^0.5.0",
"osc": "^2.4.3"
},
"devDependencies": {
"@companion-module/tools": "^2.0.0"
"@companion-module/tools": "^2.1.0"
}
}
Loading

0 comments on commit f656704

Please sign in to comment.