mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 12:23:39 +01:00
deps: upgrade System.Drawing.Common to 6.0.0
This commit is contained in:
parent
4e1772023b
commit
bc898e0fce
4 changed files with 7 additions and 5 deletions
|
|
@ -95,7 +95,7 @@ public sealed class DalamudPluginInterface : IDisposable
|
|||
/// Gets the reason this plugin was loaded.
|
||||
/// </summary>
|
||||
public PluginLoadReason Reason { get; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets the custom repository from which this plugin is installed, <inheritdoc cref="LocalPluginManifest.FlagMainRepo"/>, or <inheritdoc cref="LocalPluginManifest.FlagDevPlugin"/>.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -401,7 +401,7 @@ internal class LocalPlugin : IDisposable
|
|||
new PluginPatchData(this.DllFile);
|
||||
|
||||
this.DalamudInterface =
|
||||
new DalamudPluginInterface(this.pluginAssembly.GetName().Name!, this.DllFile, reason, this.IsDev, this.Manifest.InstalledFromUrl );
|
||||
new DalamudPluginInterface(this.pluginAssembly.GetName().Name!, this.DllFile, reason, this.IsDev, this.Manifest.InstalledFromUrl);
|
||||
|
||||
if (this.Manifest.LoadSync && this.Manifest.LoadRequiredState is 0 or 1)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -17,8 +17,10 @@ internal record LocalPluginManifest : PluginManifest
|
|||
/// </summary>
|
||||
[JsonIgnore]
|
||||
public const string FlagMainRepo = "OFFICIAL";
|
||||
|
||||
/// <summary> "DEVPLUGIN" </summary>
|
||||
|
||||
/// <summary>
|
||||
/// Flag indicating that a plugin is a dev plugin..
|
||||
/// </summary>
|
||||
[JsonIgnore]
|
||||
public const string FlagDevPlugin = "DEVPLUGIN";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue