mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-27 19:08:27 +01:00
Remove support for games as a media type
This commit is contained in:
@@ -16,8 +16,6 @@ namespace MediaBrowser.Model.Channels
|
||||
|
||||
MovieExtra = 6,
|
||||
|
||||
TvExtra = 7,
|
||||
|
||||
GameExtra = 8
|
||||
TvExtra = 7
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,6 @@ namespace MediaBrowser.Model.Configuration
|
||||
Trailer,
|
||||
Series,
|
||||
Music,
|
||||
Game,
|
||||
Book,
|
||||
LiveTvChannel,
|
||||
LiveTvProgram,
|
||||
|
||||
@@ -116,16 +116,8 @@ namespace MediaBrowser.Model.Dto
|
||||
/// <value>The critic rating.</value>
|
||||
public float? CriticRating { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the game system.
|
||||
/// </summary>
|
||||
/// <value>The game system.</value>
|
||||
public string GameSystem { get; set; }
|
||||
|
||||
public string[] ProductionLocations { get; set; }
|
||||
|
||||
public string[] MultiPartGameFiles { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the path.
|
||||
/// </summary>
|
||||
@@ -604,11 +596,6 @@ namespace MediaBrowser.Model.Dto
|
||||
/// <value>The episode count.</value>
|
||||
public int? EpisodeCount { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the game count.
|
||||
/// </summary>
|
||||
/// <value>The game count.</value>
|
||||
public int? GameCount { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the song count.
|
||||
/// </summary>
|
||||
/// <value>The song count.</value>
|
||||
|
||||
@@ -1,48 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// Class GameSystemSummary
|
||||
/// </summary>
|
||||
public class GameSystemSummary
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
public string DisplayName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the game count.
|
||||
/// </summary>
|
||||
/// <value>The game count.</value>
|
||||
public int GameCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the game extensions.
|
||||
/// </summary>
|
||||
/// <value>The game extensions.</value>
|
||||
public string[] GameFileExtensions { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the client installed game count.
|
||||
/// </summary>
|
||||
/// <value>The client installed game count.</value>
|
||||
public int ClientInstalledGameCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="GameSystemSummary"/> class.
|
||||
/// </summary>
|
||||
public GameSystemSummary()
|
||||
{
|
||||
GameFileExtensions = Array.Empty<string>();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -20,19 +20,9 @@ namespace MediaBrowser.Model.Dto
|
||||
/// </summary>
|
||||
/// <value>The episode count.</value>
|
||||
public int EpisodeCount { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the game count.
|
||||
/// </summary>
|
||||
/// <value>The game count.</value>
|
||||
public int GameCount { get; set; }
|
||||
public int ArtistCount { get; set; }
|
||||
public int ProgramCount { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the game system count.
|
||||
/// </summary>
|
||||
/// <value>The game system count.</value>
|
||||
public int GameSystemCount { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the trailer count.
|
||||
/// </summary>
|
||||
/// <value>The trailer count.</value>
|
||||
|
||||
@@ -18,7 +18,6 @@ namespace MediaBrowser.Model.Entities
|
||||
|
||||
public const string Books = "books";
|
||||
public const string Photos = "photos";
|
||||
public const string Games = "games";
|
||||
public const string LiveTv = "livetv";
|
||||
public const string Playlists = "playlists";
|
||||
public const string Folders = "folders";
|
||||
|
||||
@@ -14,10 +14,6 @@ namespace MediaBrowser.Model.Entities
|
||||
/// </summary>
|
||||
public const string Audio = "Audio";
|
||||
/// <summary>
|
||||
/// The game
|
||||
/// </summary>
|
||||
public const string Game = "Game";
|
||||
/// <summary>
|
||||
/// The photo
|
||||
/// </summary>
|
||||
public const string Photo = "Photo";
|
||||
|
||||
@@ -5,7 +5,6 @@ namespace MediaBrowser.Model.Entities
|
||||
/// </summary>
|
||||
public enum MetadataProviders
|
||||
{
|
||||
Gamesdb = 1,
|
||||
/// <summary>
|
||||
/// The imdb
|
||||
/// </summary>
|
||||
|
||||
@@ -5,10 +5,8 @@ namespace MediaBrowser.Model.Notifications
|
||||
ApplicationUpdateAvailable,
|
||||
ApplicationUpdateInstalled,
|
||||
AudioPlayback,
|
||||
GamePlayback,
|
||||
VideoPlayback,
|
||||
AudioPlaybackStopped,
|
||||
GamePlaybackStopped,
|
||||
VideoPlaybackStopped,
|
||||
InstallationFailed,
|
||||
PluginError,
|
||||
|
||||
@@ -30,8 +30,6 @@ namespace MediaBrowser.Model.Providers
|
||||
public string ImageUrl { get; set; }
|
||||
|
||||
public string SearchProviderName { get; set; }
|
||||
|
||||
public string GameSystem { get; set; }
|
||||
public string Overview { get; set; }
|
||||
|
||||
public RemoteSearchResult AlbumArtist { get; set; }
|
||||
|
||||
@@ -71,8 +71,6 @@ namespace MediaBrowser.Model.Querying
|
||||
public const string VideoBitRate = "VideoBitRate";
|
||||
public const string AirTime = "AirTime";
|
||||
public const string Studio = "Studio";
|
||||
public const string Players = "Players";
|
||||
public const string GameSystem = "GameSystem";
|
||||
public const string IsFavoriteOrLiked = "IsFavoriteOrLiked";
|
||||
public const string DateLastContentAdded = "DateLastContentAdded";
|
||||
public const string SeriesDatePlayed = "SeriesDatePlayed";
|
||||
|
||||
Reference in New Issue
Block a user