Skip to content

Commit

Permalink
correct links to LiquiSoap's doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kirchgessner committed Mar 4, 2023
1 parent d8cd9fb commit 85d5f3c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/_static/quickstart.liq
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ output(radio)
# On Linux you can also try `output.pulseaudio(radio)` or `output.alsa(radio)`

# Uncomment below to stream to Icecast
# output.icecast(%vorbis, # see https://www.liquidsoap.info/doc-2.0.0/encoding_formats.html
# output.icecast(%vorbis, # see https://www.liquidsoap.info/doc-dev/encoding_formats.html
# id="icecast",
# host = "localhost",
# port = 9000,
Expand Down
4 changes: 2 additions & 2 deletions docs/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ Installing Showergel requires
* a Linux box relying on systemd (ie. a recent mainstream distribution),
* Python, at least version 3.7,
* pip_, check it is available by calling ``pip --version`` or ``pip3 --version``
* a running Liquidsoap radio - `version 2.x <https://www.liquidsoap.info/doc-2.0.0/install.html>`_
* a running Liquidsoap radio - `version 2.x <https://www.liquidsoap.info/doc-2.1.4/install.html>`_
is Showergel's best friend.

.. note::

We assume you already know the basics of Liquidsoap and its script language.
If you have never played with only Liquidsoap, we advise you read at least
`its quick start guide <https://www.liquidsoap.info/doc-2.0.0/quick_start.html>`_.
`its quick start guide <https://www.liquidsoap.info/doc-dev/quick_start.html>`_.
Then you might use our :ref:`quickstart` script.

Install Showergel by running ``pip install showergel`` (maybe replace ``pip`` by ``pip3``).
Expand Down
6 changes: 3 additions & 3 deletions docs/liquidsoap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Sections below discuss implementation details on integrating each Showergel feat
Display/skip current track
--------------------------

You need to enable `Liquidsoap's telnet server <https://www.liquidsoap.info/doc-2.0.0/server.html>`_.
You need to enable `Liquidsoap's telnet server <https://www.liquidsoap.info/doc-dev/server.html>`_.
For example:

.. code-block:: ocaml
Expand Down Expand Up @@ -83,7 +83,7 @@ You need to define a function that will post metadata to Showergel:
radio.on_metadata(fun(m) -> thread.run(fast=false, {post_to_showergel(m)}))
We advise to plug the function with
`source.on_metadata <https://www.liquidsoap.info/doc-dev/reference.html#source.on_track>`_,
`source.on_metadata <https://www.liquidsoap.info/doc-dev/reference.html#source.on_metadata>`_,
but `source.on_track <https://www.liquidsoap.info/doc-dev/reference.html#source.on_track>`_
may work too.

Expand All @@ -105,7 +105,7 @@ may work too.
Authenticating users on harbor
------------------------------

Liquidsoap's `input.harbor <https://www.liquidsoap.info/doc-2.0.0/reference.html#input.harbor>`_
Liquidsoap's `input.harbor <https://www.liquidsoap.info/doc-dev/reference.html#input.harbor>`_
can require authentication by giving ``user`` and ``password`` parameters.
But this implies

Expand Down

0 comments on commit 85d5f3c

Please sign in to comment.