Compare commits
10 Commits
v2.1.24-be
...
v2.1.25
Author | SHA1 | Date | |
---|---|---|---|
![]() |
56a91de2c4 | ||
![]() |
e2d217a981 | ||
![]() |
b484f27724 | ||
![]() |
eb04a2e579 | ||
![]() |
c66d8ecd5f | ||
![]() |
79b5f3c36f | ||
![]() |
4a78424b75 | ||
![]() |
4f78d0c98a | ||
![]() |
91b84b4437 | ||
![]() |
8a9b3dc782 |
@@ -1,5 +1,14 @@
|
||||
# Changelog
|
||||
|
||||
## v2.1.25 (2018-11-03)
|
||||
|
||||
* Monitoring:
|
||||
* Fix: Audio and video codec showing up as * on the activity cards.
|
||||
* New: Poster and background image on the activity cards for live TV.
|
||||
* UI:
|
||||
* Fix: Alert message for invalid Tautulli Public Domain setting.
|
||||
|
||||
|
||||
## v2.1.24-beta (2018-10-29)
|
||||
|
||||
* Monitoring:
|
||||
|
@@ -80,7 +80,9 @@ DOCUMENTATION :: END
|
||||
data-rating_key="${data['rating_key']}" data-parent_rating_key="${data['parent_rating_key']}" data-grandparent_rating_key="${data['grandparent_rating_key']}">
|
||||
<div class="dashboard-activity-container">
|
||||
<%
|
||||
if data['channel_stream'] == 0:
|
||||
if data['live'] == 1:
|
||||
background_url = 'images/art-live.png'
|
||||
elif data['channel_stream'] == 0:
|
||||
background_url = 'pms_image_proxy?img=' + data['art'] + '&width=500&height=280&opacity=40&background=282828&blur=3&fallback=art&refresh=true'
|
||||
else:
|
||||
if (data['art'] and data['art'].startswith('http')) or (data['thumb'] and data['thumb'].startswith('http')):
|
||||
@@ -93,7 +95,9 @@ DOCUMENTATION :: END
|
||||
% if data['media_type'] == 'track':
|
||||
<div id="poster-${sk}-bg" class="dashboard-activity-poster" style="background-image: url(pms_image_proxy?img=${data['parent_thumb']}&width=300&height=300&opacity=60&background=282828&blur=3&fallback=cover&refresh=true);"></div>
|
||||
% endif
|
||||
% if data['channel_stream'] == 0:
|
||||
% if data['live'] == 1:
|
||||
<div id="poster-${sk}" class="dashboard-activity-poster" style="background-image: url(images/poster-live.png);"></div>
|
||||
% elif data['channel_stream'] == 0:
|
||||
% if data['media_type'] == 'movie':
|
||||
<a id="poster-url-${sk}" href="${href}" title="${data['title']}">
|
||||
<div id="poster-${sk}" class="dashboard-activity-poster" style="background-image: url(pms_image_proxy?img=${data['thumb']}&width=300&height=450&fallback=poster&refresh=true);"></div>
|
||||
@@ -113,7 +117,7 @@ DOCUMENTATION :: END
|
||||
<div id="poster-${sk}" class="dashboard-activity-poster" style="background-image: url(pms_image_proxy?img=${data['parent_thumb'] or data['thumb']}&width=300&height=450&fallback=poster&refresh=true);"></div>
|
||||
% endif
|
||||
% else:
|
||||
<div id="poster-${sk}" class="dashboard-activity-poster" style="background-image: url(images/art.png);"></div>
|
||||
<div id="poster-${sk}" class="dashboard-activity-poster" style="background-image: url(images/poster.png);"></div>
|
||||
% endif
|
||||
% else:
|
||||
% if data['channel_icon'].startswith('http'):
|
||||
|
BIN
data/interfaces/default/images/art-live.png
Normal file
BIN
data/interfaces/default/images/art-live.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
BIN
data/interfaces/default/images/poster-live.png
Normal file
BIN
data/interfaces/default/images/poster-live.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
@@ -472,7 +472,7 @@
|
||||
<div class="col-md-8">
|
||||
<input type="text" class="form-control" id="http_base_url" name="http_base_url" value="${config['http_base_url']}" placeholder="http://mydomain.com" data-parsley-trigger="change" data-parsley-pattern="^https?:\/\/\S+$" data-parsley-errors-container="#http_base_url_error" data-parsley-error-message="Invalid URL">
|
||||
</div>
|
||||
<div id=http_base_url_error" class="alert alert-danger settings-alert" role="alert"></div>
|
||||
<div id="http_base_url_error" class="alert alert-danger settings-alert" role="alert"></div>
|
||||
</div>
|
||||
<p class="help-block">
|
||||
Set your public Tautulli domain for self-hosted notification images and newsletters. (e.g. http://mydomain.com)
|
||||
|
@@ -230,7 +230,7 @@ DOCUMENTATION :: END
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Codec</td>
|
||||
<td>${data['stream_subtitle_codec'].upper()}</td>
|
||||
<td>${data['stream_subtitle_codec'].upper() or '-'}</td>
|
||||
<td>${data['subtitle_codec'].upper()}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
@@ -1888,6 +1888,18 @@ class PmsConnect(object):
|
||||
|
||||
stream_details['transcode_decision'] = transcode_decision
|
||||
|
||||
# Override * in audio codecs
|
||||
if stream_details['stream_audio_codec'] == '*':
|
||||
stream_details['stream_audio_codec'] = source_audio_details['audio_codec']
|
||||
if transcode_details['transcode_audio_codec'] == '*':
|
||||
transcode_details['transcode_audio_codec'] = source_audio_details['audio_codec']
|
||||
|
||||
# Override * in video codecs
|
||||
if stream_details['stream_video_codec'] == '*':
|
||||
stream_details['stream_video_codec'] = source_video_details['video_codec']
|
||||
if transcode_details['transcode_video_codec'] == '*':
|
||||
transcode_details['transcode_video_codec'] = source_video_details['video_codec']
|
||||
|
||||
# Get the quality profile
|
||||
if media_type in ('movie', 'episode', 'clip') and 'stream_bitrate' in stream_details:
|
||||
if sync_id:
|
||||
|
@@ -1,2 +1,2 @@
|
||||
PLEXPY_BRANCH = "beta"
|
||||
PLEXPY_RELEASE_VERSION = "v2.1.24-beta"
|
||||
PLEXPY_RELEASE_VERSION = "v2.1.25"
|
||||
|
Reference in New Issue
Block a user