|
@ -42,6 +42,12 @@ namespace IPA.Loader |
|
|
/// <value>the updater ID of the plugin</value>
|
|
|
/// <value>the updater ID of the plugin</value>
|
|
|
public string Id { get; internal set; } |
|
|
public string Id { get; internal set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The name of the author that wrote this plugin.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>the name of the plugin's author</value>
|
|
|
|
|
|
public string Author { get; internal set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// The version of the plugin.
|
|
|
/// The version of the plugin.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
@ -90,6 +96,7 @@ namespace IPA.Loader |
|
|
Name = value.Name; |
|
|
Name = value.Name; |
|
|
Version = value.Version; |
|
|
Version = value.Version; |
|
|
Id = value.Id; |
|
|
Id = value.Id; |
|
|
|
|
|
Author = value.Author; |
|
|
AssociatedFiles = value.Files |
|
|
AssociatedFiles = value.Files |
|
|
.Select(f => Path.Combine(UnityGame.InstallPath, f)) |
|
|
.Select(f => Path.Combine(UnityGame.InstallPath, f)) |
|
|
.Select(p => new FileInfo(p)).ToList(); |
|
|
.Select(p => new FileInfo(p)).ToList(); |
|
|