diff --git a/.github/README.md b/.github/README.md index f83d2b7..41d4db6 100644 --- a/.github/README.md +++ b/.github/README.md @@ -15,8 +15,8 @@ EverythingPowerToys (EPT) is a plugin for the program [PowerToys Run (PTR)](https://learn.microsoft.com/en-us/windows/powertoys/run)
This adds the ability to search the computer for files and folders using [Everything](https://www.voidtools.com/) inside PTR -#### Install instructions -There are 4 different methods of installation, chose the one you prefer: +#### Install Methods +Chose the one you prefer: 1) Chocolatey 2) Scoop 3) WinGet diff --git a/Community.PowerToys.Run.Plugin.Everything.csproj b/Community.PowerToys.Run.Plugin.Everything.csproj index 6b011c3..b836640 100644 --- a/Community.PowerToys.Run.Plugin.Everything.csproj +++ b/Community.PowerToys.Run.Plugin.Everything.csproj @@ -10,7 +10,7 @@ Community.PowerToys.Run.Plugin.Everything $([System.IO.File]::ReadAllText('$(MSBuildThisFileDirectory)plugin.json').Split(',')[5].Split(':')[1].Trim().Trim('"')) - true + false false true diff --git a/ContextMenu/ContextMenuLoader.cs b/ContextMenu/ContextMenuLoader.cs index 4823f2d..677eb64 100644 --- a/ContextMenu/ContextMenuLoader.cs +++ b/ContextMenu/ContextMenuLoader.cs @@ -19,6 +19,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu internal sealed class ContextMenuLoader(PluginInitContext context, string options) : IContextMenu { private readonly PluginInitContext _context = context; + private readonly string font = "Segoe Fluent Icons,Segoe MDL2 Assets"; // Extensions for adding run as admin context menu item for applications private readonly string[] _appExtensions = [".exe", ".bat", ".appref-ms", ".lnk"]; @@ -54,7 +55,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu PluginName = Assembly.GetExecutingAssembly().GetName().Name, Title = Resources.open_containing_folder, Glyph = "\xE838", - FontFamily = "Segoe MDL2 Assets", + FontFamily = font, AcceleratorKey = Key.E, AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift, Action = _ => @@ -83,7 +84,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu PluginName = Assembly.GetExecutingAssembly().GetName().Name, Title = Resources.run_as_admin, Glyph = "\xE7EF", - FontFamily = "Segoe MDL2 Assets", + FontFamily = font, AcceleratorKey = Key.Enter, AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift, Action = _ => @@ -113,7 +114,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu PluginName = Assembly.GetExecutingAssembly().GetName().Name, Title = Resources.run_as_user, Glyph = "\xE7EE", - FontFamily = "Segoe MDL2 Assets", + FontFamily = font, AcceleratorKey = Key.U, AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift, Action = _ => @@ -141,7 +142,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu PluginName = Assembly.GetExecutingAssembly().GetName().Name, Title = Resources.copy_file + (_swapCopy ? Resources.copy_shortcut : Resources.copy_shortcutAlt), Glyph = "\xE8C8", - FontFamily = "Segoe MDL2 Assets", + FontFamily = font, AcceleratorKey = Key.C, AcceleratorModifiers = _swapCopy ? ModifierKeys.Control : ModifierKeys.Control | ModifierKeys.Alt, @@ -171,7 +172,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu PluginName = Assembly.GetExecutingAssembly().GetName().Name, Title = Resources.copy_path + (_swapCopy ? Resources.copy_shortcutAlt : Resources.copy_shortcut), Glyph = "\xE71B", - FontFamily = "Segoe MDL2 Assets", + FontFamily = font, AcceleratorKey = Key.C, AcceleratorModifiers = _swapCopy ? ModifierKeys.Control | ModifierKeys.Alt : ModifierKeys.Control, @@ -201,7 +202,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu PluginName = Assembly.GetExecutingAssembly().GetName().Name, Title = Resources.open_in_console, Glyph = "\xE756", - FontFamily = "Segoe MDL2 Assets", + FontFamily = font, AcceleratorKey = Key.C, AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift, @@ -232,7 +233,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu PluginName = Assembly.GetExecutingAssembly().GetName().Name, Title = Resources.open_in_custom, Glyph = "\xE8A7", - FontFamily = "Segoe MDL2 Assets", + FontFamily = font, AcceleratorKey = Key.N, AcceleratorModifiers = ModifierKeys.Control, @@ -262,7 +263,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu PluginName = Assembly.GetExecutingAssembly().GetName().Name, Title = Resources.delete_result, Glyph = "\xE74D", - FontFamily = "Segoe MDL2 Assets", + FontFamily = font, AcceleratorKey = Key.Delete, AcceleratorModifiers = ModifierKeys.Control, Action = (context) => @@ -290,7 +291,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu PluginName = Assembly.GetExecutingAssembly().GetName().Name, Title = Resources.scm, Glyph = "\xE712", - FontFamily = "Segoe MDL2 Assets", + FontFamily = font, AcceleratorKey = Key.M, AcceleratorModifiers = ModifierKeys.Control, Action = (context) => diff --git a/plugin.json b/plugin.json index a96a340..8616993 100644 --- a/plugin.json +++ b/plugin.json @@ -4,7 +4,7 @@ "IsGlobal": true, "Name": "Everything", "Author": "Yu Chieh (Victor) Lin", - "Version": "0.88.0", + "Version": "0.89.0", "Language": "csharp", "Website": "https://github.com/Lin-ycv/EverythingPowerToys", "ExecuteFileName": "Community.PowerToys.Run.Plugin.Everything.dll",