Replace update message with link to changelog

...instead of pointing to Discord
This commit is contained in:
goaaats 2025-04-15 21:43:08 +02:00
parent af1eb275cf
commit cb8d9cc397
4 changed files with 36 additions and 9 deletions

View file

@ -501,6 +501,12 @@ internal class PluginInstallerWindow : Window, IDisposable
// Plugins category
this.categoryManager.CurrentCategoryKind = PluginCategoryManager.CategoryKind.All;
break;
case PluginInstallerOpenKind.DalamudChangelogs:
// Changelog group
this.categoryManager.CurrentGroupKind = PluginCategoryManager.GroupKind.Changelog;
// Dalamud category
this.categoryManager.CurrentCategoryKind = PluginCategoryManager.CategoryKind.DalamudChangelogs;
break;
default:
throw new ArgumentOutOfRangeException(nameof(kind), kind, null);
}