Skip to content

Commit a54ac2a

Browse files
author
ComputerElite
committed
increase version and add info to stream tab
1 parent 884e858 commit a54ac2a

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

html/stream.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,16 @@
2828
<div style="text-align: center; font-size: 24px; margin-bottom: 10px;">
2929
Streamer Tools Client - Stream
3030
</div>
31+
<div style="margin-left: 10px;">
32+
<b>THIS TAB IS NOT FOR STREAMING TO TWITCH, YOUTUBE OR ANY OTHER PLATFORM</b>
33+
<br>
34+
This tab is being used to stream to an Overlay streaming server which I created. Please don't use it if you don't know what you're doing
35+
</div>
3136
<div style="text-align: center; font-size: 18px;">
3237
<table style="padding: 10px; width: 400px; text-align: center;">
3338

3439
<tr><td>Stream host</td><td><input style="margin-top: 20px;" type='text' id="streamhost"></td></tr>
35-
<tr><td>Stream id</td><td><input style="margin-top: 20px;" type='text' id="streamIdElement" readonly></td></tr>
40+
<tr><td>Stream id (randomly assigned after starting a stream)</td><td><input style="margin-top: 20px;" type='text' id="streamIdElement" readonly></td></tr>
3641
</table>
3742
<input type="button" value="Start stream" onclick="StartStream()">
3843
</div>
@@ -84,7 +89,7 @@
8489
var pushedCover = false
8590
var lastId = ""
8691

87-
function SendData() {
92+
function SendData() {e
8893
fetch("http://localhost:53510/api/raw").then(res => res.json().then(res => {
8994
if(res.id != lastId) pushedCover = false
9095
lastId = res.id

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const MulticastIp = "232.0.53.5"
2323
const SocketPort = 53501
2424
const HttpPort = 53502
2525
const ApiPort = 53510
26-
const version = "1.0.3"
26+
const version = "1.1.0"
2727

2828
const bsapi = new BeatSaverAPI({
2929
AppName: "Streamer-tools-client",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "streamer-tools-client",
3-
"version": "1.0.3",
3+
"version": "1.1.0",
44
"description": "Client for the streamer tools Beat Saber mod",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)