🦄
This commit is contained in:
@@ -28,6 +28,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<EmbeddedResource Include="../icon.png" />
|
<EmbeddedResource Include="../icon.png" />
|
||||||
|
<EmbeddedResource Include="../horse_icon.png" />
|
||||||
<EmbeddedResource Include="Graphics\collectible_badge.png" />
|
<EmbeddedResource Include="Graphics\collectible_badge.png" />
|
||||||
<EmbeddedResource Include="Graphics\expert.png" />
|
<EmbeddedResource Include="Graphics\expert.png" />
|
||||||
<EmbeddedResource Include="Graphics\expert_badge.png" />
|
<EmbeddedResource Include="Graphics\expert_badge.png" />
|
||||||
|
|||||||
@@ -53,7 +53,11 @@ public sealed class Plugin : IDalamudPlugin
|
|||||||
Version = assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()!.InformationalVersion.Split('+')[0];
|
Version = assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()!.InformationalVersion.Split('+')[0];
|
||||||
Author = assembly.GetCustomAttribute<AssemblyCompanyAttribute>()!.Company;
|
Author = assembly.GetCustomAttribute<AssemblyCompanyAttribute>()!.Company;
|
||||||
BuildConfiguration = assembly.GetCustomAttribute<AssemblyConfigurationAttribute>()!.Configuration;
|
BuildConfiguration = assembly.GetCustomAttribute<AssemblyConfigurationAttribute>()!.Configuration;
|
||||||
Icon = IconManager.GetAssemblyTexture("icon.png");
|
var now = DateTime.Now;
|
||||||
|
if (now.Day == 1 && now.Month == 4)
|
||||||
|
Icon = IconManager.GetAssemblyTexture("horse_icon.png");
|
||||||
|
else
|
||||||
|
Icon = IconManager.GetAssemblyTexture("icon.png");
|
||||||
|
|
||||||
SettingsWindow = new();
|
SettingsWindow = new();
|
||||||
RecipeNoteWindow = new();
|
RecipeNoteWindow = new();
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 8.1 KiB |
+120
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 11 KiB |
Reference in New Issue
Block a user