Check-in [08de3d2f45]
Overview
Comment: | Introduce channel.has_search flag |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
08de3d2f45be7965500f4c200cc3849c |
User & Date: | mario on 2014-05-08 20:02:35 |
Other Links: | manifest | tags |
Context
2014-05-09
| ||
00:01 | Support /get2/ URLs for albums and playlists now. Genres are queried for /tracks. check-in: 590edd0877 user: mario tags: trunk | |
2014-05-08
| ||
20:02 | Introduce channel.has_search flag check-in: 08de3d2f45 user: mario tags: trunk | |
20:02 | Added tracks(genres), albums, and playlists; none of the API streaming URLs work yet check-in: 21152c0d6e user: mario tags: trunk | |
Changes
Modified channels/_generic.py from [470a3f337e] to [f4b3b96251].
︙ | |||
50 51 52 53 54 55 56 57 58 59 60 61 62 63 | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | + | title = "GenericChannel" version = 1.0 homepage = "http://milki.inlcude-once.org/streamtuner2/" base_url = "" listformat = "audio/x-scpls" audioformat = "audio/mp3" # fallback value config = [] has_search = False # categories categories = ["empty", ] current = "" default = "empty" shown = None # last selected entry in stream list, also indicator if notebook tab has been selected once / stream list of current category been displayed yet |
︙ |
Modified channels/xiph.py from [489a9db0fc] to [4dfeffc128].
︙ | |||
43 44 45 46 47 48 49 50 51 52 53 54 55 56 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | + | homepage = "http://dir.xiph.org/" #base_url = "http://api.dir.xiph.org/" json_url = "http://api.include-once.org/xiph/cache.php" listformat = "url/http" config = [ {"name":"xiph_min_bitrate", "value":64, "type":"int", "description":"minimum bitrate, filter anything below", "category":"filter"} ] has_search = True # content categories = [ "pop", "top40" ] current = "" default = "pop" empty = None |
︙ |