Skip to content

Commit

Permalink
chore(release): 1.5.0 [skip ci]
Browse files Browse the repository at this point in the history
# [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
semantic-release-bot committed Sep 12, 2023
1 parent 76d0469 commit f440aed
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 59 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ca.jaggernaut.midi-mixer.voicemeeter",
"version": "1.4.1",
"version": "1.5.0",
"private": true,
"description": "A Voicemeeter plugin for MIDI Mixer.",
"files": [
Expand Down
112 changes: 56 additions & 56 deletions plugin.json
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"
}
}
}

0 comments on commit f440aed

Please sign in to comment.