This commit is contained in:
Asriel Camora
2024-03-23 00:24:50 -07:00
parent 895e2a4460
commit 5ea39225fb
4 changed files with 126 additions and 1 deletions
+1
View File
@@ -28,6 +28,7 @@
<ItemGroup>
<EmbeddedResource Include="../icon.png" />
<EmbeddedResource Include="../horse_icon.png" />
<EmbeddedResource Include="Graphics\collectible_badge.png" />
<EmbeddedResource Include="Graphics\expert.png" />
<EmbeddedResource Include="Graphics\expert_badge.png" />
+4
View File
@@ -53,6 +53,10 @@ public sealed class Plugin : IDalamudPlugin
Version = assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()!.InformationalVersion.Split('+')[0];
Author = assembly.GetCustomAttribute<AssemblyCompanyAttribute>()!.Company;
BuildConfiguration = assembly.GetCustomAttribute<AssemblyConfigurationAttribute>()!.Configuration;
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();
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

+120
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB