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
+5 -1
View File
@@ -53,7 +53,11 @@ public sealed class Plugin : IDalamudPlugin
Version = assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()!.InformationalVersion.Split('+')[0];
Author = assembly.GetCustomAttribute<AssemblyCompanyAttribute>()!.Company;
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();
RecipeNoteWindow = new();