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

update windows ffmpeg

This commit is contained in:
Luke Pulverenti 2016-05-08 23:13:38 -04:00
parent 2242c4d5d6
commit b29bd0ea1a
15 changed files with 67 additions and 32 deletions

View file

@ -13,7 +13,8 @@
Fields: "AirTime,UserData,SeriesStudio,SyncInfo",
UserId: Dashboard.getCurrentUserId(),
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
EnableTotalRecordCount: 0
};
ApiClient.getJSON(ApiClient.getUrl("Shows/Upcoming", query)).then(function (result) {

View file

@ -31,7 +31,8 @@
IsAiring: true,
limit: getLimit() * 2,
ImageTypeLimit: 1,
EnableImageTypes: "Primary"
EnableImageTypes: "Primary",
EnableTotalRecordCount: false
}).then(function (result) {
@ -54,7 +55,8 @@
IsMovie: false,
IsSports: false,
IsKids: false,
IsSeries: true
IsSeries: true,
EnableTotalRecordCount: false
}).then(function (result) {
@ -67,7 +69,8 @@
IsAiring: false,
HasAired: false,
limit: getLimit(),
IsMovie: true
IsMovie: true,
EnableTotalRecordCount: false
}).then(function (result) {
@ -80,7 +83,8 @@
IsAiring: false,
HasAired: false,
limit: getLimit(),
IsSports: true
IsSports: true,
EnableTotalRecordCount: false
}).then(function (result) {
@ -93,7 +97,8 @@
IsAiring: false,
HasAired: false,
limit: getLimit(),
IsKids: true
IsKids: true,
EnableTotalRecordCount: false
}).then(function (result) {

View file

@ -33,7 +33,8 @@
Fields: "PrimaryImageAspectRatio,MediaSourceCount,SyncInfo",
ParentId: parentId,
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
EnableTotalRecordCount: false
};
ApiClient.getJSON(ApiClient.getUrl('Users/' + userId + '/Items/Latest', options)).then(function (items) {
@ -90,7 +91,8 @@
CollapseBoxSetItems: false,
ParentId: parentId,
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
EnableTotalRecordCount: false
};
ApiClient.getItems(userId, options).then(function (result) {

View file

@ -27,7 +27,8 @@
Fields: "PrimaryImageAspectRatio,SyncInfo",
ParentId: parentId,
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
EnableTotalRecordCount: false
};
ApiClient.getJSON(ApiClient.getUrl('Users/' + userId + '/Items/Latest', options)).then(function (items) {
@ -66,7 +67,8 @@
Filters: "IsPlayed",
ParentId: parentId,
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
EnableTotalRecordCount: false
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).then(function (result) {
@ -111,7 +113,8 @@
Filters: "IsPlayed",
ParentId: parentId,
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
EnableTotalRecordCount: false
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).then(function (result) {
@ -153,7 +156,8 @@
Recursive: true,
Fields: "PrimaryImageAspectRatio,SortName,CumulativeRunTimeTicks,CanDelete,SyncInfo",
StartIndex: 0,
Limit: itemsPerRow()
Limit: itemsPerRow(),
EnableTotalRecordCount: false
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).then(function (result) {

View file

@ -498,7 +498,8 @@
CollapseBoxSetItems: false,
ExcludeLocationTypes: "Virtual",
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
EnableTotalRecordCount: 0
};
return ApiClient.getItems(userId, options).then(function (result) {

View file

@ -112,7 +112,8 @@
ExcludeLocationTypes: "Virtual",
ParentId: parentId,
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
EnableTotalRecordCount: 0
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).then(function (result) {

View file

@ -14,7 +14,8 @@
Fields: "AirTime,UserData,SeriesStudio,SyncInfo",
UserId: Dashboard.getCurrentUserId(),
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
EnableTotalRecordCount: 0
};
query.ParentId = params.topParentId;