mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
URL audit (#5685)
This commit is contained in:
@@ -63,7 +63,7 @@ namespace FancyZonesEditor.Models
|
||||
|
||||
public static void ShowExceptionMessageBox(string message, Exception exception = null)
|
||||
{
|
||||
string fullMessage = ErrorMessageBoxMessage + "https://github.com/microsoft/PowerToys/issues \n" + message;
|
||||
string fullMessage = ErrorMessageBoxMessage + "https://aka.ms/powerToysReportBug \n" + message;
|
||||
if (exception != null)
|
||||
{
|
||||
fullMessage += ": " + exception.Message;
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
"ID":"CEA0FDFC6D3B4085823D60DC76F28855",
|
||||
"ActionKeyword":"*",
|
||||
"Name":"Calculator",
|
||||
"Description":"Provide mathematical calculations.(Try 5*3-2 in Wox)",
|
||||
"Description":"Provide mathematical calculations.(Try 5*3-2 in PowerToys)",
|
||||
"Author":"cxfksword",
|
||||
"Version":"1.0.0",
|
||||
"Language":"csharp",
|
||||
"Website":"http://www.wox.one/plugin",
|
||||
"Website":"https://aka.ms/powertoys",
|
||||
"ExecuteFileName":"Microsoft.Plugin.Calculator.dll",
|
||||
"IcoPath":"Images\\calculator.dark.png"
|
||||
}
|
||||
@@ -2,11 +2,11 @@
|
||||
"ID":"B4D3B69656E14D44865C8D818EAE47C4",
|
||||
"ActionKeyword":"*",
|
||||
"Name":"Folder",
|
||||
"Description":"Open favorite folder from wox directly",
|
||||
"Description":"Searcn and open folders",
|
||||
"Author":"qianlifeng",
|
||||
"Version":"1.0.0",
|
||||
"Language":"csharp",
|
||||
"Website":"http://www.wox.one/plugin",
|
||||
"Website":"https://aka.ms/powertoys",
|
||||
"ExecuteFileName":"Microsoft.Plugin.Folder.dll",
|
||||
"IcoPath":"Images\\folder.dark.png"
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"Author": "Microsoft",
|
||||
"Version": "1.0.0",
|
||||
"Language": "csharp",
|
||||
"Website": "http://aka.ms/PowerToys",
|
||||
"Website": "https://aka.ms/PowerToys",
|
||||
"ExecuteFileName": "Microsoft.Plugin.Indexer.dll",
|
||||
"IcoPath": "Images\\indexer.dark.png"
|
||||
}
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
"ID":"791FC278BA414111B8D1886DFE447410",
|
||||
"ActionKeyword":"*",
|
||||
"Name":"Program",
|
||||
"Description":"Search programs in Wox",
|
||||
"Description":"Search for programs",
|
||||
"Author":"qianlifeng",
|
||||
"Version":"1.0.0",
|
||||
"Language":"csharp",
|
||||
"Website":"http://www.wox.one/plugin",
|
||||
"Website":"https://aka.ms/PowerToys",
|
||||
"ExecuteFileName":"Microsoft.Plugin.Program.dll",
|
||||
"IcoPath":"Images\\app.dark.png"
|
||||
}
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
"ID":"D409510CD0D2481F853690A07E6DC426",
|
||||
"ActionKeyword":">",
|
||||
"Name":"Shell",
|
||||
"Description":"Provide executing commands from Wox. Commands should start with >",
|
||||
"Description":"Provide executing commands. Commands should start with >",
|
||||
"Author":"qianlifeng",
|
||||
"Version":"1.0.0",
|
||||
"Language":"csharp",
|
||||
"Website":"http://www.wox.one/plugin",
|
||||
"Website":"https://aka.ms/powertoys",
|
||||
"ExecuteFileName":"Microsoft.Plugin.Shell.dll",
|
||||
"IcoPath":"Images\\shell.dark.png"
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"Author":"betadele",
|
||||
"Version":"1.0.0",
|
||||
"Language":"csharp",
|
||||
"Website":"http://www.windowwalker.com/",
|
||||
"Website":"https://www.windowwalker.com/",
|
||||
"ExecuteFileName":"Microsoft.Plugin.WindowWalker.dll",
|
||||
"IcoPath":"Images\\windowwalker.dark.png"
|
||||
}
|
||||
@@ -25,7 +25,7 @@ namespace PowerLauncher.Properties {
|
||||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("https://github.com/Wox-launcher/Wox")]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("https://aka.ms/powerToys")]
|
||||
public string GithubRepo {
|
||||
get {
|
||||
return ((string)(this["GithubRepo"]));
|
||||
|
||||
@@ -184,7 +184,7 @@ namespace PowerLauncher.ViewModel
|
||||
|
||||
StartHelpCommand = new RelayCommand(_ =>
|
||||
{
|
||||
Process.Start("http://doc.wox.one/");
|
||||
Process.Start("https://aka.ms/PowerToys/");
|
||||
});
|
||||
|
||||
OpenResultCommand = new RelayCommand(index =>
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace Wox.Infrastructure
|
||||
public static readonly string DataDirectory = DetermineDataDirectory();
|
||||
public static readonly string PluginsDirectory = Path.Combine(DataDirectory, Plugins);
|
||||
public static readonly string PreinstalledDirectory = Path.Combine(ProgramDirectory, Plugins);
|
||||
public const string Issue = "https://github.com/microsoft/PowerToys/issues";
|
||||
public const string Issue = "https://aka.ms/powerToysReportBug";
|
||||
public static readonly string Version = FileVersionInfo.GetVersionInfo(Assembly.Location.NonNull()).ProductVersion;
|
||||
|
||||
public static readonly int ThumbnailSize = 64;
|
||||
|
||||
Reference in New Issue
Block a user