From 4bbba20927c8866849946665436f05b32d39be20 Mon Sep 17 00:00:00 2001 From: goat Date: Wed, 17 Jul 2024 16:47:01 +0200 Subject: [PATCH] pi: only show update message if we aren't on the release track --- .../Internal/Windows/PluginInstaller/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs index 08ec43cb2..52950b520 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs @@ -304,7 +304,7 @@ internal class PluginInstallerWindow : Window, IDisposable return; var versionInfo = t.Result; - if (versionInfo.AssemblyVersion != Util.GetGitHash()) + if (versionInfo.AssemblyVersion != Util.GetGitHash() && versionInfo.Track != "release") this.staleDalamudNewVersion = versionInfo.AssemblyVersion; }); }