right click ContextMenu + cancellationToken

This commit is contained in:
Lin Yu-Chieh (Victor) 2025-01-25 00:53:35 +08:00
parent 5226f9124a
commit 16f051bf82
21 changed files with 2098 additions and 541 deletions

View File

@ -8,7 +8,8 @@ labels: bug
**Flight Check**
- [ ] I'm sure existing (open and closed) don't have duplicates
- [ ] I've tried reinstalling PT, Everything, EverythingPT
- [ ] I've updated PowerToys (PT), Everything, EverythingPT (EPT) to the lastest version
- [ ] I've tried reinstalling PT, Everything, EPT
**Describe the bug**
@ -28,9 +29,11 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.
**Logs (please upload or provide link to you log):**
Logs can be generated by right clicking the taskbar icon > Report Bug
or be found at
%localappdata%\Microsoft\PowerToys\PowerToys Run\Logs
Logs can be found at `%localappdata%\Microsoft\PowerToys\PowerToys Run\Logs`
> Note:
> If log says `Couldn't get assembly types`, you need to update PT and EPT
> If log says `Couldn't load assembly`, you're on the wrong version of EPT (x64 vs ARM64), most people should use x64
**Version:**
- PowerToy:

View File

@ -45,15 +45,15 @@ jobs:
choco push everythingpowertoys.$ver.nupkg --source https://push.chocolatey.org/
# winget
# $wingetPackage = "lin-ycv.EverythingPowerToys"
# echo $wingetPackage $ver $exe $exehash $exeARM $exeARMhash
# rm -Path .\* -Recurse -Force
# git clone -b winget https://github.com/lin-ycv/EverythingPowerToys.git --depth 1
# Invoke-WebRequest https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
# cd .\EverythingPowerToys
# rm .git -Recurse -Force -Confirm:$false
# Get-ChildItem *.* -Recurse | ForEach { (Get-Content $_) | ForEach {$_ -Replace '_VERSION_', $ver} | ForEach {$_ -Replace '_URL_', $exe} | ForEach {$_ -Replace '_CRC_', $exehash} | ForEach {$_ -Replace '_armURL_', $exeARM} | ForEach {$_ -Replace '_armCRC_', $exeARMhash} | Set-Content $_ }
# ..\wingetcreate submit -p "New version: lin-ycv.EverythingPowerToys version $ver" -t ${{ secrets.EVERYTHINGPT }} .
$wingetPackage = "lin-ycv.EverythingPowerToys"
echo $wingetPackage $ver $exe $exehash $exeARM $exeARMhash
rm -Path .\* -Recurse -Force
git clone -b winget https://github.com/lin-ycv/EverythingPowerToys.git --depth 1
Invoke-WebRequest https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
cd .\EverythingPowerToys
rm .git -Recurse -Force -Confirm:$false
Get-ChildItem *.* -Recurse | ForEach { (Get-Content $_) | ForEach {$_ -Replace '_VERSION_', $ver} | ForEach {$_ -Replace '_URL_', $exe} | ForEach {$_ -Replace '_CRC_', $exehash} | ForEach {$_ -Replace '_armURL_', $exeARM} | ForEach {$_ -Replace '_armCRC_', $exeARMhash} | Set-Content $_ }
..\wingetcreate submit -p "New version: lin-ycv.EverythingPowerToys version $ver" -t ${{ secrets.EVERYTHINGPT }} .
# scoop
# cd ..

View File

