1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
-
-
-
+
+
-
-
-
|
#
# api: streamtuner2
# title: History
# description: List recently played stations under favourites > history.
# version: 1.0
# type: group
# 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.
# Lists recently played streams in a new [history] tab in the
# bookmarks channel.
#
from config import *
from channels import *
class history:
# plugin info
module = "history"
title = "History"
|