Skip to content

Commit e8b4534

Browse files
committed
update versioning to rc3
1 parent ff0bb80 commit e8b4534

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

examples/typescript/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tensorworks/spstypescriptexample",
3-
"version": "v1.0.0-rc.2",
3+
"version": "1.0.0-rc.3",
44
"description": "The typescript example for consuming the Scalable Pixel Streaming Frontend",
55
"main": "./src/index.ts",
66
"scripts": {

examples/typescript/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ document.body.onload = function () {
3636
{
3737
// Replace with your custom signalling url if you need to.
3838
// Otherwise SPS will use ws|wss://window.location.host/signalling/window.location.pathname
39-
let YOUR_CUSTOM_SIGNALLING_URL_HERE : string = ""; // <-- replace here
39+
let YOUR_CUSTOM_SIGNALLING_URL_HERE: string = ""; // <-- replace here
4040

4141
// Check the ?ss= url parameter for a custom signalling url.
4242
const urlParams = new URLSearchParams(window.location.search);
@@ -51,8 +51,8 @@ document.body.onload = function () {
5151

5252
// Override the onConfig so we can determine if we need to send the WebRTC offer based on what is sent from the signalling server
5353
stream.signallingProtocol.removeAllListeners("config");
54-
stream.signallingProtocol.addListener("config", (config : MessageExtendedConfig) => {
55-
if(config.frontendToSendOffer) {
54+
stream.signallingProtocol.addListener("config", (config: MessageExtendedConfig) => {
55+
if (config.frontendToSendOffer) {
5656
stream.config.setFlagEnabled(Flags.BrowserSendOffer, config.frontendToSendOffer);
5757
}
5858
stream.handleOnConfig(config);
@@ -84,4 +84,4 @@ document.body.onload = function () {
8484
};
8585
const spsApplication: SPSApplication = new SPSApplication(uiOptions);
8686
document.body.appendChild(spsApplication.rootElement);
87-
}
87+
}

library/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

library/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tensorworks/libspsfrontend",
3-
"version": "0.4.1",
3+
"version": "1.0.0-rc.3",
44
"description": "The Scalable Pixel Streaming Frontend Library consuming Epic Games' Pixel Streaming Frontend",
55
"main": "dist/libspsfrontend.min.js",
66
"module": "dist/libspsfrontend.esm.js",

0 commit comments

Comments
 (0)