@ -28,7 +28,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DefineConstants>TRACE</DefineConstants>
<DefineConstants></DefineConstants>
<OutputPath>bin\$(Platform)\$(Configuration)\Everything\</OutputPath>
<Optimize>true</Optimize>
<DebugType>none</DebugType>
@ -49,12 +49,19 @@
<ItemGroup>
<ProjectReference Include="..\..\..\..\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj">
<Private>false</Private>
<CopyLocalSatelliteAssemblies>False</CopyLocalSatelliteAssemblies>
</ProjectReference>
<ProjectReference Include="..\..\PowerLauncher\PowerLauncher.csproj">
<Private>False</Private>
<CopyLocalSatelliteAssemblies>False</CopyLocalSatelliteAssemblies>
</ProjectReference>
<ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj">
<Private>false</Private>
<CopyLocalSatelliteAssemblies>False</CopyLocalSatelliteAssemblies>
</ProjectReference>
<ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj">
<Private>false</Private>
<CopyLocalSatelliteAssemblies>False</CopyLocalSatelliteAssemblies>
</ProjectReference>
</ItemGroup>
@ -88,11 +95,11 @@
</ItemGroup>
<ItemGroup>
<None Update="Everything64.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<None Update="lib\Everything64.dll">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="EverythingARM64.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<None Update="lib\EverythingARM64.dll">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Images\Everything.dark.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
@ -117,7 +124,7 @@
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if $(Platform) == ARM64 (&#xD;&#xA;del /Q &quot;$(TargetDir)Everything64.dll&quot;&#xD;&#xA;copy /y &quot;$(TargetDir)EverythingARM64.dll&quot; &quot;$(TargetDir)Everything64.dll&quot;&#xD;&#xA;)&#xD;&#xA;rmdir /S /Q &quot;$(TargetDir)amd64&quot;&#xD;&#xA;del /Q &quot;$(TargetDir)TraceReloggerLib.dll&quot;&#xD;&#xA;del /Q &quot;$(TargetDir)EverythingARM64.dll&quot;&#xD;&#xA;del /Q &quot;$(TargetDir)Dia2Lib.dll&quot;&#xD;&#xA;del /Q &quot;$(TargetDir)*.pdb&quot;&#xD;&#xA;del /Q &quot;$(TargetDir)PowerToys*.dll&quot;&#xD;&#xA;del /Q &quot;.\bin\$(Platform)_CHECKSUM.txt&quot;&#xD;&#xA;copy /y &quot;LICENSE&quot; &quot;$(TargetDir)LICENSE.txt&quot;&#xD;&#xA;powershell Compress-Archive -Path $(TargetDir) -DestinationPath .\bin\EverythingPT-$(Version)-$(Platform).zip -Force&#xD;&#xA;&quot;C:\Program Files (x86)\NSIS\makensis&quot; /Dver=$(Version) /Ddirect=$(TargetDir) /Dplatform=$(Platform) .\NSIS\exeCreator.nsi&#xD;&#xA;certUtil -hashfile .\bin\EverythingPT-$(Version)-$(Platform).zip SHA256 &gt;&gt; .\bin\$(Platform)_CHECKSUM.txt&#xD;&#xA;certUtil -hashfile .\bin\EverythingPT-$(Version)-$(Platform).exe SHA256 &gt;&gt; .\bin\$(Platform)_CHECKSUM.txt&#xD;&#xA;rd /Q /S &quot;$(TargetDir)&quot;" />
<Exec Command="rmdir /S /Q &quot;$(TargetDir)amd64&quot;&#xD;&#xA;del /Q &quot;$(TargetDir)TraceReloggerLib.dll&quot;&#xD;&#xA;del /Q &quot;$(TargetDir)Dia2Lib.dll&quot;&#xD;&#xA;del /Q &quot;$(TargetDir)*.pdb&quot;&#xD;&#xA;del /Q &quot;$(TargetDir)PowerToys*.dll&quot;&#xD;&#xA;del /Q &quot;.\bin\$(Platform)_CHECKSUM.txt&quot;&#xD;&#xA;copy /y &quot;LICENSE&quot; &quot;$(TargetDir)LICENSE.txt&quot;&#xD;&#xA;powershell Compress-Archive -Path $(TargetDir) -DestinationPath .\bin\EverythingPT-$(Version)-$(Platform).zip -Force&#xD;&#xA;&quot;C:\Program Files (x86)\NSIS\makensis&quot; /Dver=$(Version) /Ddirect=$(TargetDir) /Dplatform=$(Platform) .\NSIS\exeCreator.nsi&#xD;&#xA;certUtil -hashfile .\bin\EverythingPT-$(Version)-$(Platform).zip SHA256 &gt;&gt; .\bin\$(Platform)_CHECKSUM.txt&#xD;&#xA;certUtil -hashfile .\bin\EverythingPT-$(Version)-$(Platform).exe SHA256 &gt;&gt; .\bin\$(Platform)_CHECKSUM.txt&#xD;&#xA;rd /Q /S &quot;$(TargetDir)&quot;" />
</Target>
</Project>

View File

@ -1,278 +1,334 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Security.AccessControl;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using Community.PowerToys.Run.Plugin.Everything.Properties;
using Wox.Infrastructure;
using Wox.Plugin;
using Wox.Plugin.Logger;
namespace Community.PowerToys.Run.Plugin.Everything
{
internal sealed class ContextMenuLoader(PluginInitContext context, string options) : IContextMenu
{
private readonly PluginInitContext _context = context;
// Extensions for adding run as admin context menu item for applications
private readonly string[] _appExtensions = [".exe", ".bat", ".appref-ms", ".lnk"];
private bool _swapCopy;
private string _options = options;
private string _customProgram;
private string _customArg;
internal void Update(Settings s)
{
_swapCopy = s.Copy;
_options = s.Context;
_customProgram = s.CustomProgram;
_customArg = s.CustomArg;
}
public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
{
var contextMenus = new List<ContextMenuResult>();
if (selectedResult.ContextData is SearchResult record)
{
bool isFile = record.File, runAs = CanFileBeRunAsAdmin(record.Path);
foreach (char o in _options)
{
switch (o)
{
case '0':
// Open folder
if (isFile)
{
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.open_containing_folder,
Glyph = "\xE838",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.E,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
{
if (!Helper.OpenInShell("explorer.exe", $"/select,\"{record.Path}\""))
{
var message = $"{Resources.folder_open_failed} {Path.GetDirectoryName(record.Path)}";
_context.API.ShowMsg(message);
return false;
}
return true;
},
});
}
break;
case '1':
// Run as Adsmin
if (runAs)
{
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.run_as_admin,
Glyph = "\xE7EF",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.Enter,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
{
try
{
Task.Run(() => Helper.RunAsAdmin(record.Path));
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to run {record.Path} as admin, {e.Message}", e, MethodBase.GetCurrentMethod().DeclaringType);
return false;
}
},
});
}
break;
case '2':
// Run as User
if (runAs)
{
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.run_as_user,
Glyph = "\xE7EE",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.U,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
{
try
{
Task.Run(() => Helper.RunAsUser(record.Path));
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to run {record.Path} as different user, {e.Message}", e, MethodBase.GetCurrentMethod().DeclaringType);
return false;
}
},
});
}
break;
case '3':
// Copy File/Folder
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.copy_file + (_swapCopy ? Resources.copy_shortcut : Resources.copy_shortcutAlt),
Glyph = "\xE8C8",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = _swapCopy ? ModifierKeys.Control : ModifierKeys.Control | ModifierKeys.Alt,
Action = (context) =>
{
try
{
Clipboard.SetData(DataFormats.FileDrop, new string[] { record.Path });
return true;
}
catch (Exception e)
{
var message = Resources.clipboard_failed;
Log.Exception(message, e, GetType());
_context.API.ShowMsg(message);
return false;
}
},
});
break;
case '4':
// Copy Path
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.copy_path + (_swapCopy ? Resources.copy_shortcutAlt : Resources.copy_shortcut),
Glyph = "\xE71B",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = _swapCopy ? ModifierKeys.Control | ModifierKeys.Alt : ModifierKeys.Control,
Action = (context) =>
{
try
{
Clipboard.SetDataObject(record.Path);
return true;
}
catch (Exception e)
{
var message = Resources.clipboard_failed;
Log.Exception(message, e, GetType());
_context.API.ShowMsg(message);
return false;
}
},
});
break;
case '5':
// Open in Shell
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.open_in_console,
Glyph = "\xE756",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = (context) =>
{
try
{
if (isFile)
{
Helper.OpenInConsole(Path.GetDirectoryName(record.Path));
}
else
{
Helper.OpenInConsole(record.Path);
}
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to open {record.Path} in console, {e.Message}", e, GetType());
return false;
}
},
});
break;
case '6':
// Pass to custom program as parameter
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.open_in_custom,
Glyph = "\xE8A7",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.N,
AcceleratorModifiers = ModifierKeys.Control,
Action = (context) =>
{
using var process = new Process();
process.StartInfo.FileName = _customProgram;
process.StartInfo.Arguments = $"\"{_customArg.Replace("$P", record.Path)}\"";
try
{
process.Start();
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to execute {_customProgram} with arguments {_customArg}", e, GetType());
return false;
}
},
});
break;
default:
break;
}
}
}
return contextMenus;
}
private bool CanFileBeRunAsAdmin(string path)
{
string fileExtension = Path.GetExtension(path);
foreach (string extension in _appExtensions)
{
// Using OrdinalIgnoreCase since this is internal
if (extension.Equals(fileExtension, StringComparison.OrdinalIgnoreCase))
{
return true;
}
}
return false;
}
}
}
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using Community.PowerToys.Run.Plugin.Everything.Properties;
using Community.PowerToys.Run.Plugin.Everything.SearchHelper;
using Wox.Infrastructure;
using Wox.Plugin;
using Wox.Plugin.Logger;
using wf = System.Windows.Forms;
namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
{
internal sealed class ContextMenuLoader(PluginInitContext context, string options) : IContextMenu
{
private readonly PluginInitContext _context = context;
// Extensions for adding run as admin context menu item for applications
private readonly string[] _appExtensions = [".exe", ".bat", ".appref-ms", ".lnk"];
private bool _swapCopy;
private string _options = options;
private string _customProgram;
private string _customArg;
internal void Update(Settings s)
{
_swapCopy = s.Copy;
_options = s.Context;
_customProgram = s.CustomProgram;
_customArg = s.CustomArg;
}
public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
{
var contextMenus = new List<ContextMenuResult>();
if (selectedResult.ContextData is SearchResult record)
{
bool isFile = record.File, runAs = CanFileBeRunAsAdmin(record.Path);
foreach (char o in _options)
{
switch (o)
{
case '0':
// Open folder
if (isFile)
{
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.open_containing_folder,
Glyph = "\xE838",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.E,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
{
if (!Helper.OpenInShell("explorer.exe", $"/select,\"{record.Path}\""))
{
var message = $"{Resources.folder_open_failed} {Path.GetDirectoryName(record.Path)}";
_context.API.ShowMsg(message);
return false;
}
return true;
},
});
}
break;
case '1':
// Run as Admin
if (runAs)
{
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.run_as_admin,
Glyph = "\xE7EF",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.Enter,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
{
try
{
Task.Run(() => Helper.RunAsAdmin(record.Path));
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to run {record.Path} as admin, {e.Message}", e, MethodBase.GetCurrentMethod().DeclaringType);
return false;
}
},
});
}
break;
case '2':
// Run as User
if (runAs)
{
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.run_as_user,
Glyph = "\xE7EE",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.U,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
{
try
{
Task.Run(() => Helper.RunAsUser(record.Path));
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to run {record.Path} as different user, {e.Message}", e, MethodBase.GetCurrentMethod().DeclaringType);
return false;
}
},
});
}
break;
case '3':
// Copy File/Folder
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.copy_file + (_swapCopy ? Resources.copy_shortcut : Resources.copy_shortcutAlt),
Glyph = "\xE8C8",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = _swapCopy ? ModifierKeys.Control : ModifierKeys.Control | ModifierKeys.Alt,
Action = (context) =>
{
try
{
Clipboard.SetData(DataFormats.FileDrop, new string[] { record.Path });
return true;
}
catch (Exception e)
{
var message = Resources.clipboard_failed;
Log.Exception(message, e, GetType());
_context.API.ShowMsg(message);
return false;
}
},
});
break;
case '4':
// Copy Path
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.copy_path + (_swapCopy ? Resources.copy_shortcutAlt : Resources.copy_shortcut),
Glyph = "\xE71B",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = _swapCopy ? ModifierKeys.Control | ModifierKeys.Alt : ModifierKeys.Control,
Action = (context) =>
{
try
{
Clipboard.SetDataObject(record.Path);
return true;
}
catch (Exception e)
{
var message = Resources.clipboard_failed;
Log.Exception(message, e, GetType());
_context.API.ShowMsg(message);
return false;
}
},
});
break;
case '5':
// Open in Shell
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.open_in_console,
Glyph = "\xE756",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = (context) =>
{
try
{
if (isFile)
{
Helper.OpenInConsole(Path.GetDirectoryName(record.Path));
}
else
{
Helper.OpenInConsole(record.Path);
}
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to open {record.Path} in console, {e.Message}", e, GetType());
return false;
}
},
});
break;
case '6':
// Pass to custom program as parameter
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.open_in_custom,
Glyph = "\xE8A7",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.N,
AcceleratorModifiers = ModifierKeys.Control,
Action = (context) =>
{
using var process = new Process();
process.StartInfo.FileName = _customProgram;
process.StartInfo.Arguments = $"\"{_customArg.Replace("$P", record.Path)}\"";
try
{
process.Start();
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to execute {_customProgram} with arguments {_customArg}", e, GetType());
return false;
}
},
});
break;
case '7':
// Delete
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.delete_result,
Glyph = "\xE74D",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.Delete,
AcceleratorModifiers = ModifierKeys.Control,
Action = (context) =>
{
try
{
if (isFile)
File.Delete(record.Path);
else
Directory.Delete(record.Path, true);
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to delete {record.Path}", e, GetType());
return false;
}
},
});
break;
case '8':
// Right Click Context Menu
contextMenus.Add(new ContextMenuResult
{
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Resources.right_click,
Glyph = "\xE712",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.M,
AcceleratorModifiers = ModifierKeys.Control,
Action = (context) =>
{
try
{
ShellContextMenu scm = new();
if (isFile)
scm.ShowContextMenu(new FileInfo(record.Path), wf.Cursor.Position);
else
scm.ShowContextMenu(new DirectoryInfo(record.Path), wf.Cursor.Position);
return true;
}
catch (Exception e)
{
Log.Exception($"Failed to open right click context menu for {record.Path}", e, GetType());
return false;
}
},
});
break;
default:
break;
}
}
}
return contextMenus;
}
private bool CanFileBeRunAsAdmin(string path)
{
string fileExtension = Path.GetExtension(path);
foreach (string extension in _appExtensions)
{
// Using OrdinalIgnoreCase since this is internal
if (extension.Equals(fileExtension, StringComparison.OrdinalIgnoreCase))
{
return true;
}
}
return false;
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,16 +0,0 @@
#if DEBUG
using System;
using System.IO;
namespace Community.PowerToys.Run.Plugin.Everything
{
internal static class Debugger
{
private static readonly string FilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "EverythingPT.log");
public static void Write(string message)
{
using StreamWriter writer = new(FilePath, true);
writer.WriteLine(message);
}
}
}
#endif

