Skip to content

Commit 124ee5d

Browse files
committed
v0.11.3
1 parent efc944b commit 124ee5d

File tree

10 files changed

+37
-37
lines changed

10 files changed

+37
-37
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ A playout client for _Windows/Linux/macOS_ that will let you control _CasparCG&n
88

99
### Windows
1010

11-
- Download and open the [installer for SuperConductor](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.2/SuperConductor-0.11.2-Windows-Installer.exe).
12-
- (Optional) Download and open the [installer for separate TSR-Bridge](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.2/TSR-Bridge-0.11.2-Windows-Installer.exe).
11+
- Download and open the [installer for SuperConductor](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.3/SuperConductor-0.11.3-Windows-Installer.exe).
12+
- (Optional) Download and open the [installer for separate TSR-Bridge](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.3/TSR-Bridge-0.11.3-Windows-Installer.exe).
1313

1414
### Linux (Ubuntu)
1515

16-
- Download the [.appImage file for SuperConductor](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.2/SuperConductor-0.11.2-Linux-Executable.AppImage).<br/>
16+
- Download the [.appImage file for SuperConductor](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.3/SuperConductor-0.11.3-Linux-Executable.AppImage).<br/>
1717
Execute the following before running the file:<br/>
18-
`chmod +x Downloads/SuperConductor-0.11.2-Linux-Executable.AppImage`
19-
- (Optional) Download the [.appImage file for TSR-Bridge](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.2/TSR-Bridge-0.11.2-Linux-Executable.AppImage).<br/>
18+
`chmod +x Downloads/SuperConductor-0.11.3-Linux-Executable.AppImage`
19+
- (Optional) Download the [.appImage file for TSR-Bridge](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.3/TSR-Bridge-0.11.3-Linux-Executable.AppImage).<br/>
2020
Execute the following before running the file:<br/>
21-
`chmod +x Downloads/TSR-Bridge-0.11.2-Linux-Executable.AppImage`
21+
`chmod +x Downloads/TSR-Bridge-0.11.3-Linux-Executable.AppImage`
2222

2323
### macOS
2424

25-
- Download and open the [installer for SuperConductor](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.2/SuperConductor-0.11.2-macOS-Installer.dmg).
26-
- (Optional) Download and open the [installer for separate TSR-Bridge](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.2/TSR-Bridge-0.11.2-macOS-Installer.dmg).
25+
- Download and open the [installer for SuperConductor](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.3/SuperConductor-0.11.3-macOS-Installer.dmg).
26+
- (Optional) Download and open the [installer for separate TSR-Bridge](https://github.com/SuperFlyTV/SuperConductor/releases/download/v0.11.3/TSR-Bridge-0.11.3-macOS-Installer.dmg).
2727

2828
## Problems and Issues
2929

apps/app/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "superconductor",
33
"private": true,
4-
"version": "0.11.2",
4+
"version": "0.11.3",
55
"description": "A playout client for Windows, Linux or MacOS to control CasparCG, Atem, OBS and more!",
66
"main": "dist/main.js",
77
"engines": {
@@ -72,11 +72,11 @@
7272
"@koa/router": "^12.0.0",
7373
"@mui/icons-material": "^5.10.14",
7474
"@mui/material": "^5.10.14",
75-
"@shared/api": "^0.11.2",
76-
"@shared/lib": "^0.11.2",
77-
"@shared/models": "^0.11.2",
78-
"@shared/server-lib": "^0.11.2",
79-
"@shared/tsr-bridge": "^0.11.2",
75+
"@shared/api": "^0.11.3",
76+
"@shared/lib": "^0.11.3",
77+
"@shared/models": "^0.11.3",
78+
"@shared/server-lib": "^0.11.3",
79+
"@shared/tsr-bridge": "^0.11.3",
8080
"@sofie-automation/sorensen": "^1.4.2",
8181
"axios": "^1.1.3",
8282
"bufferutil": "^4.0.7",

apps/tsr-bridge/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tsr-bridge",
33
"private": true,
4-
"version": "0.11.2",
4+
"version": "0.11.3",
55
"description": "A companion app to SuperConductor, to handle playout on another computer",
66
"main": "dist/main.js",
77
"engines": {
@@ -50,10 +50,10 @@
5050
},
5151
"dependencies": {
5252
"@mui/material": "^5.10.14",
53-
"@shared/api": "^0.11.2",
54-
"@shared/lib": "^0.11.2",
55-
"@shared/server-lib": "^0.11.2",
56-
"@shared/tsr-bridge": "^0.11.2",
53+
"@shared/api": "^0.11.3",
54+
"@shared/lib": "^0.11.3",
55+
"@shared/server-lib": "^0.11.3",
56+
"@shared/tsr-bridge": "^0.11.3",
5757
"classnames": "^2.3.2",
5858
"electron-is-dev": "^2.0.0",
5959
"electron-updater": "^5.3.0",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"apps/**",
55
"tests/**"
66
],
7-
"version": "0.11.2",
7+
"version": "0.11.3",
88
"npmClient": "yarn",
99
"useWorkspaces": true
1010
}

shared/packages/api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shared/api",
3-
"version": "0.11.2",
3+
"version": "0.11.3",
44
"description": "",
55
"author": {
66
"name": "SuperFlyTV AB",
@@ -41,7 +41,7 @@
4141
]
4242
},
4343
"dependencies": {
44-
"@shared/models": "^0.11.2"
44+
"@shared/models": "^0.11.3"
4545
},
4646
"devDependencies": {
4747
"@types/ws": "^8.2.2",

shared/packages/lib/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shared/lib",
3-
"version": "0.11.2",
3+
"version": "0.11.3",
44
"description": "",
55
"author": {
66
"name": "SuperFlyTV AB",
@@ -41,8 +41,8 @@
4141
]
4242
},
4343
"dependencies": {
44-
"@shared/api": "^0.11.2",
45-
"@shared/models": "^0.11.2",
44+
"@shared/api": "^0.11.3",
45+
"@shared/models": "^0.11.3",
4646
"fast-copy": "^2.1.1",
4747
"lodash": "^4.17.21",
4848
"superfly-timeline": "^8.2.5"

shared/packages/models/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shared/models",
3-
"version": "0.11.2",
3+
"version": "0.11.3",
44
"description": "",
55
"author": {
66
"name": "SuperFlyTV AB",

shared/packages/peripherals/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shared/peripherals",
3-
"version": "0.11.2",
3+
"version": "0.11.3",
44
"description": "",
55
"author": {
66
"name": "SuperFlyTV AB",
@@ -48,8 +48,8 @@
4848
"@elgato-stream-deck/node": "^5.7.2",
4949
"@julusian/jpeg-turbo": "^2.1.0",
5050
"@julusian/midi": "^3.0.0",
51-
"@shared/api": "^0.11.2",
52-
"@shared/lib": "^0.11.2",
51+
"@shared/api": "^0.11.3",
52+
"@shared/lib": "^0.11.3",
5353
"lodash": "^4.17.21",
5454
"p-queue": "^6.6.2",
5555
"sharp": "^0.31.2",

shared/packages/server-lib/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shared/server-lib",
3-
"version": "0.11.2",
3+
"version": "0.11.3",
44
"description": "",
55
"author": {
66
"name": "SuperFlyTV AB",
@@ -41,8 +41,8 @@
4141
]
4242
},
4343
"dependencies": {
44-
"@shared/api": "^0.11.2",
45-
"@shared/models": "^0.11.2",
44+
"@shared/api": "^0.11.3",
45+
"@shared/models": "^0.11.3",
4646
"ws": "^8.4.2"
4747
},
4848
"devDependencies": {

shared/packages/tsr-bridge/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shared/tsr-bridge",
3-
"version": "0.11.2",
3+
"version": "0.11.3",
44
"description": "",
55
"author": {
66
"name": "SuperFlyTV AB",
@@ -41,10 +41,10 @@
4141
]
4242
},
4343
"dependencies": {
44-
"@shared/api": "^0.11.2",
45-
"@shared/lib": "^0.11.2",
46-
"@shared/models": "^0.11.2",
47-
"@shared/peripherals": "^0.11.2",
44+
"@shared/api": "^0.11.3",
45+
"@shared/lib": "^0.11.3",
46+
"@shared/models": "^0.11.3",
47+
"@shared/peripherals": "^0.11.3",
4848
"cheerio": "^1.0.0-rc.12",
4949
"got": "^11.8.5",
5050
"lodash": "^4.17.21",

0 commit comments

Comments
 (0)