Skip to content

Commit 4a7aeb3

Browse files
committed
small fixes/rewordings
1 parent aacfe6b commit 4a7aeb3

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "roland-v60hd",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"main": "index.js",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1"

src/actions.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
let actions = {};
55

66
actions.select_pgm = {
7-
name: 'Select PGM Channel',
7+
name: 'Select Program Channel',
88
options: [
99
{
1010
type: 'dropdown',
@@ -24,7 +24,7 @@ module.exports = {
2424
};
2525

2626
actions.select_pvw = {
27-
name: 'Select PVW Channel',
27+
name: 'Select Preview/Preset Channel',
2828
options: [
2929
{
3030
type: 'dropdown',
@@ -38,13 +38,13 @@ module.exports = {
3838
callback: async (action) => {
3939
let options = action.options;
4040
let source = await self.parseVariablesInString(options.source);
41-
let cmd = `PVW:${source};`;
41+
let cmd = `PST:${source};`;
4242
self.sendCommand(cmd);
4343
}
4444
};
4545

4646
actions.select_aux = {
47-
name: 'Select AUX Channel',
47+
name: 'Select Aux Channel',
4848
options: [
4949
{
5050
type: 'dropdown',

src/feedbacks.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ module.exports = {
88

99
feedbacks['program'] = {
1010
type: 'boolean',
11-
name: 'Program Status for input',
12-
description: 'Show feedback for program state',
11+
name: 'Program Status for Input',
12+
description: 'Show feedback for Program State',
1313
options: [
1414
{
1515
type: 'dropdown',
@@ -34,8 +34,8 @@ module.exports = {
3434
}
3535
feedbacks['preview'] = {
3636
type: 'boolean',
37-
name: 'Preset Status for input',
38-
description: 'Show feedback for preset state',
37+
name: 'Preview/Preset Status for Input',
38+
description: 'Show feedback for Preview/Preset State',
3939
options: [
4040
{
4141
type: 'dropdown',

0 commit comments

Comments
 (0)