|
@@ -480,6 +480,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="format">Optional. The <see cref="ImageFormat"/> of the returned image.</param>
|
|
@@ -509,6 +511,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] string? tag,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] ImageFormat? format,
|
|
@@ -539,6 +543,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -560,6 +566,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="format">Optional. The <see cref="ImageFormat"/> of the returned image.</param>
|
|
@@ -589,6 +597,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] string? tag,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] ImageFormat? format,
|
|
@@ -618,6 +628,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -638,6 +650,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="tag">Optional. Supply the cache tag from the item object to receive strong caching headers.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="format">Determines the output format of the image - original,gif,jpg,png.</param>
|
|
@@ -667,6 +681,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromRoute, Required] string tag,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromRoute, Required] ImageFormat format,
|
|
@@ -697,6 +713,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -721,6 +739,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -750,6 +770,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -776,6 +798,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -800,6 +824,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -829,6 +855,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -855,6 +883,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -880,6 +910,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -909,6 +941,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -934,6 +968,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -958,6 +994,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -987,6 +1025,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -1013,6 +1053,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -1038,6 +1080,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -1067,6 +1111,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -1092,6 +1138,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -1116,6 +1164,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -1145,6 +1195,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -1171,6 +1223,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -1196,6 +1250,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -1225,6 +1281,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -1250,6 +1308,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -1274,6 +1334,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -1303,6 +1365,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -1329,6 +1393,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -1354,6 +1420,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -1383,6 +1451,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -1408,6 +1478,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -1432,6 +1504,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -1461,6 +1535,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -1504,6 +1580,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -1530,6 +1608,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
/// <param name="width">The fixed image width to return.</param>
|
|
|
/// <param name="height">The fixed image height to return.</param>
|
|
|
/// <param name="quality">Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.</param>
|
|
|
+ /// <param name="fillWidth">Width of box to fill.</param>
|
|
|
+ /// <param name="fillHeight">Height of box to fill.</param>
|
|
|
/// <param name="cropWhitespace">Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.</param>
|
|
|
/// <param name="addPlayedIndicator">Optional. Add a played indicator.</param>
|
|
|
/// <param name="blur">Optional. Blur image.</param>
|
|
@@ -1559,6 +1639,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
[FromQuery] int? width,
|
|
|
[FromQuery] int? height,
|
|
|
[FromQuery] int? quality,
|
|
|
+ [FromQuery] int? fillWidth,
|
|
|
+ [FromQuery] int? fillHeight,
|
|
|
[FromQuery] bool? cropWhitespace,
|
|
|
[FromQuery] bool? addPlayedIndicator,
|
|
|
[FromQuery] int? blur,
|
|
@@ -1601,6 +1683,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
width,
|
|
|
height,
|
|
|
quality,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
cropWhitespace,
|
|
|
addPlayedIndicator,
|
|
|
blur,
|
|
@@ -1685,6 +1769,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
int? width,
|
|
|
int? height,
|
|
|
int? quality,
|
|
|
+ int? fillWidth,
|
|
|
+ int? fillHeight,
|
|
|
bool? cropWhitespace,
|
|
|
bool? addPlayedIndicator,
|
|
|
int? blur,
|
|
@@ -1748,11 +1834,13 @@ namespace Jellyfin.Api.Controllers
|
|
|
item,
|
|
|
itemId,
|
|
|
imageIndex,
|
|
|
+ width,
|
|
|
height,
|
|
|
- maxHeight,
|
|
|
maxWidth,
|
|
|
+ maxHeight,
|
|
|
+ fillWidth,
|
|
|
+ fillHeight,
|
|
|
quality,
|
|
|
- width,
|
|
|
addPlayedIndicator,
|
|
|
percentPlayed,
|
|
|
unplayedCount,
|
|
@@ -1847,11 +1935,13 @@ namespace Jellyfin.Api.Controllers
|
|
|
BaseItem? item,
|
|
|
Guid itemId,
|
|
|
int? index,
|
|
|
+ int? width,
|
|
|
int? height,
|
|
|
- int? maxHeight,
|
|
|
int? maxWidth,
|
|
|
+ int? maxHeight,
|
|
|
+ int? fillWidth,
|
|
|
+ int? fillHeight,
|
|
|
int? quality,
|
|
|
- int? width,
|
|
|
bool? addPlayedIndicator,
|
|
|
double? percentPlayed,
|
|
|
int? unplayedCount,
|
|
@@ -1880,6 +1970,8 @@ namespace Jellyfin.Api.Controllers
|
|
|
ItemId = itemId,
|
|
|
MaxHeight = maxHeight,
|
|
|
MaxWidth = maxWidth,
|
|
|
+ FillHeight = fillHeight,
|
|
|
+ FillWidth = fillWidth,
|
|
|
Quality = quality ?? 100,
|
|
|
Width = width,
|
|
|
AddPlayedIndicator = addPlayedIndicator ?? false,
|