This commit is contained in:
Clint Rutkas
2020-08-06 10:09:50 -07:00
committed by GitHub
parent f50a8e5252
commit 0f90af3c7d
20 changed files with 29 additions and 29 deletions

View File

@@ -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;

View File

@@ -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"
}

View File

@@ -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"
}

View File

@@ -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"
}

View File

@@ -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"
}

View File

@@ -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"
}

View File

@@ -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"
}

View File

@@ -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"]));

View File

@@ -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 =>

View File

@@ -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;