for v0.88.0 release

This commit is contained in:
Lin Yu-Chieh (Victor) 2025-01-29 17:57:29 +08:00
parent 16f051bf82
commit 37d1878184
13 changed files with 48 additions and 156 deletions

View File

@ -80,27 +80,13 @@
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.es-es.resx">
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.de-de.resx">
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.zh-cn.resx">
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.zh-tw.resx">
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="lib\Everything64.dll">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="lib\EverythingARM64.dll">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Images\Everything.dark.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>

View File

@ -1,99 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Community.PowerToys.Run.Plugin.Everything</name>
</assembly>
<members>
<member name="T:Community.PowerToys.Run.Plugin.Everything.Properties.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.clipboard_failed">
<summary>
Looks up a localized string similar to Fail to set text in clipboard.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.copy_path">
<summary>
Looks up a localized string similar to Copy path (Ctrl+C).
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.enable_wait">
<summary>
Looks up a localized string similar to Enable Wait setting under PowerToys Run &gt; Everything.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.Everything_ini">
<summary>
Looks up a localized string similar to Install Everything if not installed.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.Everything_not_running">
<summary>
Looks up a localized string similar to Everything is not running.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.folder_open_failed">
<summary>
Looks up a localized string similar to Fail to open folder at.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.open_containing_folder">
<summary>
Looks up a localized string similar to Open containing folder (Ctrl+Shift+E).
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.open_in_console">
<summary>
Looks up a localized string similar to Open path in console (Ctrl+Shift+C).
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.plugin_description">
<summary>
Looks up a localized string similar to Get search results from Everything.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.plugin_name">
<summary>
Looks up a localized string similar to Everything.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.Preview">
<summary>
Looks up a localized string similar to Preview - Preview file content as icon, may cause freezing if file is not local..
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.run_as_admin">
<summary>
Looks up a localized string similar to Run as administrator (Ctrl+Shift+Enter).
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.timeout">
<summary>
Looks up a localized string similar to Timed out before finishing the query.
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.Top">
<summary>
Looks up a localized string similar to Top - Insert result at the top of the list, may cause pre-selection issue..
</summary>
</member>
<member name="P:Community.PowerToys.Run.Plugin.Everything.Properties.Resources.Wait">
<summary>
Looks up a localized string similar to Wait - Wait longer for the query to finish, enable only if prompted to..
</summary>
</member>
</members>
</doc>

View File

@ -6,6 +6,7 @@ using System.Reflection;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using Community.PowerToys.Run.Plugin.Everything.Interop;
using Community.PowerToys.Run.Plugin.Everything.Properties;
using Community.PowerToys.Run.Plugin.Everything.SearchHelper;
using Wox.Infrastructure;
@ -62,9 +63,11 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
{
var message = $"{Resources.folder_open_failed} {Path.GetDirectoryName(record.Path)}";
_context.API.ShowMsg(message);
Log.Exception($"EPT: Failed to open folder {Path.GetDirectoryName(record.Path)}", new IOException(), GetType());
return false;
}
NativeMethods.Everything_IncRunCountFromFileNameW(record.Path);
return true;
},
});
@ -88,11 +91,12 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
try
{
Task.Run(() => Helper.RunAsAdmin(record.Path));
NativeMethods.Everything_IncRunCountFromFileNameW(record.Path);
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to run {record.Path} as admin, {e.Message}", e, MethodBase.GetCurrentMethod().DeclaringType);
Log.Exception($"EPT: Failed to run {record.Path} as admin", e, GetType());
return false;
}
},
@ -117,11 +121,12 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
try
{
Task.Run(() => Helper.RunAsUser(record.Path));
NativeMethods.Everything_IncRunCountFromFileNameW(record.Path);
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to run {record.Path} as different user, {e.Message}", e, MethodBase.GetCurrentMethod().DeclaringType);
Log.Exception($"EPT: Failed to run {record.Path} as different user", e, GetType());
return false;
}
},
@ -145,12 +150,13 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
try
{
Clipboard.SetData(DataFormats.FileDrop, new string[] { record.Path });
NativeMethods.Everything_IncRunCountFromFileNameW(record.Path);
return true;
}
catch (Exception e)
{
var message = Resources.clipboard_failed;
Log.Exception(message, e, GetType());
Log.Exception($"ETP3: Failed to copy {(_swapCopy ? "file" : "path")} ({record.Path}) to clipboard", e, GetType());
_context.API.ShowMsg(message);
return false;
@ -174,12 +180,13 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
try
{
Clipboard.SetDataObject(record.Path);
NativeMethods.Everything_IncRunCountFromFileNameW(record.Path);
return true;
}
catch (Exception e)
{
var message = Resources.clipboard_failed;
Log.Exception(message, e, GetType());
Log.Exception($"ETP3: Failed to copy {(_swapCopy ? "file" : "path")} ({record.Path}) to clipboard", e, GetType());
_context.API.ShowMsg(message);
return false;
@ -203,19 +210,16 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
try
{
if (isFile)
{
Helper.OpenInConsole(Path.GetDirectoryName(record.Path));
}
else
{
Helper.OpenInConsole(record.Path);
}
NativeMethods.Everything_IncRunCountFromFileNameW(record.Path);
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to open {record.Path} in console, {e.Message}", e, GetType());
Log.Exception($"EPT: Failed to open {record.Path} in console", e, GetType());
return false;
}
},
@ -240,11 +244,12 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
try
{
process.Start();
NativeMethods.Everything_IncRunCountFromFileNameW(record.Path);
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to execute {_customProgram} with arguments {_customArg}", e, GetType());
Log.Exception($"EPT: Failed to execute {_customProgram} with arguments {_customArg}", e, GetType());
return false;
}
},
@ -272,18 +277,18 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
}
catch (Exception e)
{
Log.Exception($"Failed to delete {record.Path}", e, GetType());
Log.Exception($"EPT: Failed to delete {record.Path}", e, GetType());
return false;
}
},
});
break;
case '8':
// Right Click Context Menu
// Shell Context Menu
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.right_click,
Title = Resources.scm,
Glyph = "\xE712",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.M,
@ -297,11 +302,12 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
scm.ShowContextMenu(new FileInfo(record.Path), wf.Cursor.Position);
else
scm.ShowContextMenu(new DirectoryInfo(record.Path), wf.Cursor.Position);
NativeMethods.Everything_IncRunCountFromFileNameW(record.Path);
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to open right click context menu for {record.Path}", e, GetType());
Log.Exception($"EPT: Failed to open shell context menu for {record.Path}", e, GetType());
return false;
}
},
@ -323,9 +329,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
{
// Using OrdinalIgnoreCase since this is internal
if (extension.Equals(fileExtension, StringComparison.OrdinalIgnoreCase))
{
return true;
}
}
return false;

