|
@ -49,6 +49,12 @@ namespace IPA.Loader |
|
|
/// <value>the name of the plugin's author</value>
|
|
|
/// <value>the name of the plugin's author</value>
|
|
|
public string Author { get; private set; } |
|
|
public string Author { get; private set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The description of this plugin.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>the description of the plugin</value>
|
|
|
|
|
|
public string Description { get; private set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// The version of the plugin.
|
|
|
/// The version of the plugin.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
@ -120,6 +126,7 @@ namespace IPA.Loader |
|
|
Name = value.Name; |
|
|
Name = value.Name; |
|
|
Version = value.Version; |
|
|
Version = value.Version; |
|
|
Id = value.Id; |
|
|
Id = value.Id; |
|
|
|
|
|
Description = value.Description; |
|
|
Author = value.Author; |
|
|
Author = value.Author; |
|
|
IconName = value.IconPath; |
|
|
IconName = value.IconPath; |
|
|
PluginHomeLink = value.Links.ProjectHome; |
|
|
PluginHomeLink = value.Links.ProjectHome; |
|
|