Skip to content

Commit 2af369a

Browse files
authored
Merge pull request #5 from elliotmatson/master
2 parents 5b45456 + 271c179 commit 2af369a

File tree

8 files changed

+2416
-328
lines changed

8 files changed

+2416
-328
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
node_modules/
2+
/pkg
3+
/pkg.tgz

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
package.json
2+
/LICENSE.md

.prettierrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"arrowParens": "always",
3+
"bracketSpacing": true,
4+
"printWidth": 120,
5+
"semi": false,
6+
"singleQuote": true,
7+
"useTabs": true,
8+
"endOfLine": "lf"
9+
}
File renamed without changes.

companion/manifest.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"id": "chamsys-magicq-udp",
3+
"name": "chamsys-magicq-udp",
4+
"shortname": "magicq",
5+
"description": "Module to control Chamsys MagicQ Consoles over UDP network - can't be used in multi console setups",
6+
"version": "2.0.0",
7+
"license": "MIT",
8+
"repository": "git+https://github.com/bitfocus/companion-module-chamsys-magicq-udp.git",
9+
"bugs": "https://github.com/bitfocus/companion-module-chamsys-magicq-udp/issues",
10+
"maintainers": [
11+
{
12+
"name": "Per Røine",
13+
"email": "per.roine@gmail.com"
14+
}
15+
],
16+
"legacyIds": [
17+
"chamsys-magicqudp"
18+
],
19+
"runtime": {
20+
"type": "node18",
21+
"api": "nodejs-ipc",
22+
"apiVersion": "0.0.0",
23+
"entrypoint": "../index.js"
24+
},
25+
"manufacturer": "ChamSys",
26+
"products": [
27+
"MagicQ (UDP)"
28+
],
29+
"keywords": [
30+
"Lighting"
31+
]
32+
}

0 commit comments

Comments
 (0)