diff --git a/Dalamud/Plugin/PluginInstallerWindow.cs b/Dalamud/Plugin/PluginInstallerWindow.cs index a82dd16fb..ce9484d8c 100644 --- a/Dalamud/Plugin/PluginInstallerWindow.cs +++ b/Dalamud/Plugin/PluginInstallerWindow.cs @@ -125,6 +125,17 @@ namespace Dalamud.Plugin }); } } + if (!string.IsNullOrEmpty(pluginDefinition.RepoUrl)) + { + ImGui.PushFont(InterfaceManager.IconFont); + + ImGui.SameLine(); + if (ImGui.Button(FontAwesomeIcon.Globe.ToIconString()) && + pluginDefinition.RepoUrl.StartsWith("https://")) + Process.Start(pluginDefinition.Definition.RepoUrl); + + ImGui.PopFont(); + } } else { var installedPlugin = this.dalamud.PluginManager.Plugins.Where(x => x.Definition != null).First( x => x.Definition.InternalName ==