mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
build: v4.7.10.0
This commit is contained in:
parent
cb82c50741
commit
c490d225a0
3 changed files with 12 additions and 11 deletions
|
|
@ -14,10 +14,10 @@
|
|||
</PropertyGroup>
|
||||
<PropertyGroup Label="Feature">
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<AssemblyVersion>4.7.9.0</AssemblyVersion>
|
||||
<FileVersion>4.7.9.0</FileVersion>
|
||||
<AssemblyVersion>4.7.10.0</AssemblyVersion>
|
||||
<FileVersion>4.7.10.0</FileVersion>
|
||||
<Description>XIVLauncher addon injection</Description>
|
||||
<Version>4.7.9.0</Version>
|
||||
<Version>4.7.10.0</Version>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||
<DocumentationFile></DocumentationFile>
|
||||
|
|
|
|||
|
|
@ -14,9 +14,9 @@
|
|||
</PropertyGroup>
|
||||
<PropertyGroup Label="Feature">
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<AssemblyVersion>4.7.9.0</AssemblyVersion>
|
||||
<Version>4.7.9.0</Version>
|
||||
<FileVersion>4.7.9.0</FileVersion>
|
||||
<AssemblyVersion>4.7.10.0</AssemblyVersion>
|
||||
<Version>4.7.10.0</Version>
|
||||
<FileVersion>4.7.10.0</FileVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Label="Resources">
|
||||
<None Include="$(SolutionDir)/Resources/**/*" CopyToOutputDirectory="PreserveNewest" Visible="false" />
|
||||
|
|
|
|||
|
|
@ -84,14 +84,15 @@ namespace Dalamud.Plugin
|
|||
if (this.dalamud.Configuration.PluginConfigurations == null)
|
||||
this.dalamud.Configuration.PluginConfigurations = new Dictionary<string, object>();
|
||||
|
||||
if (this.dalamud.Configuration.PluginConfigurations.ContainsKey(this.pluginName)) {
|
||||
this.dalamud.Configuration.PluginConfigurations[this.pluginName] = currentConfig;
|
||||
return;
|
||||
}
|
||||
|
||||
if (currentConfig == null)
|
||||
return;
|
||||
|
||||
if (this.dalamud.Configuration.PluginConfigurations.ContainsKey(this.pluginName)) {
|
||||
this.dalamud.Configuration.PluginConfigurations[this.pluginName] = currentConfig;
|
||||
this.dalamud.Configuration.Save(this.dalamud.StartInfo.ConfigurationPath);
|
||||
return;
|
||||
}
|
||||
|
||||
this.dalamud.Configuration.PluginConfigurations.Add(this.pluginName, currentConfig);
|
||||
this.dalamud.Configuration.Save(this.dalamud.StartInfo.ConfigurationPath);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue