Skip to content

Commit 26a37c0

Browse files
authored
Merge pull request #548 from Flow-Launcher/new_api_branch
point pluginsmanifest to new api branch
2 parents 8d23f98 + d86d9eb commit 26a37c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Plugins/Flow.Launcher.Plugin.PluginsManager/ContextMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public List<Result> LoadContextMenus(Result selectedResult)
5050
IcoPath = "Images\\request.png",
5151
Action = _ =>
5252
{
53-
// standard UrlSourceCode format in PluginsManifest's plugins.json file: https://github.com/jjw24/WoxDictionary/tree/master
53+
// standard UrlSourceCode format in PluginsManifest's plugins.json file: https://github.com/jjw24/Flow.Launcher.Plugin.Putty/tree/master
5454
var link = pluginManifestInfo.UrlSourceCode.StartsWith("https://github.com")
5555
? pluginManifestInfo.UrlSourceCode.Replace("/tree/master", "/issues/new/choose")
5656
: pluginManifestInfo.UrlSourceCode;

Plugins/Flow.Launcher.Plugin.PluginsManager/Models/PluginsManifest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ internal async Task DownloadManifest()
1515
{
1616
try
1717
{
18-
await using var jsonStream = await Http.GetStreamAsync("https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/main/plugins.json")
18+
await using var jsonStream = await Http.GetStreamAsync("https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/plugin_api_v2/plugins.json")
1919
.ConfigureAwait(false);
2020

2121
UserPlugins = await JsonSerializer.DeserializeAsync<List<UserPlugin>>(jsonStream).ConfigureAwait(false);

0 commit comments

Comments
 (0)