diff --git a/docs/quickstart.rst b/docs/quickstart.rst index c8773a08..eb2f2f52 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -56,10 +56,11 @@ Here are the steps to get a basic installation working: #. The software will attempt to pre-configure itself for whatever software you have installed. Note that in the case of Traktor, this work will including building an index for file lookup. For large Traktor installations, that may take a while. #. It should bring up the `Settings `_ #. (Re-)Configure a `Source `_ -#. Configure an output: a file to write, the webserver, the twitchbot, etc ... -#. Save -#. Bring up your DJ software and play a song. -#. The output you picked should now have the song contents after the DJ software updates its files. (Depending upon the output option and the DJ software in use, time may vary.) - +#. Save settings. +#. Launch your DJ Software. +#. Bring up OBS or SLOBS or your streaming software. +#. Configure a Browser Source and point it at `http://localhost:8899/`. +#. Bring up your DJ software again and play a song. +#. The Browser Source should have a very simple track information box. At this point, you are ready to customize via `Templates `_ and enable other features! diff --git a/nowplaying/config.py b/nowplaying/config.py index 1e7ef9b7..b16d2e6f 100755 --- a/nowplaying/config.py +++ b/nowplaying/config.py @@ -197,7 +197,7 @@ def defaults(self): str(self.templatedir.joinpath("ws-gifwords-fade.htm"))) settings.setValue('weboutput/requestertemplate', str(self.templatedir.joinpath("ws-requests.htm"))) - settings.setValue('weboutput/httpenabled', False) + settings.setValue('weboutput/httpenabled', True) settings.setValue('weboutput/httpport', '8899') settings.setValue('weboutput/once', True) diff --git a/nowplaying/systemtray.py b/nowplaying/systemtray.py index 7d24bd51..cbedceea 100755 --- a/nowplaying/systemtray.py +++ b/nowplaying/systemtray.py @@ -280,7 +280,9 @@ def installer(self): msgbox = QMessageBox() msgbox.setText('Basic configuration hopefully in place. ' - 'Please verify the Source and configure an output!') + 'Bringing up the Settings windows. ' + ' Please check the Source is correct for' + ' your DJ software.') msgbox.show() msgbox.exec()