1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# api: streamtuner2
# title: History
# description: List recently played stations under favourites > history.
# version: 1.0
# type: category
# category: ui
# priority: optional
# config: { name: history, type: int, value: 20, description: Number of last played streams to keep in history list., category: limit }
#
#
# Lists last activated streams in a new [history] tab in the favourites
# channel.
#
#
#
from config import *
from channels import *
|
|
|
>
<
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#
# api: streamtuner2
# title: History
# description: List recently played stations under favourites > history.
# version: 1.0
# type: category
# category: ui
# config:
# { name: history, type: int, value: 20, description: Number of last played streams to keep in history list., category: limit }
# priority: optional
#
#
# Lists last activated streams in a new [history] tab in the favourites
# channel.
#
from config import *
from channels import *
|