Skip to content

Commit

Permalink
Merge branch 'master' into gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffpar committed Dec 10, 2024
2 parents 30cf54c + ad6b0e8 commit bc91c18
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 9 deletions.
18 changes: 15 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,18 @@
"order": 10
}
},
{
"name": "Lite-Brite",
"type": "chrome",
"request": "launch",
"url": "http://localhost:4000/machines/led/lite-brite/",
"webRoot": "${workspaceFolder}",
"presentation": {
"hidden": false,
"group": "hardware",
"order": 10
}
},
{
"name": "PC.js",
"type": "node",
Expand Down Expand Up @@ -2703,9 +2715,9 @@
"request": "launch",
"program": "${workspaceFolder}/tools/private/plex.js",
"args": [
"shows",
"rename",
"path"
"movies",
"search",
"file"
],
"cwd": "${workspaceFolder}/tools/private",
"stopOnEntry": false,
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"editor.rulers": [127],
"editor.tabSize": 8,
"editor.insertSpaces": false,
"workbench.colorTheme": "Dark+ Material",
"workbench.colorTheme": "Default Dark+",
"workbench.colorCustomizations": {
"[Atom One Dark]": {
"debugToolBar.background": "#21252B"
Expand Down
3 changes: 2 additions & 1 deletion machines/led/releases/3.00/led-uncompiled.js
Original file line number Diff line number Diff line change
Expand Up @@ -9841,6 +9841,8 @@ class LEDCtrl extends CPU {
{
let cpu = this, elementInput, patterns;

super.addBinding(binding, element);

switch(binding) {
case LEDCtrl.BINDING.COLOR_PALETTE:
case LEDCtrl.BINDING.COLOR_SELECTION:
Expand Down Expand Up @@ -9916,7 +9918,6 @@ class LEDCtrl extends CPU {
};
}
}
super.addBinding(binding, element);
}

/**
Expand Down
4 changes: 2 additions & 2 deletions machines/led/releases/3.00/led.js

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

2 changes: 1 addition & 1 deletion machines/led/releases/3.00/led.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion machines/modules/v3/ledctrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ export default class LEDCtrl extends CPU {
{
let cpu = this, elementInput, patterns;

super.addBinding(binding, element);

switch(binding) {
case LEDCtrl.BINDING.COLOR_PALETTE:
case LEDCtrl.BINDING.COLOR_SELECTION:
Expand Down Expand Up @@ -219,7 +221,6 @@ export default class LEDCtrl extends CPU {
};
}
}
super.addBinding(binding, element);
}

/**
Expand Down

0 comments on commit bc91c18

Please sign in to comment.