Browse Source

Added Author field to PluginMetadata

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
f47e326677
2 changed files with 7 additions and 0 deletions
  1. +7
    -0
      IPA.Loader/Loader/PluginMetadata.cs
  2. BIN
      Refs/UnityEngine.CoreModule.Net4.dll

+ 7
- 0
IPA.Loader/Loader/PluginMetadata.cs View File

@ -42,6 +42,12 @@ namespace IPA.Loader
/// <value>the updater ID of the plugin</value>
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>
/// The version of the plugin.
/// </summary>
@ -90,6 +96,7 @@ namespace IPA.Loader
Name = value.Name;
Version = value.Version;
Id = value.Id;
Author = value.Author;
AssociatedFiles = value.Files
.Select(f => Path.Combine(UnityGame.InstallPath, f))
.Select(p => new FileInfo(p)).ToList();


BIN
Refs/UnityEngine.CoreModule.Net4.dll View File


Loading…
Cancel
Save