Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/89e67b2e7faf76abaa226f6df63f837a614f6f28/Emby.Server.Implementations/Plugins/PluginManifest.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Emby.Server.Implementations/Plugins/PluginManifest.cs

61 lines
1.6 KiB

using System;
namespace Emby.Server.Implementations.Plugins
{
/// <summary>
/// Defines a Plugin manifest file.
/// </summary>
public class PluginManifest
{
/// <summary>
/// Gets or sets the category of the plugin.
5 years ago
/// </summary>
public string Category { get; set; }
/// <summary>
/// Gets or sets the changelog information.
5 years ago
/// </summary>
public string Changelog { get; set; }
/// <summary>
/// Gets or sets the description of the plugin.
5 years ago
/// </summary>
public string Description { get; set; }
/// <summary>
/// Gets or sets the Global Unique Identifier for the plugin.
5 years ago
/// </summary>
public Guid Guid { get; set; }
/// <summary>
/// Gets or sets the Name of the plugin.
5 years ago
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets an overview of the plugin.
5 years ago
/// </summary>
public string Overview { get; set; }
/// <summary>
/// Gets or sets the owner of the plugin.
5 years ago
/// </summary>
public string Owner { get; set; }
/// <summary>
/// Gets or sets the compatibility version for the plugin.
5 years ago
/// </summary>
public string TargetAbi { get; set; }
/// <summary>
/// Gets or sets the timestamp of the plugin.
5 years ago
/// </summary>
public DateTime Timestamp { get; set; }
/// <summary>
/// Gets or sets the Version number of the plugin.
5 years ago
/// </summary>
public string Version { get; set; }
}
}