fixed tts jquery compat, pinned obswebsocket version

This commit is contained in:
GERBrowny 2023-03-27 17:22:01 +02:00
parent d96d5a440e
commit fb13cc76c5
3 changed files with 3 additions and 4 deletions

View File

@ -16,7 +16,7 @@ RUN apt-get install -y python3 python3-yaml python3-requests python3-oauthlib py
RUN apt-get install -y git RUN apt-get install -y git
RUN pip3 install argparse RUN pip3 install argparse
RUN pip3 install irc RUN pip3 install irc
RUN pip3 install obs-websocket-py RUN pip3 install obs-websocket-py==0.5.3
RUN pip3 install lxml RUN pip3 install lxml
RUN apt-get install -y supervisor coreutils dehydrated dos2unix RUN apt-get install -y supervisor coreutils dehydrated dos2unix

View File

@ -58,6 +58,7 @@ try:
connected = True connected = True
except: except:
connected = False connected = False
print('Not Connected')
if connected: if connected:
scenes = ws.call(requests.GetSceneList()) scenes = ws.call(requests.GetSceneList())
@ -94,7 +95,7 @@ print('''<!DOCTYPE html>
#obserror.visible { display:block; } #obserror.visible { display:block; }
#lowbitrate.visible { display:block; } #lowbitrate.visible { display:block; }
</style> </style>
<script src="./jquery.js"></script>''') <script src="./_jquery.js"></script>''')
if connected: if connected:
print('<script src="./remote.js"></script>') print('<script src="./remote.js"></script>')

2
build/www/jquery.js vendored

File diff suppressed because one or more lines are too long