File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Flow.Launcher.Infrastructure
Plugins/Flow.Launcher.Plugin.PluginsManager Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public static class Constant
19
19
public static readonly string RootDirectory = Directory . GetParent ( ApplicationDirectory ) . ToString ( ) ;
20
20
21
21
public static readonly string PreinstalledDirectory = Path . Combine ( ProgramDirectory , Plugins ) ;
22
- public const string Issue = "https://github.com/Flow-Launcher/Flow.Launcher/issues/new/choose " ;
22
+ public const string Issue = "https://github.com/Flow-Launcher/Flow.Launcher/issues" ;
23
23
public static readonly string Version = FileVersionInfo . GetVersionInfo ( Assembly . Location . NonNull ( ) ) . ProductVersion ;
24
24
public static readonly string Dev = "Dev" ;
25
25
public const string Documentation = "https://flowlauncher.com/docs/#/usage-tips" ;
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ private static string GetIssueUrl(string website)
34
34
return Constant . Issue ;
35
35
}
36
36
var treeIndex = website . IndexOf ( "tree" , StringComparison . Ordinal ) ;
37
- return treeIndex == - 1 ? $ "{ website } /issues/new " : $ "{ website [ ..treeIndex ] } /issues/new ";
37
+ return treeIndex == - 1 ? $ "{ website } /issues" : $ "{ website [ ..treeIndex ] } /issues";
38
38
}
39
39
40
40
private void SetException ( Exception exception )
@@ -86,4 +86,4 @@ private Paragraph Hyperlink(string textBeforeUrl, string url)
86
86
return paragraph ;
87
87
}
88
88
}
89
- }
89
+ }
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public List<Result> LoadContextMenus(Result selectedResult)
53
53
{
54
54
// standard UrlSourceCode format in PluginsManifest's plugins.json file: https://github.com/jjw24/Flow.Launcher.Plugin.Putty/tree/master
55
55
var link = pluginManifestInfo . UrlSourceCode . StartsWith ( "https://github.com" )
56
- ? Regex . Replace ( pluginManifestInfo . UrlSourceCode , @"\/tree\/\w+$" , "" ) + "/issues/new/choose "
56
+ ? Regex . Replace ( pluginManifestInfo . UrlSourceCode , @"\/tree\/\w+$" , "" ) + "/issues"
57
57
: pluginManifestInfo . UrlSourceCode ;
58
58
59
59
Context . API . OpenUrl ( link ) ;
You can’t perform that action at this time.
0 commit comments