-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7337d4
commit 6dca663
Showing
3 changed files
with
137 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright: (c) 2016, SylvainCecchetto | ||
# GNU General Public License v2.0+ (see LICENSE.txt or https://www.gnu.org/licenses/gpl-2.0.txt) | ||
|
||
# This file is part of Catch-up TV & More | ||
|
||
from __future__ import unicode_literals | ||
|
||
# The following dictionaries describe | ||
# the addon's tree architecture. | ||
# * Key: item id | ||
# * Value: item infos | ||
# - route (folder)/resolver (playable URL): Callback function to run once this item is selected | ||
# - thumb: Item thumb path relative to "media" folder | ||
# - fanart: Item fanart path relative to "media" folder | ||
|
||
root = 'replay' | ||
|
||
menu = { | ||
'tvp-vod': { | ||
'route': '/resources/lib/channels/pl/tvp:list_programs', | ||
'label': 'TVP VOD', | ||
'thumb': 'channels/pl/tvpvod.png', | ||
'fanart': 'channels/pl/tvpvod_fanart.jpg', | ||
'enabled': True, | ||
'order': 1 | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters