mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
First separation commit.
Added LICENSE, README.md, CONTRIBUTORS.md
This commit is contained in:
parent
09513af31b
commit
4678528d00
657 changed files with 422 additions and 0 deletions
|
@ -1,39 +0,0 @@
|
|||
define(["appStorage", "events"], function(appStorage, events) {
|
||||
"use strict";
|
||||
|
||||
function getKey(name, userId) {
|
||||
return userId && (name = userId + "-" + name), name
|
||||
}
|
||||
|
||||
function AppSettings() {}
|
||||
return AppSettings.prototype.enableAutoLogin = function(val) {
|
||||
return null != val && this.set("enableAutoLogin", val.toString()), "false" !== this.get("enableAutoLogin")
|
||||
}, AppSettings.prototype.enableAutomaticBitrateDetection = function(isInNetwork, mediaType, val) {
|
||||
var key = "enableautobitratebitrate-" + mediaType + "-" + isInNetwork;
|
||||
return null != val && (isInNetwork && "Audio" === mediaType && (val = !0), this.set(key, val.toString())), !(!isInNetwork || "Audio" !== mediaType) || "false" !== this.get(key)
|
||||
}, AppSettings.prototype.maxStreamingBitrate = function(isInNetwork, mediaType, val) {
|
||||
var key = "maxbitrate-" + mediaType + "-" + isInNetwork;
|
||||
return null != val && (isInNetwork && "Audio" === mediaType || this.set(key, val)), isInNetwork && "Audio" === mediaType ? 15e7 : parseInt(this.get(key) || "0") || 15e5
|
||||
}, AppSettings.prototype.maxStaticMusicBitrate = function(val) {
|
||||
void 0 !== val && this.set("maxStaticMusicBitrate", val);
|
||||
var defaultValue = 32e4;
|
||||
return parseInt(this.get("maxStaticMusicBitrate") || defaultValue.toString()) || defaultValue
|
||||
}, AppSettings.prototype.maxChromecastBitrate = function(val) {
|
||||
return null != val && this.set("chromecastBitrate1", val), val = this.get("chromecastBitrate1"), val ? parseInt(val) : null
|
||||
}, AppSettings.prototype.syncOnlyOnWifi = function(val) {
|
||||
return null != val && this.set("syncOnlyOnWifi", val.toString()), "false" !== this.get("syncOnlyOnWifi")
|
||||
}, AppSettings.prototype.syncPath = function(val) {
|
||||
return null != val && this.set("syncPath", val), this.get("syncPath")
|
||||
}, AppSettings.prototype.cameraUploadServers = function(val) {
|
||||
return null != val && this.set("cameraUploadServers", val.join(",")), val = this.get("cameraUploadServers"), val ? val.split(",") : []
|
||||
}, AppSettings.prototype.runAtStartup = function(val) {
|
||||
return null != val && this.set("runatstartup", val.toString()), "true" === this.get("runatstartup")
|
||||
}, AppSettings.prototype.set = function(name, value, userId) {
|
||||
var currentValue = this.get(name, userId);
|
||||
appStorage.setItem(getKey(name, userId), value), currentValue !== value && events.trigger(this, "change", [name])
|
||||
}, AppSettings.prototype.get = function(name, userId) {
|
||||
return appStorage.getItem(getKey(name, userId))
|
||||
}, AppSettings.prototype.enableSystemExternalPlayers = function(val) {
|
||||
return null != val && this.set("enableSystemExternalPlayers", val.toString()), "true" === this.get("enableSystemExternalPlayers")
|
||||
}, new AppSettings
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue