mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
feat: print loaded plugins in welcome message
This commit is contained in:
parent
c59f53db2f
commit
cb1f346495
1 changed files with 5 additions and 0 deletions
|
|
@ -103,6 +103,11 @@ namespace Dalamud.Game {
|
|||
var assemblyVersion = Assembly.GetAssembly(typeof(ChatHandlers)).GetName().Version.ToString();
|
||||
|
||||
this.dalamud.Framework.Gui.Chat.Print($"XIVLauncher in-game addon v{assemblyVersion} loaded.");
|
||||
|
||||
foreach (var plugin in this.dalamud.PluginManager.Plugins) {
|
||||
this.dalamud.Framework.Gui.Chat.Print($" -> {plugin.Name} v{plugin.GetType().Assembly.GetName().Version} loaded.");
|
||||
}
|
||||
|
||||
this.hasSeenLoadingMsg = true;
|
||||
|
||||
if (string.IsNullOrEmpty(this.dalamud.Configuration.LastVersion) || !assemblyVersion.StartsWith(this.dalamud.Configuration.LastVersion)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue