-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [1.5.0](v1.4.1...v1.5.0) (2023-09-12) ### Features * add buttons for audio routing ([df04c25](df04c25)) * Added assign/run/mute button customization ([7d5dd32](7d5dd32)) * Adding custom strip->bus toggles ([bd5914c](bd5914c))
- Loading branch information
1 parent
76d0469
commit f440aed
Showing
3 changed files
with
59 additions
and
59 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,57 @@ | ||
{ | ||
"$schema": "./node_modules/midi-mixer-plugin/plugin.schema.json", | ||
"id": "ca.jaggernaut.midi-mixer.voicemeeter", | ||
"name": "Voicemeeter", | ||
"type": "node", | ||
"version": "1.4.1", | ||
"author": "Jaggernaut", | ||
"main": "lib/index.js", | ||
"icon": "voicemeeter.ico", | ||
"settings": { | ||
"notes": { | ||
"type": "status", | ||
"label": "Note", | ||
"fallback": "Reload plugin after changing any of these settings. Check the info tab for explanations of the customization options." | ||
}, | ||
"maxdb": { | ||
"label": "Max db", | ||
"type": "slider", | ||
"fallback": 12, | ||
"min": -60, | ||
"max": 12 | ||
}, | ||
"mindb": { | ||
"label": "Min db", | ||
"type": "slider", | ||
"fallback": -60, | ||
"min": -60, | ||
"max": 12 | ||
}, | ||
"customStripAssign": { | ||
"type": "text", | ||
"label": "Custom Strip Assign" | ||
}, | ||
"customStripMute": { | ||
"type": "text", | ||
"label": "Custom Strip Mute" | ||
}, | ||
"customStripRun": { | ||
"type": "text", | ||
"label": "Custom Strip Run" | ||
}, | ||
"BusToggles": { | ||
"label": "Custom Bus Toggle Buttons", | ||
"type": "text", | ||
"fallback": "strip0:A1,!B2;strip1:A1" | ||
}, | ||
"vmstatus": { | ||
"label": "Voicemeeter Status", | ||
"type": "status", | ||
"fallback": "Not connected" | ||
}, | ||
"runbutton": { | ||
"label": "run", | ||
"type": "button" | ||
} | ||
} | ||
{ | ||
"$schema": "./node_modules/midi-mixer-plugin/plugin.schema.json", | ||
"id": "ca.jaggernaut.midi-mixer.voicemeeter", | ||
"name": "Voicemeeter", | ||
"type": "node", | ||
"version": "1.5.0", | ||
"author": "Jaggernaut", | ||
"main": "lib/index.js", | ||
"icon": "voicemeeter.ico", | ||
"settings": { | ||
"notes": { | ||
"label": "Note", | ||
"type": "status", | ||
"fallback": "Reload plugin after changing any of these settings. Check the info tab for explanations of the customization options." | ||
}, | ||
"maxdb": { | ||
"label": "Max db", | ||
"type": "slider", | ||
"fallback": 12, | ||
"min": -60, | ||
"max": 12 | ||
}, | ||
"mindb": { | ||
"label": "Min db", | ||
"type": "slider", | ||
"fallback": -60, | ||
"min": -60, | ||
"max": 12 | ||
}, | ||
"customStripAssign": { | ||
"label": "Custom Strip Assign", | ||
"type": "text" | ||
}, | ||
"customStripMute": { | ||
"label": "Custom Strip Mute", | ||
"type": "text" | ||
}, | ||
"customStripRun": { | ||
"label": "Custom Strip Run", | ||
"type": "text" | ||
}, | ||
"BusToggles": { | ||
"label": "Custom Bus Toggle Buttons", | ||
"type": "text", | ||
"fallback": "strip0:A1,!B2;strip1:A1" | ||
}, | ||
"vmstatus": { | ||
"label": "Voicemeeter Status", | ||
"type": "status", | ||
"fallback": "Not connected" | ||
}, | ||
"runbutton": { | ||
"label": "run", | ||
"type": "button" | ||
} | ||
} | ||
} |