Skip to content

Commit

Permalink
Merge pull request #19 from zynine-/multi
Browse files Browse the repository at this point in the history
0.9.6
  • Loading branch information
zynine- authored Oct 21, 2016
2 parents 278a486 + 08c936c commit 0daaf89
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
9 changes: 4 additions & 5 deletions Contents/Code/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# HDHR Viewer V2 v0.9.4
# HDHR Viewer V2 v0.9.6

import time
import string
Expand All @@ -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'
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0daaf89

Please sign in to comment.