diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index 07b86c7fa..8759aa5e0 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -1462,7 +1462,11 @@ namespace Dalamud.Interface.Internal.Windows this.DrawUpdateSinglePluginButton(availablePluginUpdate); ImGui.SameLine(); - ImGui.TextColored(ImGuiColors.DalamudGrey3, $" v{plugin.Manifest.AssemblyVersion}"); + var version = plugin.AssemblyName?.Version; + version ??= plugin.Manifest.Testing + ? plugin.Manifest.TestingAssemblyVersion + : plugin.Manifest.AssemblyVersion; + ImGui.TextColored(ImGuiColors.DalamudGrey3, $" v{version}"); if (plugin.IsDev) {