Skip to content

Commit 0779d95

Browse files
authored
Merge pull request #34 from zynine-/multi
0.9.12
2 parents 4219ffa + 7c29d06 commit 0779d95

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
##0.9.12 (2016-11-07)
2+
- Potential fix for HDHomeRun Prime + Roku 7.5.
3+
14
##0.9.11 (2016-10-27)
25
- Fix HDHomeRun guide not following "XMLTV Next Program Count" settings.
36

Contents/Code/__init__.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
from lxml import etree
99

1010
DEBUGMODE = True
11-
TITLE = 'HDHR Viewer 2 (0.9.11)'
11+
TITLE = 'HDHR Viewer 2 (0.9.12)'
1212
PREFIX = '/video/hdhrv2'
13-
VERSION = '0.9.11'
13+
VERSION = '0.9.12'
1414

1515

1616
#GRAPHICS
@@ -81,6 +81,8 @@ def Start():
8181
@handler(PREFIX, TITLE, art=ART, thumb=ICON)
8282
def MainMenu():
8383

84+
getInfo()
85+
8486
tuners=[]
8587

8688
HDHRV2 = Devices()
@@ -994,7 +996,7 @@ def CreateVO(tuneridx, url, title, year=None, tagline='', summary='', thumb=R(IC
994996
parts = [PartObject(key=(url))],
995997
container = MEDIA_CONTAINER,
996998
video_resolution = 1080,
997-
bitrate = 20000,
999+
#bitrate = 20000,
9981000
video_codec = videoCodec,
9991001
audio_codec = audioCodec,
10001002
audio_channels = AUDIO_CHANNELS,
@@ -1102,7 +1104,7 @@ def logType(strmsg):
11021104
Log.Debug('---------- ' + xstr(strmsg) + '; Type='+xstr(type(strmsg)))
11031105

11041106
###################################################################################################
1105-
# Plex 4.4 for iOS detection
1107+
# Client detection
11061108
###################################################################################################
11071109
def iOSPlex44():
11081110
return (Client.Product=='Plex for iOS' and Client.Version == '4.4')

0 commit comments

Comments
 (0)