Merge remote-tracking branch 'jellyfinorigin/master' into feature/pgsql_provider

This commit is contained in:
JPVenson
2025-02-02 02:09:14 +00:00
126 changed files with 336 additions and 386 deletions

View File

@@ -3,7 +3,7 @@ using System;
namespace Jellyfin.Data.Entities;
/// <summary>
/// Represents the relational informations for an <see cref="BaseItemEntity"/>.
/// Represents the relational information for an <see cref="BaseItemEntity"/>.
/// </summary>
public class AncestorId
{

View File

@@ -3,7 +3,7 @@ using System;
namespace Jellyfin.Data.Entities;
/// <summary>
/// Provides informations about an Attachment to an <see cref="BaseItemEntity"/>.
/// Provides information about an Attachment to an <see cref="BaseItemEntity"/>.
/// </summary>
public class AttachmentStreamInfo
{
@@ -18,7 +18,7 @@ public class AttachmentStreamInfo
public required BaseItemEntity Item { get; set; }
/// <summary>
/// Gets or Sets The index within the source file.
/// Gets or Sets the index within the source file.
/// </summary>
public required int Index { get; set; }

View File

@@ -8,7 +8,7 @@ namespace Jellyfin.Data.Entities;
public class BaseItemMetadataField
{
/// <summary>
/// Gets or Sets Numerical ID of this enumeratable.
/// Gets or Sets Numerical ID of this enumerable.
/// </summary>
public required int Id { get; set; }

View File

@@ -8,7 +8,7 @@ namespace Jellyfin.Data.Entities;
public class BaseItemTrailerType
{
/// <summary>
/// Gets or Sets Numerical ID of this enumeratable.
/// Gets or Sets Numerical ID of this enumerable.
/// </summary>
public required int Id { get; set; }

View File

@@ -24,7 +24,7 @@ public class ItemValue
public required string Value { get; set; }
/// <summary>
/// Gets or Sets the sanatised Value.
/// Gets or Sets the sanitized Value.
/// </summary>
public required string CleanValue { get; set; }

View File

@@ -43,7 +43,7 @@ namespace Jellyfin.Data.Entities.Libraries
/// Gets or sets the next item in the collection.
/// </summary>
/// <remarks>
/// TODO check if this properly updated Dependant and has the proper principal relationship.
/// TODO check if this properly updated Dependent and has the proper principal relationship.
/// </remarks>
public virtual CollectionItem? Next { get; set; }
@@ -51,7 +51,7 @@ namespace Jellyfin.Data.Entities.Libraries
/// Gets or sets the previous item in the collection.
/// </summary>
/// <remarks>
/// TODO check if this properly updated Dependant and has the proper principal relationship.
/// TODO check if this properly updated Dependent and has the proper principal relationship.
/// </remarks>
public virtual CollectionItem? Previous { get; set; }

View File

@@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a a series.
/// An entity representing a series.
/// </summary>
public class Series : LibraryItem
{

View File

@@ -18,7 +18,7 @@ public class PeopleBaseItemMap
public int? ListOrder { get; set; }
/// <summary>
/// Gets or Sets the Role name the assosiated actor played in the <see cref="BaseItemEntity"/>.
/// Gets or Sets the Role name the associated actor played in the <see cref="BaseItemEntity"/>.
/// </summary>
public string? Role { get; set; }

View File

@@ -11,7 +11,7 @@ public enum ProgramAudioEntity
Mono = 0,
/// <summary>
/// Sterio.
/// Stereo.
/// </summary>
Stereo = 1,

View File

@@ -66,7 +66,7 @@ public class TrickplayInfo
public int Interval { get; set; }
/// <summary>
/// Gets or sets peak bandwith usage in bits per second.
/// Gets or sets peak bandwidth usage in bits per second.
/// </summary>
/// <remarks>
/// Required.

View File

@@ -269,7 +269,7 @@ public class JellyfinDbContext(DbContextOptions<JellyfinDbContext> options, ILog
jellyfinDatabaseProvider.OnModelCreating(modelBuilder);
base.OnModelCreating(modelBuilder);
// Configuration for each entity is in it's own class inside 'ModelConfiguration'.
// Configuration for each entity is in its own class inside 'ModelConfiguration'.
modelBuilder.ApplyConfigurationsFromAssembly(typeof(JellyfinDbContext).Assembly);
}
}