From 003e82e92730af175de2bc7bf24d6cda2751e366 Mon Sep 17 00:00:00 2001 From: coder-alpha Date: Sat, 5 Nov 2016 19:25:55 -0400 Subject: [PATCH] enable Colors Tv on Desi Tashan --- Contents/Code/common.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Contents/Code/common.py b/Contents/Code/common.py index 788cd2b..749ba30 100644 --- a/Contents/Code/common.py +++ b/Contents/Code/common.py @@ -1,6 +1,6 @@ ################################################################################ TITLE = L('Title') -VERSION = '0.02' # Release notation (x.y - where x is major and y is minor) +VERSION = '0.03' # Release notation (x.y - where x is major and y is minor) GITHUB_REPOSITORY = 'coder-alpha/DesiTelly.bundle' PREFIX = "/video/desitelly" ################################################################################ @@ -35,6 +35,7 @@ CHANNELVV = 'Channel V' BINDASS = 'Bindass' COLORSTVCHAN = 'Colors Tv Channel' +COLORS_TV = 'Colors Tv' SABTVCHAN = 'SabTv Channel' SONYPAL = 'Sony Pal' DDNATIONAL = 'DD National' @@ -107,6 +108,7 @@ def GetSupportedChannels(): XINXMEDIA.lower(), NDTV.lower(), COLORSTV.lower(), + COLORS_TV.lower(), MTVIN.lower(), CHANNELVV.lower(), BINDASS.lower(), @@ -171,7 +173,7 @@ def GetThumb(channel): icon = R('icon-saharaone.png') elif channel == STARJALSHA.lower(): icon = R('icon-starjalsha.png') - elif channel == COLORS.lower() or channel == COLORSTV.lower() or channel == COLORSTVCHAN.lower(): + elif channel == COLORS.lower() or channel == COLORSTV.lower() or channel == COLORSTVCHAN.lower() or channel == COLORS_TV.lower(): icon = R('icon-colors.png') elif channel == SABTV.lower() or channel == SABTVCHAN.lower(): icon = R('icon-sabtv.png')