mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update sat/ip discovery
This commit is contained in:
parent
5c4854b777
commit
4fb729169f
10 changed files with 210 additions and 92 deletions
|
@ -74,7 +74,11 @@
|
|||
html += '</div>';
|
||||
|
||||
html += '</paper-item-body>';
|
||||
html += '<paper-icon-button icon="refresh" data-tunerid="' + tuner.Id + '" title="' + Globalize.translate('ButtonResetTuner') + '" class="btnResetTuner"></paper-icon-button>';
|
||||
|
||||
if (tuner.CanReset) {
|
||||
html += '<paper-icon-button icon="refresh" data-tunerid="' + tuner.Id + '" title="' + Globalize.translate('ButtonResetTuner') + '" class="btnResetTuner"></paper-icon-button>';
|
||||
}
|
||||
|
||||
html += '</paper-icon-item>';
|
||||
}
|
||||
|
||||
|
@ -201,7 +205,7 @@
|
|||
html += '<paper-item-body two-line>';
|
||||
html += '<a class="clearLink" href="' + href + '">';
|
||||
html += '<div>';
|
||||
html += getTunerName(device.Type);
|
||||
html += device.FriendlyName || getTunerName(device.Type);
|
||||
html += '</div>';
|
||||
|
||||
html += '<div secondary>';
|
||||
|
@ -367,6 +371,8 @@
|
|||
return 'M3U Playlist';
|
||||
case 'hdhomerun':
|
||||
return 'HDHomerun';
|
||||
case 'satip':
|
||||
return 'DVB';
|
||||
default:
|
||||
return 'Unknown';
|
||||
}
|
||||
|
@ -445,6 +451,11 @@
|
|||
|
||||
var menuItems = [];
|
||||
|
||||
//menuItems.push({
|
||||
// name: getTunerName('satip'),
|
||||
// id: 'satip'
|
||||
//});
|
||||
|
||||
menuItems.push({
|
||||
name: 'HDHomerun',
|
||||
id: 'hdhomerun'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue