Class PluginDefinition
Inheritance
Inherited Members
Namespace: Dalamud.Plugin
Assembly: Dalamud.dll
Syntax
public class PluginDefinition
Properties
| Improve this Doc View SourceApplicableVersion
The version of the game this plugin works with.
Declaration
public string ApplicableVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
AssemblyVersion
The current assembly version of the plugin.
Declaration
public string AssemblyVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Author
The author/s of the plugin.
Declaration
public string Author { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
DalamudApiLevel
The API level of this plugin. For the current API level, please see Dalamud.Plugin.PluginManager.DALAMUD_API_LEVEL for the currently used API level.
Declaration
public int DalamudApiLevel { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Description
A description of the plugins functions.
Declaration
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
DownloadCount
The number of downloads this plugin has.
Declaration
public long DownloadCount { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int64 |
DownloadLinkInstall
Download link used to install the plugin.
Declaration
public string DownloadLinkInstall { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
DownloadLinkTesting
Download link used to get testing versions of the plugin.
Declaration
public string DownloadLinkTesting { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
DownloadLinkUpdate
Download link used to update the plugin.
Declaration
public string DownloadLinkUpdate { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
FromRepo
Domain of the origin repo
Declaration
public string FromRepo { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
InternalName
The internal name of the plugin, which should match the assembly name of the plugin.
Declaration
public string InternalName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
IsHide
Whether or not the plugin is hidden in the plugin installer.
Declaration
public bool IsHide { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
IsTestingExclusive
Defines if the plugin is only available for testing.
Declaration
public bool IsTestingExclusive { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
LastUpdate
The last time this plugin was updated.
Declaration
public long LastUpdate { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int64 |
LoadPriority
Load priority for this plugin. Higher values means higher priority. 0 is default priority.
Declaration
public int LoadPriority { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Name
The public name of the plugin.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
RepoUrl
An URL to the website or source code of the plugin.
Declaration
public string RepoUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Tags
List of tags defined on the plugin.
Declaration
public List<string> Tags { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<System.String> |
TestingAssemblyVersion
The current testing assembly version of the plugin.
Declaration
public string TestingAssemblyVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |