From 08c936c7b9c59e2a552784b1e47fdf9364e48c1a Mon Sep 17 00:00:00 2001 From: zynine Date: Thu, 20 Oct 2016 22:39:45 -0400 Subject: [PATCH] 0.9.6 ##0.9.6 (2016-10-20) - Fix guide not appear if one of the channels is missing json 'Guide' key. (hdhomerun) --- CHANGELOG.md | 2 +- Contents/Code/__init__.py | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85a7910..6c0c610 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -##0.9.5 (2016-10-20) +##0.9.6 (2016-10-20) - Fix guide not appear if one of the channels is missing json 'Guide' key. (hdhomerun) ##0.9.4 (2016-10-20) diff --git a/Contents/Code/__init__.py b/Contents/Code/__init__.py index d21d1d5..fccb0ec 100644 --- a/Contents/Code/__init__.py +++ b/Contents/Code/__init__.py @@ -1,4 +1,4 @@ -# HDHR Viewer V2 v0.9.4 +# HDHR Viewer V2 v0.9.6 import time import string @@ -7,9 +7,9 @@ import os from lxml import etree -TITLE = 'HDHR Viewer 2 (0.9.4)' +TITLE = 'HDHR Viewer 2 (0.9.6)' PREFIX = '/video/hdhrv2' -VERSION = '0.9.4' +VERSION = '0.9.6' #GRAPHICS ART = 'art-default.jpg' @@ -41,8 +41,7 @@ #HDHOMERUN GUIDE URL URL_HDHR_DISCOVER = 'http://{ip}/discover.json' URL_HDHR_DISCOVER_DEVICES = 'http://my.hdhomerun.com/discover' -#URL_HDHR_GUIDE = 'http://my.hdhomerun.com/api/guide.php?DeviceAuth={deviceAuth}' -URL_HDHR_GUIDE = 'http://192.168.1.11/api/guide.php?DeviceAuth={deviceAuth}' +URL_HDHR_GUIDE = 'http://my.hdhomerun.com/api/guide.php?DeviceAuth={deviceAuth}' URL_HDHR_LINEUP = 'http://{ip}/lineup.json' URL_HDHR_STREAM = 'http://{ip}:5004/{tuner}/v{guideNumber}' CACHETIME_HDHR_GUIDE = 3600 # (s) Default: 3600 = 1 hour