This commit is contained in:
izenburnor 2020-06-03 18:31:21 +01:00
commit 22152d44b7
3 changed files with 6 additions and 3 deletions

View file

@ -12,7 +12,7 @@ NOTES:
- You also might need [.NET 4.0](https://www.microsoft.com/en-us/download/details.aspx?id=17718) installed
After installing Python open a terminal/command prompt and install the dependencies using `python3 -m pip install -U -r requirements.txt --user`<br>
If you're using git to get this repo you should use `git submodule update --init --recursive` as well. If you're just downloading the archive.zip, make sure you download and extract [deemix-webui](https://notabug.org/RemixDev/deemix-webui) into the webui folder.
If you're using git to get this repo you should use `git submodule update --init --recursive` as well. If you're just downloading the archive.zip, make sure you download and extract [deemix-webui](https://notabug.org/RemixDev/deemix-webui) into the webui folder.<br>
Run `python3 server.py` to start the server and then connect to `127.0.0.1:9666`. The GUI should show up.<br>
If you don't want to use your browser you can start the GUI by using `python3 deemix_gui.py`<br>

View file

@ -230,7 +230,10 @@ def getTracklist(data):
@socketio.on('analyzeLink')
def analyzeLink(link):
(type, data) = app.analyzeLink(session['dz'], link)
emit('analyze_'+type, data)
if len(data):
emit('analyze_'+type, data)
else:
emit('analyze_notSupported')
@socketio.on('getChartTracks')
def getChartTracks(id):

2
webui

@ -1 +1 @@
Subproject commit e59ff93b1d11a2c06f9b1cbb8bc88b3f479a5681
Subproject commit da657bbdcc1bb61938f0392f77cd170d632847df