1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-11-14 14:12:17 +00:00

Advertise hls endpoint as not supported

This commit is contained in:
Alban Féron 2022-09-10 15:58:28 +02:00
parent e52a7043b0
commit 3b0aa20b51
No known key found for this signature in database
GPG Key ID: 8CE0313646D16165
2 changed files with 3 additions and 2 deletions

View File

@ -72,7 +72,7 @@ All methods / pseudo-TOC
deletePlaylist_ ✔️ deletePlaylist_ ✔️
stream_ ✔️ stream_ ✔️
download_ ✔️ download_ ✔️
hls_ 1.9.0 🔴 hls_ 1.9.0
getCaptions_ 1.15.0 🔴 getCaptions_ 1.15.0 🔴
getCoverArt_ ✔️ getCoverArt_ ✔️
getLyrics_ ✔️ getLyrics_ ✔️

View File

@ -1,7 +1,7 @@
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #
# Copyright (C) 2018-2020 Alban 'spl0k' Féron # Copyright (C) 2018-2022 Alban 'spl0k' Féron
# #
# Distributed under terms of the GNU AGPLv3 license. # Distributed under terms of the GNU AGPLv3 license.
@ -15,6 +15,7 @@ methods = (
"createShare", "createShare",
"updateShare", "updateShare",
"deleteShare", "deleteShare",
"hls",
) )