mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-07-26 09:18:39 +00:00
Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fd82cfbd6d | |||
| 7a069e1d53 | |||
| 9a2de0786f | |||
| 36357b0daf | |||
| ee2f7c60cf | |||
| bda5565cc4 | |||
| fbffb0bd21 | |||
| 16ad5ae110 | |||
| 2cc0de766e | |||
| 2246e53e86 | |||
| 81ef5499e0 | |||
| f07d535971 | |||
| 6081109b8f | |||
| 4177435f4b |
@@ -9,7 +9,7 @@ jobs:
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version-file: .nvmrc
|
||||
@@ -19,7 +19,7 @@ jobs:
|
||||
build-windows:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version-file: .nvmrc
|
||||
@@ -35,7 +35,7 @@ jobs:
|
||||
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
|
||||
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version-file: .nvmrc
|
||||
|
||||
Generated
+1268
-638
File diff suppressed because it is too large
Load Diff
+5
-5
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "cue-view",
|
||||
"productName": "Cue View",
|
||||
"version": "1.2.3",
|
||||
"version": "1.2.4",
|
||||
"description": "A dashboard for everything in your show",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
@@ -24,9 +24,9 @@
|
||||
"electron-builder": "26.0.12",
|
||||
"eslint": "8.57.0",
|
||||
"eslint-config-airbnb-base": "15.0.0",
|
||||
"eslint-config-prettier": "10.1.5",
|
||||
"eslint-plugin-import": "2.31.0",
|
||||
"prettier": "3.5.3"
|
||||
"eslint-config-prettier": "10.1.8",
|
||||
"eslint-plugin-import": "2.32.0",
|
||||
"prettier": "3.6.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jwetzell/posistagenet": "2.1.1",
|
||||
@@ -37,7 +37,7 @@
|
||||
"md5": "2.3.0",
|
||||
"netmask": "2.0.2",
|
||||
"osc": "2.4.5",
|
||||
"uuid": "11.1.0"
|
||||
"uuid": "13.0.0"
|
||||
},
|
||||
"build": {
|
||||
"appId": "com.stagehacks.cueview",
|
||||
|
||||
@@ -101,7 +101,11 @@ exports.data = function data(_device, oscData) {
|
||||
} else {
|
||||
device.data.workspaces[json.workspace_id].permission = 'ok';
|
||||
device.send(`/workspace/${msgAddr[2]}/cueLists`);
|
||||
device.send(`/workspace/${msgAddr[2]}/updates`, [{ type: 'i', value: 1 }]);
|
||||
if (device.data?.version?.startsWith('5')) {
|
||||
device.send(`/updates`, [{ type: 'i', value: 1 }]);
|
||||
} else {
|
||||
device.send(`/workspace/${msgAddr[2]}/updates`, [{ type: 'i', value: 1 }]);
|
||||
}
|
||||
}
|
||||
} else if (/reply\/workspace\/.*\/cueLists/.test(oscData.address)) {
|
||||
insertChildCues(device, device.data.workspaces[msgAddr[2]].cueLists, json.data, '[root group of cue lists]');
|
||||
|
||||
Reference in New Issue
Block a user