View File

@ -4,7 +4,10 @@ using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using System.Threading;
using Community.PowerToys.Run.Plugin.Everything.Properties;
using Community.PowerToys.Run.Plugin.Everything.SearchHelper;
using NLog;
using Wox.Plugin;
using Wox.Plugin.Logger;
using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods;
@ -40,19 +43,19 @@ namespace Community.PowerToys.Run.Plugin.Everything
}
}
internal IEnumerable<Result> Query(string query, Settings setting)
internal IEnumerable<Result> Query(string query, Settings setting, CancellationToken token)
{
#if DEBUG
if (setting.Log > LogLevel.None)
if (setting.LoggingLevel <= LogLevel.Debug)
{
Debugger.Write($"\r\n\r\nNew Query: {query}\r\n" +
$"Prefix {setting.Prefix} | " +
$"Sort {(int)setting.Sort}_{Everything_GetSort()} | " +
$"Max {setting.Max}_{Everything_GetMax()} | " +
$"Match Path {setting.MatchPath}_{Everything_GetMatchPath()} | " +
$"Regex {setting.RegEx}_{Everything_GetRegex()}");
Log.Info(
$"EPT:\nNew Query: {query}\n" +
$"Prefix {setting.Prefix}\n" +
$"Sort {(int)setting.Sort}_{Everything_GetSort()}\n" +
$"Max {setting.Max}_{Everything_GetMax()}\n" +
$"Match Path {setting.MatchPath}_{Everything_GetMatchPath()}\n" +
$"Regex {setting.RegEx}_{Everything_GetRegex()}",
GetType());
}
#endif
string orgqry = query;
@ -62,43 +65,37 @@ namespace Community.PowerToys.Run.Plugin.Everything
if (setting.EnvVar && orgqry.Contains('%'))
{
query = Environment.ExpandEnvironmentVariables(query).Replace(';', '|');
#if DEBUG
if (setting.Log > LogLevel.None)
Debugger.Write($"EnvVariable\r\n{query}");
#endif
if (setting.LoggingLevel <= LogLevel.Debug)
Log.Info($"EPT:EnvVariable\n{query}", GetType());
}
if (Everything_GetMinorVersion() < 5 && orgqry.Contains(':'))
if (setting.Is1_4 && orgqry.Contains(':'))
{
foreach (var kv in setting.Filters)
{
if (query.Contains(kv.Key, StringComparison.OrdinalIgnoreCase))
{
query = query.Replace(kv.Key, kv.Value);
#if DEBUG
if (setting.Log > LogLevel.None)
Debugger.Write($"Contains Filter: {kv.Key}\r\n{query}");
#endif
query = query.Replace(kv.Key, string.Empty).Trim() + $" {kv.Value}";
if (setting.LoggingLevel <= LogLevel.Debug)
Log.Info($"EPT: Contains Filter: {kv.Key}\n{query}", GetType());
}
}
}
token.ThrowIfCancellationRequested();
Everything_SetSearchW(query);
if (!Everything_QueryW(true))
{
#if DEBUG
if (setting.Log > LogLevel.None)
Debugger.Write("\r\nUnable to Query\r\n");
#endif
if (setting.LoggingLevel < LogLevel.Error)
Log.Warn($"EPT: Unable to Query ({Everything_GetLastError()})", GetType());
throw new Win32Exception("Unable to Query");
}
uint resultCount = Everything_GetNumResults();
#if DEBUG
if (setting.Log > LogLevel.None)
Debugger.Write($"Results: {resultCount}");
#endif
if (setting.LoggingLevel <= LogLevel.Debug)
Log.Info($"EPT: Results = {resultCount}", GetType());
token.ThrowIfCancellationRequested();
bool showMore = setting.ShowMore && !string.IsNullOrEmpty(exe) && resultCount == setting.Max;
if (showMore)
{
@ -131,31 +128,32 @@ namespace Community.PowerToys.Run.Plugin.Everything
for (uint i = 0; i < resultCount; i++)
{
#if DEBUG
if (setting.Log > LogLevel.None)
Debugger.Write($"\r\n===== RESULT #{i} =====");
#endif
token.ThrowIfCancellationRequested();
string name = Marshal.PtrToStringUni(Everything_GetResultFileNameW(i));
string path = Marshal.PtrToStringUni(Everything_GetResultPathW(i));
if (name == null || path == null)
if (setting.LoggingLevel < LogLevel.Error && (name == null || path == null))
{
Log.Warn($"Result {i} is null for {name} and/or {path}, query: {query}", GetType());
Log.Warn($"EPT: Result {i} is null for {name} and/or {path}, query: {query}", GetType());
continue;
}
string fullPath = Path.Combine(path, name);
#if DEBUG
if (setting.Log > LogLevel.None)
Debugger.Write($"{fullPath.Length} {(setting.Log == LogLevel.Verbose ? fullPath : string.Empty)}");
#endif
bool isFolder = Everything_IsFolderResult(i);
if (isFolder)
path = fullPath;
string ext = Path.GetExtension(fullPath.Replace(".lnk", string.Empty));
#if DEBUG
if (setting.Log > LogLevel.None)
Debugger.Write($"Folder: {isFolder}\r\nFile Path {(setting.Log == LogLevel.Verbose ? path : path.Length)}\r\nFile Name {(setting.Log == LogLevel.Verbose ? name : name.Length)}\r\nExt: {ext}");
#endif
if (setting.LoggingLevel <= LogLevel.Debug)
{
Log.Info(
$"=====EPT: RESULT #{i} =====\n" +
$"Folder : {isFolder}\n" +
$"File Path : ({path.Length}) {(setting.LoggingLevel == LogLevel.Trace ? path : string.Empty)}\n" +
$"File Name : ({name.Length}) {(setting.LoggingLevel == LogLevel.Trace ? name : string.Empty)}\n" +
$"Ext : {Path.GetExtension(fullPath)}",
GetType());
}
var r = new Result()
{
Title = name,
@ -180,7 +178,7 @@ namespace Community.PowerToys.Run.Plugin.Everything
try
{
process.Start();
_ = Everything_IncRunCountFromFileName(fullPath);
_ = Everything_IncRunCountFromFileNameW(fullPath);
return true;
}
catch (Win32Exception)

Binary file not shown.

Binary file not shown.

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
namespace Community.PowerToys.Run.Plugin.Everything.Interop
{
public sealed class NativeMethods
public sealed partial class NativeMethods
{
#region FlagsEnums
[Flags]
@ -56,90 +56,48 @@ namespace Community.PowerToys.Run.Plugin.Everything.Interop
DATE_RUN_ASCENDING,
DATE_RUN_DESCENDING,
}
[Flags]
internal enum AssocF
{
NONE = 0x00000000,
INIT_NOREMAPCLSID = 0x00000001,
INIT_BYEXENAME = 0x00000002,
INIT_DEFAULTTOSTAR = 0x00000004,
INIT_DEFAULTTOFOLDER = 0x00000008,
NOUSERSETTINGS = 0x00000010,
NOTRUNCATE = 0x00000020,
VERIFY = 0x00000040,
REMAPRUNDLL = 0x00000080,
NOFIXUPS = 0x00000100,
IGNOREBASECLASS = 0x00000200,
INIT_IGNOREUNKNOWN = 0x00000400,
INIT_FIXED_PROGID = 0x00000800,
IS_PROTOCOL = 0x00001000,
INIT_FOR_FILE = 0x00002000,
}
internal enum AssocStr
{
COMMAND = 1,
EXECUTABLE,
FRIENDLYDOCNAME,
FRIENDLYAPPNAME,
NOOPEN,
SHELLNEWVALUE,
DDECOMMAND,
DDEIFEXEC,
DDEAPPLICATION,
DDETOPIC,
INFOTIP,
QUICKTIP,
TILEINFO,
CONTENTTYPE,
DEFAULTICON,
SHELLEXTENSION,
DROPTARGET,
DELEGATEEXECUTE,
SUPPORTED_URI_PROTOCOLS,
PROGID,
APPID,
APPPUBLISHER,
APPICONREFERENCE,
MAX,
}
#endregion
internal const string dllName = "Everything64.dll";
[DllImport(dllName)]
internal static extern uint Everything_GetNumResults();
[DllImport(dllName)]
[LibraryImport(dllName)]
internal static partial uint Everything_GetLastError();
[LibraryImport(dllName)]
internal static partial uint Everything_GetNumResults(); //Everything3_GetResultListCount
[LibraryImport(dllName)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool Everything_GetMatchPath();
[DllImport(dllName)]
internal static extern uint Everything_GetMax();
[DllImport(dllName)]
internal static extern uint Everything_GetMinorVersion();
[DllImport(dllName)]
internal static extern bool Everything_GetRegex();
[DllImport(dllName, CharSet = CharSet.Unicode)]
internal static extern IntPtr Everything_GetResultFileNameW(uint nIndex);
[DllImport(dllName, CharSet = CharSet.Unicode)]
internal static extern IntPtr Everything_GetResultPathW(uint nIndex);
[DllImport(dllName)]
internal static extern uint Everything_GetSort();
[DllImport(dllName, CharSet = CharSet.Unicode)]
internal static extern uint Everything_IncRunCountFromFileName(string lpFileName);
[DllImport(dllName)]
internal static extern bool Everything_IsFolderResult(uint index);
[DllImport(dllName)]
internal static extern bool Everything_QueryW([MarshalAs(UnmanagedType.Bool)] bool bWait);
[DllImport(dllName)]
internal static extern void Everything_SetMax(uint dwMax);
[DllImport(dllName)]
internal static extern void Everything_SetRegex([MarshalAs(UnmanagedType.Bool)] bool bEnable);
[DllImport(dllName)]
internal static extern void Everything_SetRequestFlags(Request RequestFlags);
[DllImport(dllName, CharSet = CharSet.Unicode)]
internal static extern void Everything_SetSearchW(string lpSearchString);
[DllImport(dllName)]
internal static extern bool Everything_SetMatchPath([MarshalAs(UnmanagedType.Bool)] bool bEnable);
[DllImport(dllName)]
internal static extern void Everything_SetSort(Sort SortType);
internal static partial bool Everything_GetMatchPath();
[LibraryImport(dllName)]
internal static partial uint Everything_GetMax();
[LibraryImport(dllName)]
internal static partial uint Everything_GetMinorVersion();
[LibraryImport(dllName)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static partial bool Everything_GetRegex();
[LibraryImport(dllName)]
internal static partial IntPtr Everything_GetResultFileNameW(uint nIndex);
[LibraryImport(dllName)]
internal static partial IntPtr Everything_GetResultPathW(uint nIndex);
[LibraryImport(dllName)]
internal static partial uint Everything_GetSort();
[LibraryImport(dllName, StringMarshalling = StringMarshalling.Utf16)]
internal static partial uint Everything_IncRunCountFromFileNameW(string lpFileName);
[LibraryImport(dllName)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static partial bool Everything_IsFolderResult(uint index);
[LibraryImport(dllName)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static partial bool Everything_QueryW([MarshalAs(UnmanagedType.Bool)] bool bWait);
[LibraryImport(dllName)]
internal static partial void Everything_SetMax(uint dwMax);
[LibraryImport(dllName)]
internal static partial void Everything_SetRegex([MarshalAs(UnmanagedType.Bool)] bool bEnable);
[LibraryImport(dllName)]
internal static partial void Everything_SetRequestFlags(Request RequestFlags);
[LibraryImport(dllName, StringMarshalling = StringMarshalling.Utf16)]
internal static partial void Everything_SetSearchW(string lpSearchString);
[LibraryImport(dllName)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static partial bool Everything_SetMatchPath([MarshalAs(UnmanagedType.Bool)] bool bEnable);
[LibraryImport(dllName)]
internal static partial void Everything_SetSort(Sort SortType);
}
}

88
Main.cs
View File

@ -1,25 +1,37 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using Community.PowerToys.Run.Plugin.Everything.ContextMenu;
using Community.PowerToys.Run.Plugin.Everything.Properties;
using Microsoft.PowerToys.Settings.UI.Library;
using NLog;
using PowerLauncher.Plugin;
using Wox.Infrastructure.Storage;
using Wox.Plugin;
using Wox.Plugin.Logger;
using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods;
namespace Community.PowerToys.Run.Plugin.Everything
{
public class Main : IPlugin, IDisposable, IDelayedExecutionPlugin, IContextMenu, ISettingProvider, IPluginI18n
public class Main : IPlugin, IDisposable, IDelayedExecutionPlugin, IContextMenu, ISettingProvider, IPluginI18n, ISavable
{
public static string PluginID => "A86867E2D932459CBD77D176373DD657";
public string Name => Resources.plugin_name;
public string Description => Resources.plugin_description;
private readonly Settings _setting = new();
private readonly PluginJsonStorage<Update.UpdateSettings> _storage = new();
private readonly bool _isArm = RuntimeInformation.ProcessArchitecture == Architecture.Arm64;
private Everything _everything;
private ContextMenuLoader _contextMenuLoader;
private CancellationTokenSource cts = new();
private bool _disposed;
public IEnumerable<PluginAdditionalOption> AdditionalOptions =>
@ -137,30 +149,56 @@ namespace Community.PowerToys.Run.Plugin.Everything
DisplayDescription = $"v{Assembly.GetExecutingAssembly().GetName().Version}",
Value = _setting.Updates,
},
#if DEBUG
new()
{
Key = nameof(Settings.Log),
DisplayLabel = "Debug Mode",
Key = nameof(Settings.LoggingLevel),
DisplayLabel = "Log Level",
PluginOptionType = PluginAdditionalOption.AdditionalOptionType.Combobox,
ComboBoxItems = Enum.GetValues(typeof(LogLevel)).Cast<int>().Select(d => new KeyValuePair<string, string>(((LogLevel)d).ToString(), d + string.Empty)).ToList(),
ComboBoxValue = (int)_setting.Log,
ComboBoxItems = LogLevel.AllLoggingLevels.Select(d => new KeyValuePair<string, string>(d.ToString(), d.Ordinal + string.Empty)).ToList(),
ComboBoxValue = _setting.LoggingLevel.Ordinal,
},
#endif
];
public void Init(PluginInitContext context)
{
string dll = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Everything64.dll");
if (!File.Exists(dll))
{
MessageBoxResult mbox = MessageBox.Show(Resources.MissingLib, "EPT: Downloader", MessageBoxButton.YesNo);
if (mbox == MessageBoxResult.Yes)
{
using HttpClient httpClient = new();
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);
}
else
{
throw new DllNotFoundException("EPT: Everything64.dll not found, either press Yes on the download prompt, or manually load in the dll @ %LOCALAPPDATA%\\Microsoft\\PowerToys\\PowerToys Run\\Plugins\\Everything");
}
}
if (_setting.LoggingLevel <= LogLevel.Debug)
Log.Info("EPT: Init", GetType());
if (_setting.Updates)
Task.Run(() => new Update().UpdateAsync(Assembly.GetExecutingAssembly().GetName().Version, _setting));
{
Update.UpdateSettings upSettings;
upSettings = _storage.Load();
Task.Run(() => new Update.UpdateChecker().Async(Assembly.GetExecutingAssembly().GetName().Version, _setting, upSettings, _isArm));
}
if (Everything_GetMinorVersion() < 5) _setting.Getfilters();
_everything = new Everything(_setting);
_contextMenuLoader = new ContextMenuLoader(context, _setting.Context);
_contextMenuLoader.Update(_setting);
#if DEBUG
if (_setting.Log > LogLevel.None)
Debugger.Write("Init Complete\r\n");
#endif
var history = PluginManager.GlobalPlugins.FirstOrDefault(p => p.Metadata.ID == "C88512156BB74580AADF7252E130BA8D" && !p.Metadata.Disabled);
if (history != null)
Task.Run(() => MessageBox.Show(Resources.History, "EPT: History Conflict", MessageBoxButton.OK, MessageBoxImage.Warning));
if (_setting.LoggingLevel <= LogLevel.Debug)
Log.Info("EPT: Init Complete", GetType());
}
public void UpdateSettings(PowerLauncherPluginSettings settings)
@ -182,9 +220,7 @@ namespace Community.PowerToys.Run.Plugin.Everything
_setting.CustomProgram = settings.AdditionalOptions.FirstOrDefault(x => x.Key == nameof(_setting.CustomProgram)).TextValue;
_setting.CustomArg = settings.AdditionalOptions.FirstOrDefault(x => x.Key == nameof(_setting.CustomArg)).TextValue;
_setting.ShowMore = settings.AdditionalOptions.FirstOrDefault(x => x.Key == nameof(_setting.ShowMore)).Value;
#if DEBUG
_setting.Log = (LogLevel)settings.AdditionalOptions.FirstOrDefault(x => x.Key == nameof(_setting.Log)).ComboBoxValue;
#endif
_setting.LoggingLevel = LogLevel.FromOrdinal(settings.AdditionalOptions.FirstOrDefault(x => x.Key == nameof(_setting.LoggingLevel)).ComboBoxValue);
_everything?.UpdateSettings(_setting);
_contextMenuLoader?.Update(_setting);
@ -193,8 +229,7 @@ namespace Community.PowerToys.Run.Plugin.Everything
public List<Result> Query(Query query)
{
List<Result> results = [];
return results;
return null;
}
public List<Result> Query(Query query, bool delayedExecution)
@ -206,7 +241,14 @@ namespace Community.PowerToys.Run.Plugin.Everything
try
{
results.AddRange(_everything.Query(searchQuery, _setting));
cts.Cancel();
cts = new();
results.AddRange(_everything.Query(searchQuery, _setting, cts.Token));
}
catch (OperationCanceledException)
{
if (_setting.LoggingLevel <= LogLevel.Debug)
Log.Info("EPT: Query Cancelled", GetType());
}
catch (System.ComponentModel.Win32Exception)
{
@ -220,12 +262,7 @@ namespace Community.PowerToys.Run.Plugin.Everything
}
catch (Exception e)
{
#if DEBUG
if (_setting.Log > LogLevel.None)
Debugger.Write($"Everything Exception: {e.Message}\r\n{e.StackTrace}\r\n");
#endif
Log.Exception($"Everything Exception: {e.Message}\r\n{e.StackTrace}\r\n", e, GetType());
Log.Exception($"EPT: Exception! {e.Message}\n", e, GetType());
}
}
@ -238,6 +275,8 @@ namespace Community.PowerToys.Run.Plugin.Everything
{
if (disposing)
{
cts.Cancel();
cts.Dispose();
}
_disposed = true;
@ -255,5 +294,6 @@ namespace Community.PowerToys.Run.Plugin.Everything
public Control CreateSettingPanel() => throw new NotImplementedException();
public string GetTranslatedPluginTitle() => Resources.plugin_name;
public string GetTranslatedPluginDescription() => Resources.plugin_description;
public void Save() => _storage.Save();
}
}

View File

@ -26,7 +26,7 @@ InstallDir "$LOCALAPPDATA\Microsoft\PowerToys\PowerToys Run\Plugins\Everything"
Name "${EPT}"
OutFile ".\..\bin\${EPT}-${ver}-${platform}.exe"
RequestExecutionLevel user
SetCompressor /SOLID /FINAL lzma
;SetCompressor /SOLID /FINAL lzma ; this increases chances of AV FP?
LicenseData "..\LICENSE"
;--------------------------------
@ -47,7 +47,7 @@ Section ""
IfErrors 0 +5
SetErrorlevel 1
IfSilent +2
MessageBox MB_ICONEXCLAMATION "Unable to install, PowerToys is probably still running, please close it manually before install."
MessageBox MB_ICONEXCLAMATION "Unable to (un)install, PowerToys is probably still running, please close it manually before (un)install."
Abort
SectionEnd

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.
///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.
/// </summary>
public static string Context_Description {
get {
@ -160,6 +160,15 @@ namespace Community.PowerToys.Run.Plugin.Everything.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Delete file/folder (Ctrl+Del).
/// </summary>
public static string delete_result {
get {
return ResourceManager.GetString("delete_result", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enviroment Variables.
/// </summary>
@ -223,6 +232,15 @@ namespace Community.PowerToys.Run.Plugin.Everything.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to The &quot;Include inglobal result&quot; option is turned on for the History plugin, which could lead to conflicts with EPT..
/// </summary>
public static string History {
get {
return ResourceManager.GetString("History", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Match Path.
/// </summary>
@ -259,6 +277,15 @@ namespace Community.PowerToys.Run.Plugin.Everything.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Everything64.dll is missing, automatically download this file?.
/// </summary>
public static string MissingLib {
get {
return ResourceManager.GetString("MissingLib", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to See more....
/// </summary>
@ -333,7 +360,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.Properties {
/// <summary>
/// Looks up a localized string similar to Adds prefix to all queries, so that you can always include certain filters/modifiers without typing it every time.
///Space is not added automatically between prfix and query..
///Space is not added automatically between prefix and query..
/// </summary>
public static string Prefix_Description {
get {
@ -396,6 +423,15 @@ 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>

View File

@ -162,7 +162,7 @@
</data>
<data name="Max_Description" xml:space="preserve">
<value>Il numero massimo di elementi da mostrare nell'elenco dei risultati.</value>
</data>
</data>
<data name="more_results" xml:space="preserve">
<value>Vedi altro...</value>
</data>

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</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_Right click context menu</value>
</data>
<data name="copy_file" xml:space="preserve">
<value>Copy </value>
@ -265,4 +265,16 @@ Latest: {1}</value>
<data name="open_in_custom" xml:space="preserve">
<value>Open path in custom program (Ctrl+N)</value>
</data>
<data name="MissingLib" xml:space="preserve">
<value>Everything64.dll is missing, automatically download this file?</value>
</data>
<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>
<data name="delete_result" xml:space="preserve">
<value>Delete file/folder (Ctrl+Del)</value>
</data>
</root>

View File

@ -122,7 +122,7 @@
</data>
<data name="Context_Description" xml:space="preserve">
<value>配置選單選項與順序
0_開啟資料夾、1_以管理員身分執行、2_以其他使用者身分執行、3_複製、4_複製路徑、5_在命令提示字元中開啟、6_在指定軟體中開啟</value>
0_開啟資料夾、1_以管理員身分執行、2_以其他使用者身分執行、3_複製、4_複製路徑、5_在命令提示字元中開啟、6_在指定軟體中開啟、 7_刪除檔案/資料夾、 8_右鍵選單</value>
</data>
<data name="copy_file" xml:space="preserve">
<value>複製</value>
@ -130,6 +130,10 @@
<data name="copy_path" xml:space="preserve">
<value>複製路徑</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="EnvVar" type="System.Resources.ResXNullRef, System.Windows.Forms">
<value />
</data>
<data name="EnvVar_Description" xml:space="preserve">
<value>搜尋時可用環境變數,但會增加搜尋時間</value>
</data>
@ -214,4 +218,16 @@
<data name="open_in_custom" xml:space="preserve">
<value>在指定軟體裡開起 (Ctrl+N)</value>
</data>
<data name="MissingLib" xml:space="preserve">
<value>缺少 Everything.64.dll是否自動下載</value>
</data>
<data name="History" xml:space="preserve">
<value>已啟用「包含全域結果中」選項於History插件可能會與 EPT 發生衝突。</value>
</data>
<data name="right_click" xml:space="preserve">
<value>右鍵選單 (Ctrl+M)</value>
</data>
<data name="delete_result" xml:space="preserve">
<value>刪除檔案/資料夾 (Ctrl+Del)</value>
</data>
</root>

View File

@ -1,6 +1,6 @@
using Wox.Plugin.Interfaces;
namespace Community.PowerToys.Run.Plugin.Everything
namespace Community.PowerToys.Run.Plugin.Everything.SearchHelper
{
public class SearchResult : IFileDropResult
{

View File

@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using NLog;
using Wox.Plugin.Logger;
using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods;
@ -9,44 +10,39 @@ namespace Community.PowerToys.Run.Plugin.Everything
{
public class Settings
{
internal bool Is1_4 { get; set; }
// Settings from PTR settings
public Sort Sort { get; set; } = Sort.NAME_ASCENDING;
public uint Max { get; set; } = 10;
public string Context { get; set; } = "0123456";
public bool Copy { get; set; }
public bool MatchPath { get; set; }
public bool Preview { get; set; } = true;
public bool QueryText { get; set; }
public bool RegEx { get; set; }
public bool EnvVar { get; set; }
public bool Updates { get; set; } = true;
public string Skip { get; set; }
public string Prefix { get; set; }
public string EverythingPath { get; set; }
public bool ShowMore { get; set; } = true;
public string CustomProgram { get; set; } = "notepad.exe";
public string CustomArg { get; set; } = "$P";
#if DEBUG
public LogLevel Log { get; set; } = LogLevel.None;
#endif
internal Sort Sort { get; set; } = Sort.NAME_ASCENDING;
internal uint Max { get; set; } = 10;
internal string Context { get; set; } = "01234568";
internal bool Copy { get; set; }
internal bool MatchPath { get; set; }
internal bool Preview { get; set; } = true;
internal bool QueryText { get; set; }
internal bool RegEx { get; set; }
internal bool EnvVar { get; set; }
internal bool Updates { get; set; } = true;
internal string Prefix { get; set; }
internal string EverythingPath { get; set; }
internal bool ShowMore { get; set; } = true;
internal string CustomProgram { get; set; } = "notepad.exe";
internal string CustomArg { get; set; } = "$P";
internal LogLevel LoggingLevel { get; set; } = LogLevel.Error;
// Get Filters from settings.toml
public Dictionary<string, string> Filters { get; } = [];
internal void Getfilters()
{
Log.Info("User on Everything 1.4", GetType());
#if DEBUG
if (Log > LogLevel.None)
Debugger.Write("2.Getting Filters...");
#endif
Is1_4 = true;
if (LoggingLevel <= LogLevel.Info)
Log.Info("User on Everything 1.4, GettingFilters...", GetType());
string[] strArr;
try { strArr = File.ReadAllLines(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "settings.toml")); }
catch (Exception e)
{
#if DEBUG
if (Log > LogLevel.None)
Debugger.Write($"\r\nERROR: {e.Message}\r\n");
#endif
Log.Error($"Error reading settings.toml: {e.Message}", GetType());
return;
}
@ -60,18 +56,9 @@ namespace Community.PowerToys.Run.Plugin.Everything
if (kv[0].Contains(':'))
Filters.TryAdd(kv[0].ToLowerInvariant(), kv[1] + (kv[1].EndsWith(';') ? ' ' : string.Empty));
}
#if DEBUG
if (Log > LogLevel.None)
Debugger.Write(Log > LogLevel.Debug ? string.Join(Environment.NewLine, Filters) + "\r\n" : string.Empty + " GettingFilters...Done");
#endif
if (LoggingLevel <= LogLevel.Info)
Log.Info(LoggingLevel < LogLevel.Debug ? string.Join(Environment.NewLine, Filters) : " GettingFilters...Done", GetType());
}
}
#if DEBUG
public enum LogLevel
{
None,
Debug,
Verbose,
}
#endif
}

View File

@ -8,28 +8,28 @@ using System.Text.Json;
using System.Threading.Tasks;
using System.Windows;
using Community.PowerToys.Run.Plugin.Everything.Properties;
using NLog;
using Wox.Plugin.Logger;
namespace Community.PowerToys.Run.Plugin.Everything
namespace Community.PowerToys.Run.Plugin.Everything.Update
{
internal sealed class Update
internal sealed class UpdateChecker
{
private readonly CompositeFormat updateAvailable = CompositeFormat.Parse(Resources.UpdateAvailable);
internal async Task UpdateAsync(Version v, Settings s)
internal async Task Async(Version v, Settings s, UpdateSettings us, bool isArm)
{
string apiUrl = "https://api.github.com/repos/lin-ycv/EverythingPowerToys/releases/latest";
#if DEBUG
if (s.Log > LogLevel.None)
Debugger.Write("1.Checking Update...");
#endif
if (s.LoggingLevel <= LogLevel.Info) Log.Info("EPT: Checking Update...", GetType());
try
{
using HttpClient httpClient = new();
httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0");
HttpResponseMessage response = await httpClient.GetAsync(apiUrl);
#if DEBUG
if (s.Log == LogLevel.Verbose) Debugger.Write($"\tResponse: {response.StatusCode}");
#endif
if (s.LoggingLevel <= LogLevel.Debug) Log.Info($"EPT: Response: {response.StatusCode}", GetType());
if (response.IsSuccessStatusCode)
{
using JsonDocument jsonDocument = await JsonDocument.ParseAsync(await response.Content.ReadAsStreamAsync());
@ -37,19 +37,17 @@ namespace Community.PowerToys.Run.Plugin.Everything
Version latest = Version.TryParse(root.GetProperty("tag_name").GetString().AsSpan(1), out var vNumber)
? vNumber
: Version.Parse(root.GetProperty("tag_name").GetString());
if (latest > v && latest.ToString() != s.Skip)
if (s.LoggingLevel <= LogLevel.Debug) Log.Info($"EPT:\n\tLastest: {latest}\n\tSkip: {us.Skip}", GetType());
if (latest > v && latest != us.Skip)
{
MessageBoxResult mbox = MessageBox.Show(string.Format(CultureInfo.InvariantCulture, updateAvailable, v, latest), "Updater", MessageBoxButton.YesNoCancel);
MessageBoxResult mbox = MessageBox.Show(string.Format(CultureInfo.InvariantCulture, updateAvailable, v, latest), "EPT: Updater", MessageBoxButton.YesNoCancel);
if (mbox == MessageBoxResult.Yes && root.TryGetProperty("assets", out JsonElement assets))
{
string[] nameUrl = [string.Empty, string.Empty];
foreach (JsonElement asset in assets.EnumerateArray())
{
#if X64
if (asset.TryGetProperty("browser_download_url", out JsonElement downUrl) && downUrl.ToString().EndsWith("x64.exe", StringComparison.OrdinalIgnoreCase))
#elif ARM64
if (asset.TryGetProperty("browser_download_url", out JsonElement downUrl) && downUrl.ToString().EndsWith("ARM64.exe", StringComparison.OrdinalIgnoreCase))
#endif
if (asset.TryGetProperty("browser_download_url", out JsonElement downUrl) && downUrl.ToString().EndsWith(isArm ? "ARM64.exe" : "x64.exe", StringComparison.OrdinalIgnoreCase))
{
nameUrl[0] = asset.GetProperty("name").ToString();
nameUrl[1] = downUrl.ToString();
@ -62,6 +60,9 @@ namespace Community.PowerToys.Run.Plugin.Everything
string fileName = Path.Combine(Path.GetTempPath(), nameUrl[0]);
File.WriteAllBytes(fileName, fileContent);
Process.Start(fileName);
//foreach (Process pt in Process.GetProcessesByName("PowerToys"))
// pt.Kill();
}
else
{
@ -75,24 +76,19 @@ namespace Community.PowerToys.Run.Plugin.Everything
}
else if (mbox == MessageBoxResult.No)
{
s.Skip = latest.ToString();
us.Skip = latest;
}
}
}
}
#if RELEASE
catch
{ }
#else
catch (Exception e)
{
if (s.Log > LogLevel.None)
Debugger.Write($"\r\nERROR: {e.Message}\r\n{e.StackTrace}\r\n");
if (s.LoggingLevel < LogLevel.Error)
Log.Exception($"EPT: Unable to check for update", e, GetType());
}
if (s.Log > LogLevel.None)
Debugger.Write(" Checking Update...Done");
#endif
if (s.LoggingLevel < LogLevel.Error)
Log.Info("EPT: Checking Update...Done", GetType());
}
}
}

9
Update/UpdateSettings.cs Normal file
View File

@ -0,0 +1,9 @@
using System;
namespace Community.PowerToys.Run.Plugin.Everything.Update
{
public class UpdateSettings
{
public Version Skip { get; set; } = new Version(0, 0, 0, 0);
}
}

View File

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