View File

@ -59,6 +59,8 @@ namespace Community.PowerToys.Run.Plugin.Everything.Interop
#endregion
internal const string dllName = "Everything64.dll";
[LibraryImport(dllName)]
internal static partial void Everything_CleanUp();
[LibraryImport(dllName)]
internal static partial uint Everything_GetLastError();
[LibraryImport(dllName)]
internal static partial uint Everything_GetNumResults(); //Everything3_GetResultListCount

15
Main.cs
View File

@ -172,8 +172,7 @@ namespace Community.PowerToys.Run.Plugin.Everything
httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0");
string url = $"https://github.com/lin-ycv/EverythingPowerToys/raw/refs/heads/lib/Everything{(_isArm ? "ARM" : string.Empty)}64.dll";
byte[] fileContent = httpClient.GetByteArrayAsync(url).Result;
string fileName = dll;
File.WriteAllBytes(fileName, fileContent);
File.WriteAllBytes(dll, fileContent);
}
else
{
@ -183,13 +182,12 @@ namespace Community.PowerToys.Run.Plugin.Everything
if (_setting.LoggingLevel <= LogLevel.Debug)
Log.Info("EPT: Init", GetType());
if (_setting.Updates)
{
Update.UpdateSettings upSettings;
upSettings = _storage.Load();
Task.Run(() => new Update.UpdateChecker().Async(Assembly.GetExecutingAssembly().GetName().Version, _setting, upSettings, _isArm));
}
Update.UpdateSettings upSettings = _storage.Load();
if (_setting.Updates)
Task.Run(() => new Update.UpdateChecker().Async(Assembly.GetExecutingAssembly().GetName().Version, _setting, upSettings, _isArm));
Thread.Sleep(500); // Wait for Everything to start
if (Everything_GetMinorVersion() < 5) _setting.Getfilters();
_everything = new Everything(_setting);
_contextMenuLoader = new ContextMenuLoader(context, _setting.Context);
@ -277,6 +275,7 @@ namespace Community.PowerToys.Run.Plugin.Everything
{
cts.Cancel();
cts.Dispose();
Everything_CleanUp();
}
_disposed = true;

View File

@ -80,7 +80,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.Properties {
/// <summary>
/// Looks up a localized string similar to Configure context menu options and order.
///0_Open folder, 1_Run as Admin, 2_Run as User, 3_Copy, 4_Copy Path, 5_Open in Console, 6_Open in custom program, 7_Delete file/folder, 8_Right click context menu.
///0_Open folder, 1_Run as Admin, 2_Run as User, 3_Copy, 4_Copy Path, 5_Open in Console, 6_Open in custom program, 7_Delete file/folder, 8_Shell context menu.
/// </summary>
public static string Context_Description {
get {
@ -423,15 +423,6 @@ namespace Community.PowerToys.Run.Plugin.Everything.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Right click context menu (Ctrl+M).
/// </summary>
public static string right_click {
get {
return ResourceManager.GetString("right_click", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Run as administrator (Ctrl+Shift+Enter).
/// </summary>
@ -450,6 +441,15 @@ namespace Community.PowerToys.Run.Plugin.Everything.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Shell context menu (Ctrl+M).
/// </summary>
public static string scm {
get {
return ResourceManager.GetString("scm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show more.
/// </summary>

View File

@ -125,7 +125,7 @@
</data>
<data name="Context_Description" xml:space="preserve">
<value>Configurar las opciones del menú contextual y su orden.
0_Abrir carpeta, 1_Ejecutar como administrador, 2_Ejecutar como usuario, 3_Copiar, 4_Copiar ruta, 5_Abrir en el terminal</value>
0_Abrir carpeta, 1_Ejecutar como administrador, 2_Ejecutar como usuario, 3_Copiar, 4_Copiar ruta, 5_Abrir en el terminal, 6_Open in custom program, 7_Delete file/folder, 8_Shell context menu</value>
</data>
<data name="copy_file" xml:space="preserve">
<value>Copiar </value>

View File

@ -125,7 +125,7 @@
</data>
<data name="Context_Description" xml:space="preserve">
<value>Configura le opzioni e l'ordine del menu contestuale.
0_Apri cartella, 1_Esegui come Amministratore, 2_Esegui come Utente, 3_Copia, 4_Copia Percorso, 5_Apri nella Console, 6_Apri con programma esterno</value>
0_Apri cartella, 1_Esegui come Amministratore, 2_Esegui come Utente, 3_Copia, 4_Copia Percorso, 5_Apri nella Console, 6_Apri con programma esterno, 7_Delete file/folder, 8_Shell context menu</value>
</data>
<data name="copy_file" xml:space="preserve">
<value>Copia </value>

View File

@ -125,7 +125,7 @@
</data>
<data name="Context_Description" xml:space="preserve">
<value>Skonfiguruj opcje i kolejność menu kontekstowego.
0_Otwórz folder, 1_Uruchom jako administrator, 2_Uruchom jako użytkownik, 3_Kopiuj plik, 4_Kopiuj ścieżkę, 5_Otwórz w konsoli</value>
0_Otwórz folder, 1_Uruchom jako administrator, 2_Uruchom jako użytkownik, 3_Kopiuj plik, 4_Kopiuj ścieżkę, 5_Otwórz w konsoli, 6_Open in custom program, 7_Delete file/folder, 8_Shell context menu</value>
</data>
<data name="copy_file" xml:space="preserve">
<value>Kopiuj plik </value>

View File

@ -125,7 +125,7 @@
</data>
<data name="Context_Description" xml:space="preserve">
<value>Configure context menu options and order.
0_Open folder, 1_Run as Admin, 2_Run as User, 3_Copy, 4_Copy Path, 5_Open in Console, 6_Open in custom program, 7_Delete file/folder, 8_Right click context menu</value>
0_Open folder, 1_Run as Admin, 2_Run as User, 3_Copy, 4_Copy Path, 5_Open in Console, 6_Open in custom program, 7_Delete file/folder, 8_Shell context menu</value>
</data>
<data name="copy_file" xml:space="preserve">
<value>Copy </value>
@ -271,8 +271,8 @@ Latest: {1}</value>
<data name="History" xml:space="preserve">
<value>The "Include inglobal result" option is turned on for the History plugin, which could lead to conflicts with EPT.</value>
</data>
<data name="right_click" xml:space="preserve">
<value>Right click context menu (Ctrl+M)</value>
<data name="scm" xml:space="preserve">
<value>Shell context menu (Ctrl+M)</value>
</data>
<data name="delete_result" xml:space="preserve">
<value>Delete file/folder (Ctrl+Del)</value>

View File

@ -126,7 +126,7 @@
</data>
<data name="Context_Description" xml:space="preserve">
<value>配置选单选项与顺序
0_打开所在文件夹、1_以管理员身分运行、2_以不同的使用者身分运行、3_复制、4_复制路径、5_在控制台中开启</value>
0_打开所在文件夹、1_以管理员身分运行、2_以不同的使用者身分运行、3_复制、4_复制路径、5_在控制台中开启、6_在指定軟體中開啟、 7_刪除檔案/資料夾、 8_右鍵選單</value>
</data>
<data name="copy_file" xml:space="preserve">
<value>复制</value>

View File

@ -224,7 +224,7 @@
<data name="History" xml:space="preserve">
<value>已啟用「包含全域結果中」選項於History插件可能會與 EPT 發生衝突。</value>
</data>
<data name="right_click" xml:space="preserve">
<data name="scm" xml:space="preserve">
<value>右鍵選單 (Ctrl+M)</value>
</data>
<data name="delete_result" xml:space="preserve">

View File

@ -4,7 +4,7 @@
"IsGlobal": true,
"Name": "Everything",
"Author": "Yu Chieh (Victor) Lin",
"Version": "0.0.2",
"Version": "0.88.0",
"Language": "csharp",
"Website": "https://github.com/Lin-ycv/EverythingPowerToys",
"ExecuteFileName": "Community.PowerToys.Run.Plugin.Everything.dll",