1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update use of shellexecute

This commit is contained in:
Luke Pulverenti 2016-12-09 20:58:52 -05:00
parent 633ed72ae8
commit ec06f3cc61
11 changed files with 74 additions and 31 deletions

View file

@ -14,12 +14,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.4.374",
"_release": "1.4.374",
"version": "1.4.375",
"_release": "1.4.375",
"_resolution": {
"type": "version",
"tag": "1.4.374",
"commit": "5215874188517ade6b6542950bc725a4a4731f9f"
"tag": "1.4.375",
"commit": "728db9b8c27dcea2b8679e4d7ba6f556cfb9dc20"
},
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.1",

View file

@ -297,7 +297,10 @@ define(['browser'], function (browser) {
if (!mp3Added) {
videoAudioCodecs.push('mp3');
}
hlsVideoAudioCodecs.push('mp3');
if (!browser.ps4) {
// PS4 fails to load HLS with mp3 audio
hlsVideoAudioCodecs.push('mp3');
}
}
if (browser.tizen || options.supportsDts) {

View file

@ -353,5 +353,5 @@
"HeaderPlayMyMedia": "Play my Media",
"HeaderDiscoverEmbyPremiere": "Discover Emby Premiere",
"OneChannel": "One channel",
"AddedOnValue": "Added on {0}"
"AddedOnValue": "Added {0}"
}

View file

@ -40,6 +40,14 @@ define(['appSettings', 'events', 'browser'], function (appsettings, events, brow
saveTimeout = setTimeout(onSaveTimeout, 50);
}
self.getData = function () {
return displayPrefs;
};
self.importFrom = function (instance) {
displayPrefs = instance.getData();
};
self.set = function (name, value, enableOnServer) {
var userId = currentUserId;