mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-13 03:17:43 +01:00
Merge branch 'master' of github.com:goatcorp/Dalamud
This commit is contained in:
commit
4e1772023b
3 changed files with 14 additions and 2 deletions
|
|
@ -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);
|
||||
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,6 +17,10 @@ internal record LocalPluginManifest : PluginManifest
|
|||
/// </summary>
|
||||
[JsonIgnore]
|
||||
public const string FlagMainRepo = "OFFICIAL";
|
||||
|
||||
/// <summary> "DEVPLUGIN" </summary>
|
||||
[JsonIgnore]
|
||||
public const string FlagDevPlugin = "DEVPLUGIN";
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether the plugin is disabled and should not be loaded.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue