Implement plugin browser and downloader

This commit is contained in:
Brant Martin
2019-03-02 11:42:08 -05:00
parent 295bbd62b8
commit 651865f28a
9 changed files with 405 additions and 2 deletions

View File

@@ -71,5 +71,11 @@ namespace Torch.Server.Views
if (_plugins?.PluginDir != null)
Process.Start(_plugins.PluginDir);
}
private void BrowsPlugins_OnClick(object sender, RoutedEventArgs e)
{
var browser = new PluginBrowser();
browser.Show();
}
}
}