update startup wizard instructions
This commit is contained in:
parent
315d60943d
commit
47c6980d11
12 changed files with 33 additions and 33 deletions
|
@ -14,12 +14,12 @@
|
|||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.4.396",
|
||||
"_release": "1.4.396",
|
||||
"version": "1.4.397",
|
||||
"_release": "1.4.397",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.4.396",
|
||||
"commit": "4e12304c8e306a0cb82191bb47b9db4d9ceeef9a"
|
||||
"tag": "1.4.397",
|
||||
"commit": "9adcc0001dbf032595448070447de469a8f24130"
|
||||
},
|
||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||
"_target": "^1.2.1",
|
||||
|
|
|
@ -258,6 +258,10 @@
|
|||
browser.web0s = userAgent.toLowerCase().indexOf('Web0S'.toLowerCase()) !== -1;
|
||||
browser.edgeUwp = browser.edge && userAgent.toLowerCase().indexOf('msapphost') !== -1;
|
||||
|
||||
if (browser.edgeUwp) {
|
||||
browser.edge = true;
|
||||
}
|
||||
|
||||
browser.tv = isTv();
|
||||
browser.operaTv = browser.tv && userAgent.toLowerCase().indexOf('opr/') !== -1;
|
||||
|
||||
|
|
|
@ -240,7 +240,7 @@ define(['browser'], function (browser) {
|
|||
return function (options) {
|
||||
|
||||
options = options || {};
|
||||
var physicalAudioChannels = options.audioChannels || (browser.tv || browser.xboxOne || browser.ps4 || !browser.mobile ? 6 : 2);
|
||||
var physicalAudioChannels = options.audioChannels || (browser.mobile ? 2 : 6);
|
||||
|
||||
var bitrateSetting = getMaxBitrate();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue