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** **Flight Check**
- [ ] I'm sure existing (open and closed) don't have duplicates - [ ] 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** **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. If applicable, add screenshots to help explain your problem.
**Logs (please upload or provide link to you log):** **Logs (please upload or provide link to you log):**
Logs can be generated by right clicking the taskbar icon > Report Bug Logs can be found at `%localappdata%\Microsoft\PowerToys\PowerToys Run\Logs`
or 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:** **Version:**
- PowerToy: - PowerToy:

View File

@ -45,15 +45,15 @@ jobs:
choco push everythingpowertoys.$ver.nupkg --source https://push.chocolatey.org/ choco push everythingpowertoys.$ver.nupkg --source https://push.chocolatey.org/
# winget # winget
# $wingetPackage = "lin-ycv.EverythingPowerToys" $wingetPackage = "lin-ycv.EverythingPowerToys"
# echo $wingetPackage $ver $exe $exehash $exeARM $exeARMhash echo $wingetPackage $ver $exe $exehash $exeARM $exeARMhash
# rm -Path .\* -Recurse -Force rm -Path .\* -Recurse -Force
# git clone -b winget https://github.com/lin-ycv/EverythingPowerToys.git --depth 1 git clone -b winget https://github.com/lin-ycv/EverythingPowerToys.git --depth 1
# Invoke-WebRequest https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe Invoke-WebRequest https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
# cd .\EverythingPowerToys cd .\EverythingPowerToys
# rm .git -Recurse -Force -Confirm:$false 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 $_ } 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 }} . ..\wingetcreate submit -p "New version: lin-ycv.EverythingPowerToys version $ver" -t ${{ secrets.EVERYTHINGPT }} .
# scoop # scoop
# cd .. # cd ..

View File

@ -28,7 +28,7 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'"> <PropertyGroup Condition="'$(Configuration)'=='Release'">
<DefineConstants>TRACE</DefineConstants> <DefineConstants></DefineConstants>
<OutputPath>bin\$(Platform)\$(Configuration)\Everything\</OutputPath> <OutputPath>bin\$(Platform)\$(Configuration)\Everything\</OutputPath>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<DebugType>none</DebugType> <DebugType>none</DebugType>
@ -49,12 +49,19 @@
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\..\..\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj"> <ProjectReference Include="..\..\..\..\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj">
<Private>false</Private> <Private>false</Private>
<CopyLocalSatelliteAssemblies>False</CopyLocalSatelliteAssemblies>
</ProjectReference>
<ProjectReference Include="..\..\PowerLauncher\PowerLauncher.csproj">
<Private>False</Private>
<CopyLocalSatelliteAssemblies>False</CopyLocalSatelliteAssemblies>
</ProjectReference> </ProjectReference>
<ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj"> <ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj">
<Private>false</Private> <Private>false</Private>
<CopyLocalSatelliteAssemblies>False</CopyLocalSatelliteAssemblies>
</ProjectReference> </ProjectReference>
<ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj"> <ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj">
<Private>false</Private> <Private>false</Private>
<CopyLocalSatelliteAssemblies>False</CopyLocalSatelliteAssemblies>
</ProjectReference> </ProjectReference>
</ItemGroup> </ItemGroup>
@ -88,11 +95,11 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Update="Everything64.dll"> <None Update="lib\Everything64.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None> </None>
<None Update="EverythingARM64.dll"> <None Update="lib\EverythingARM64.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None> </None>
<None Update="Images\Everything.dark.png"> <None Update="Images\Everything.dark.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
@ -117,7 +124,7 @@
</ItemGroup> </ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent"> <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> </Target>
</Project> </Project>

View File

@ -1,20 +1,19 @@
using System; using System;
using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;
using System.Reflection; using System.Reflection;
using System.Security.AccessControl;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows; using System.Windows;
using System.Windows.Input; using System.Windows.Input;
using Community.PowerToys.Run.Plugin.Everything.Properties; using Community.PowerToys.Run.Plugin.Everything.Properties;
using Community.PowerToys.Run.Plugin.Everything.SearchHelper;
using Wox.Infrastructure; using Wox.Infrastructure;
using Wox.Plugin; using Wox.Plugin;
using Wox.Plugin.Logger; using Wox.Plugin.Logger;
using wf = System.Windows.Forms;
namespace Community.PowerToys.Run.Plugin.Everything namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
{ {
internal sealed class ContextMenuLoader(PluginInitContext context, string options) : IContextMenu internal sealed class ContextMenuLoader(PluginInitContext context, string options) : IContextMenu
{ {
@ -73,7 +72,7 @@ namespace Community.PowerToys.Run.Plugin.Everything
break; break;
case '1': case '1':
// Run as Adsmin // Run as Admin
if (runAs) if (runAs)
{ {
contextMenus.Add(new ContextMenuResult contextMenus.Add(new ContextMenuResult
@ -251,6 +250,63 @@ namespace Community.PowerToys.Run.Plugin.Everything
}, },
}); });
break; 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: default:
break; break;
} }

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.Diagnostics;
using System.IO; using System.IO;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Threading;
using Community.PowerToys.Run.Plugin.Everything.Properties; using Community.PowerToys.Run.Plugin.Everything.Properties;
using Community.PowerToys.Run.Plugin.Everything.SearchHelper;
using NLog;
using Wox.Plugin; using Wox.Plugin;
using Wox.Plugin.Logger; using Wox.Plugin.Logger;
using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods; 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.LoggingLevel <= LogLevel.Debug)
if (setting.Log > LogLevel.None)
{ {
Debugger.Write($"\r\n\r\nNew Query: {query}\r\n" + Log.Info(
$"Prefix {setting.Prefix} | " + $"EPT:\nNew Query: {query}\n" +
$"Sort {(int)setting.Sort}_{Everything_GetSort()} | " + $"Prefix {setting.Prefix}\n" +
$"Max {setting.Max}_{Everything_GetMax()} | " + $"Sort {(int)setting.Sort}_{Everything_GetSort()}\n" +
$"Match Path {setting.MatchPath}_{Everything_GetMatchPath()} | " + $"Max {setting.Max}_{Everything_GetMax()}\n" +
$"Regex {setting.RegEx}_{Everything_GetRegex()}"); $"Match Path {setting.MatchPath}_{Everything_GetMatchPath()}\n" +
$"Regex {setting.RegEx}_{Everything_GetRegex()}",
GetType());
} }
#endif
string orgqry = query; string orgqry = query;
@ -62,43 +65,37 @@ namespace Community.PowerToys.Run.Plugin.Everything
if (setting.EnvVar && orgqry.Contains('%')) if (setting.EnvVar && orgqry.Contains('%'))
{ {
query = Environment.ExpandEnvironmentVariables(query).Replace(';', '|'); query = Environment.ExpandEnvironmentVariables(query).Replace(';', '|');
#if DEBUG if (setting.LoggingLevel <= LogLevel.Debug)
if (setting.Log > LogLevel.None) Log.Info($"EPT:EnvVariable\n{query}", GetType());
Debugger.Write($"EnvVariable\r\n{query}");
#endif
} }
if (Everything_GetMinorVersion() < 5 && orgqry.Contains(':')) if (setting.Is1_4 && orgqry.Contains(':'))
{ {
foreach (var kv in setting.Filters) foreach (var kv in setting.Filters)
{ {
if (query.Contains(kv.Key, StringComparison.OrdinalIgnoreCase)) if (query.Contains(kv.Key, StringComparison.OrdinalIgnoreCase))
{ {
query = query.Replace(kv.Key, kv.Value); query = query.Replace(kv.Key, string.Empty).Trim() + $" {kv.Value}";
#if DEBUG if (setting.LoggingLevel <= LogLevel.Debug)
if (setting.Log > LogLevel.None) Log.Info($"EPT: Contains Filter: {kv.Key}\n{query}", GetType());
Debugger.Write($"Contains Filter: {kv.Key}\r\n{query}");
#endif
} }
} }
} }
token.ThrowIfCancellationRequested();
Everything_SetSearchW(query); Everything_SetSearchW(query);
if (!Everything_QueryW(true)) if (!Everything_QueryW(true))
{ {
#if DEBUG if (setting.LoggingLevel < LogLevel.Error)
if (setting.Log > LogLevel.None) Log.Warn($"EPT: Unable to Query ({Everything_GetLastError()})", GetType());
Debugger.Write("\r\nUnable to Query\r\n");
#endif
throw new Win32Exception("Unable to Query"); throw new Win32Exception("Unable to Query");
} }
uint resultCount = Everything_GetNumResults(); uint resultCount = Everything_GetNumResults();
#if DEBUG if (setting.LoggingLevel <= LogLevel.Debug)
if (setting.Log > LogLevel.None) Log.Info($"EPT: Results = {resultCount}", GetType());
Debugger.Write($"Results: {resultCount}");
#endif
token.ThrowIfCancellationRequested();
bool showMore = setting.ShowMore && !string.IsNullOrEmpty(exe) && resultCount == setting.Max; bool showMore = setting.ShowMore && !string.IsNullOrEmpty(exe) && resultCount == setting.Max;
if (showMore) if (showMore)
{ {
@ -131,31 +128,32 @@ namespace Community.PowerToys.Run.Plugin.Everything
for (uint i = 0; i < resultCount; i++) for (uint i = 0; i < resultCount; i++)
{ {
#if DEBUG token.ThrowIfCancellationRequested();
if (setting.Log > LogLevel.None)
Debugger.Write($"\r\n===== RESULT #{i} =====");
#endif
string name = Marshal.PtrToStringUni(Everything_GetResultFileNameW(i)); string name = Marshal.PtrToStringUni(Everything_GetResultFileNameW(i));
string path = Marshal.PtrToStringUni(Everything_GetResultPathW(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; continue;
} }
string fullPath = Path.Combine(path, name); 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); bool isFolder = Everything_IsFolderResult(i);
if (isFolder) if (isFolder)
path = fullPath; path = fullPath;
string ext = Path.GetExtension(fullPath.Replace(".lnk", string.Empty));
#if DEBUG if (setting.LoggingLevel <= LogLevel.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}"); Log.Info(
#endif $"=====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() var r = new Result()
{ {
Title = name, Title = name,
@ -180,7 +178,7 @@ namespace Community.PowerToys.Run.Plugin.Everything
try try
{ {
process.Start(); process.Start();
_ = Everything_IncRunCountFromFileName(fullPath); _ = Everything_IncRunCountFromFileNameW(fullPath);
return true; return true;
} }
catch (Win32Exception) 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 namespace Community.PowerToys.Run.Plugin.Everything.Interop
{ {
public sealed class NativeMethods public sealed partial class NativeMethods
{ {
#region FlagsEnums #region FlagsEnums
[Flags] [Flags]
@ -56,90 +56,48 @@ namespace Community.PowerToys.Run.Plugin.Everything.Interop
DATE_RUN_ASCENDING, DATE_RUN_ASCENDING,
DATE_RUN_DESCENDING, 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 #endregion
internal const string dllName = "Everything64.dll"; internal const string dllName = "Everything64.dll";
[DllImport(dllName)] [LibraryImport(dllName)]
internal static extern uint Everything_GetNumResults(); internal static partial uint Everything_GetLastError();
[DllImport(dllName)] [LibraryImport(dllName)]
internal static partial uint Everything_GetNumResults(); //Everything3_GetResultListCount
[LibraryImport(dllName)]
[return: MarshalAs(UnmanagedType.Bool)] [return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool Everything_GetMatchPath(); internal static partial bool Everything_GetMatchPath();
[DllImport(dllName)] [LibraryImport(dllName)]
internal static extern uint Everything_GetMax(); internal static partial uint Everything_GetMax();
[DllImport(dllName)] [LibraryImport(dllName)]
internal static extern uint Everything_GetMinorVersion(); internal static partial uint Everything_GetMinorVersion();
[DllImport(dllName)] [LibraryImport(dllName)]
internal static extern bool Everything_GetRegex(); [return: MarshalAs(UnmanagedType.Bool)]
[DllImport(dllName, CharSet = CharSet.Unicode)] internal static partial bool Everything_GetRegex();
internal static extern IntPtr Everything_GetResultFileNameW(uint nIndex); [LibraryImport(dllName)]
[DllImport(dllName, CharSet = CharSet.Unicode)] internal static partial IntPtr Everything_GetResultFileNameW(uint nIndex);
internal static extern IntPtr Everything_GetResultPathW(uint nIndex); [LibraryImport(dllName)]
[DllImport(dllName)] internal static partial IntPtr Everything_GetResultPathW(uint nIndex);
internal static extern uint Everything_GetSort(); [LibraryImport(dllName)]
[DllImport(dllName, CharSet = CharSet.Unicode)] internal static partial uint Everything_GetSort();
internal static extern uint Everything_IncRunCountFromFileName(string lpFileName); [LibraryImport(dllName, StringMarshalling = StringMarshalling.Utf16)]
[DllImport(dllName)] internal static partial uint Everything_IncRunCountFromFileNameW(string lpFileName);
internal static extern bool Everything_IsFolderResult(uint index); [LibraryImport(dllName)]
[DllImport(dllName)] [return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool Everything_QueryW([MarshalAs(UnmanagedType.Bool)] bool bWait); internal static partial bool Everything_IsFolderResult(uint index);
[DllImport(dllName)] [LibraryImport(dllName)]
internal static extern void Everything_SetMax(uint dwMax); [return: MarshalAs(UnmanagedType.Bool)]
[DllImport(dllName)] internal static partial bool Everything_QueryW([MarshalAs(UnmanagedType.Bool)] bool bWait);
internal static extern void Everything_SetRegex([MarshalAs(UnmanagedType.Bool)] bool bEnable); [LibraryImport(dllName)]
[DllImport(dllName)] internal static partial void Everything_SetMax(uint dwMax);
internal static extern void Everything_SetRequestFlags(Request RequestFlags); [LibraryImport(dllName)]
[DllImport(dllName, CharSet = CharSet.Unicode)] internal static partial void Everything_SetRegex([MarshalAs(UnmanagedType.Bool)] bool bEnable);
internal static extern void Everything_SetSearchW(string lpSearchString); [LibraryImport(dllName)]
[DllImport(dllName)] internal static partial void Everything_SetRequestFlags(Request RequestFlags);
internal static extern bool Everything_SetMatchPath([MarshalAs(UnmanagedType.Bool)] bool bEnable); [LibraryImport(dllName, StringMarshalling = StringMarshalling.Utf16)]
[DllImport(dllName)] internal static partial void Everything_SetSearchW(string lpSearchString);
internal static extern void Everything_SetSort(Sort SortType); [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;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO;
using System.Linq; using System.Linq;
using System.Net.Http;
using System.Reflection; using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using Community.PowerToys.Run.Plugin.Everything.ContextMenu;
using Community.PowerToys.Run.Plugin.Everything.Properties; using Community.PowerToys.Run.Plugin.Everything.Properties;
using Microsoft.PowerToys.Settings.UI.Library; using Microsoft.PowerToys.Settings.UI.Library;
using NLog;
using PowerLauncher.Plugin;
using Wox.Infrastructure.Storage;
using Wox.Plugin; using Wox.Plugin;
using Wox.Plugin.Logger; using Wox.Plugin.Logger;
using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods; using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods;
namespace Community.PowerToys.Run.Plugin.Everything 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 static string PluginID => "A86867E2D932459CBD77D176373DD657";
public string Name => Resources.plugin_name; public string Name => Resources.plugin_name;
public string Description => Resources.plugin_description; public string Description => Resources.plugin_description;
private readonly Settings _setting = new(); private readonly Settings _setting = new();
private readonly PluginJsonStorage<Update.UpdateSettings> _storage = new();
private readonly bool _isArm = RuntimeInformation.ProcessArchitecture == Architecture.Arm64;
private Everything _everything; private Everything _everything;
private ContextMenuLoader _contextMenuLoader; private ContextMenuLoader _contextMenuLoader;
private CancellationTokenSource cts = new();
private bool _disposed; private bool _disposed;
public IEnumerable<PluginAdditionalOption> AdditionalOptions => public IEnumerable<PluginAdditionalOption> AdditionalOptions =>
@ -137,30 +149,56 @@ namespace Community.PowerToys.Run.Plugin.Everything
DisplayDescription = $"v{Assembly.GetExecutingAssembly().GetName().Version}", DisplayDescription = $"v{Assembly.GetExecutingAssembly().GetName().Version}",
Value = _setting.Updates, Value = _setting.Updates,
}, },
#if DEBUG
new() new()
{ {
Key = nameof(Settings.Log), Key = nameof(Settings.LoggingLevel),
DisplayLabel = "Debug Mode", DisplayLabel = "Log Level",
PluginOptionType = PluginAdditionalOption.AdditionalOptionType.Combobox, PluginOptionType = PluginAdditionalOption.AdditionalOptionType.Combobox,
ComboBoxItems = Enum.GetValues(typeof(LogLevel)).Cast<int>().Select(d => new KeyValuePair<string, string>(((LogLevel)d).ToString(), d + string.Empty)).ToList(), ComboBoxItems = LogLevel.AllLoggingLevels.Select(d => new KeyValuePair<string, string>(d.ToString(), d.Ordinal + string.Empty)).ToList(),
ComboBoxValue = (int)_setting.Log, ComboBoxValue = _setting.LoggingLevel.Ordinal,
}, },
#endif
]; ];
public void Init(PluginInitContext context) 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) 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(); if (Everything_GetMinorVersion() < 5) _setting.Getfilters();
_everything = new Everything(_setting); _everything = new Everything(_setting);
_contextMenuLoader = new ContextMenuLoader(context, _setting.Context); _contextMenuLoader = new ContextMenuLoader(context, _setting.Context);
_contextMenuLoader.Update(_setting); _contextMenuLoader.Update(_setting);
#if DEBUG var history = PluginManager.GlobalPlugins.FirstOrDefault(p => p.Metadata.ID == "C88512156BB74580AADF7252E130BA8D" && !p.Metadata.Disabled);
if (_setting.Log > LogLevel.None) if (history != null)
Debugger.Write("Init Complete\r\n"); Task.Run(() => MessageBox.Show(Resources.History, "EPT: History Conflict", MessageBoxButton.OK, MessageBoxImage.Warning));
#endif if (_setting.LoggingLevel <= LogLevel.Debug)
Log.Info("EPT: Init Complete", GetType());
} }
public void UpdateSettings(PowerLauncherPluginSettings settings) 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.CustomProgram = settings.AdditionalOptions.FirstOrDefault(x => x.Key == nameof(_setting.CustomProgram)).TextValue;
_setting.CustomArg = settings.AdditionalOptions.FirstOrDefault(x => x.Key == nameof(_setting.CustomArg)).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; _setting.ShowMore = settings.AdditionalOptions.FirstOrDefault(x => x.Key == nameof(_setting.ShowMore)).Value;
#if DEBUG _setting.LoggingLevel = LogLevel.FromOrdinal(settings.AdditionalOptions.FirstOrDefault(x => x.Key == nameof(_setting.LoggingLevel)).ComboBoxValue);
_setting.Log = (LogLevel)settings.AdditionalOptions.FirstOrDefault(x => x.Key == nameof(_setting.Log)).ComboBoxValue;
#endif
_everything?.UpdateSettings(_setting); _everything?.UpdateSettings(_setting);
_contextMenuLoader?.Update(_setting); _contextMenuLoader?.Update(_setting);
@ -193,8 +229,7 @@ namespace Community.PowerToys.Run.Plugin.Everything
public List<Result> Query(Query query) public List<Result> Query(Query query)
{ {
List<Result> results = []; return null;
return results;
} }
public List<Result> Query(Query query, bool delayedExecution) public List<Result> Query(Query query, bool delayedExecution)
@ -206,7 +241,14 @@ namespace Community.PowerToys.Run.Plugin.Everything
try 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) catch (System.ComponentModel.Win32Exception)
{ {
@ -220,12 +262,7 @@ namespace Community.PowerToys.Run.Plugin.Everything
} }
catch (Exception e) catch (Exception e)
{ {
#if DEBUG Log.Exception($"EPT: Exception! {e.Message}\n", e, GetType());
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());
} }
} }
@ -238,6 +275,8 @@ namespace Community.PowerToys.Run.Plugin.Everything
{ {
if (disposing) if (disposing)
{ {
cts.Cancel();
cts.Dispose();
} }
_disposed = true; _disposed = true;
@ -255,5 +294,6 @@ namespace Community.PowerToys.Run.Plugin.Everything
public Control CreateSettingPanel() => throw new NotImplementedException(); public Control CreateSettingPanel() => throw new NotImplementedException();
public string GetTranslatedPluginTitle() => Resources.plugin_name; public string GetTranslatedPluginTitle() => Resources.plugin_name;
public string GetTranslatedPluginDescription() => Resources.plugin_description; 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}" Name "${EPT}"
OutFile ".\..\bin\${EPT}-${ver}-${platform}.exe" OutFile ".\..\bin\${EPT}-${ver}-${platform}.exe"
RequestExecutionLevel user RequestExecutionLevel user
SetCompressor /SOLID /FINAL lzma ;SetCompressor /SOLID /FINAL lzma ; this increases chances of AV FP?
LicenseData "..\LICENSE" LicenseData "..\LICENSE"
;-------------------------------- ;--------------------------------
@ -47,7 +47,7 @@ Section ""
IfErrors 0 +5 IfErrors 0 +5
SetErrorlevel 1 SetErrorlevel 1
IfSilent +2 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 Abort
SectionEnd SectionEnd

View File

@ -80,7 +80,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.Properties {
/// <summary> /// <summary>
/// Looks up a localized string similar to Configure context menu options and order. /// 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> /// </summary>
public static string Context_Description { public static string Context_Description {
get { 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> /// <summary>
/// Looks up a localized string similar to Enviroment Variables. /// Looks up a localized string similar to Enviroment Variables.
/// </summary> /// </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> /// <summary>
/// Looks up a localized string similar to Match Path. /// Looks up a localized string similar to Match Path.
/// </summary> /// </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> /// <summary>
/// Looks up a localized string similar to See more.... /// Looks up a localized string similar to See more....
/// </summary> /// </summary>
@ -333,7 +360,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.Properties {
/// <summary> /// <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. /// 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> /// </summary>
public static string Prefix_Description { public static string Prefix_Description {
get { 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> /// <summary>
/// Looks up a localized string similar to Run as administrator (Ctrl+Shift+Enter). /// Looks up a localized string similar to Run as administrator (Ctrl+Shift+Enter).
/// </summary> /// </summary>

View File

@ -125,7 +125,7 @@
</data> </data>
<data name="Context_Description" xml:space="preserve"> <data name="Context_Description" xml:space="preserve">
<value>Configure context menu options and order. <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>
<data name="copy_file" xml:space="preserve"> <data name="copy_file" xml:space="preserve">
<value>Copy </value> <value>Copy </value>
@ -265,4 +265,16 @@ Latest: {1}</value>
<data name="open_in_custom" xml:space="preserve"> <data name="open_in_custom" xml:space="preserve">
<value>Open path in custom program (Ctrl+N)</value> <value>Open path in custom program (Ctrl+N)</value>
</data> </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> </root>

View File

@ -122,7 +122,7 @@
</data> </data>
<data name="Context_Description" xml:space="preserve"> <data name="Context_Description" xml:space="preserve">
<value>配置選單選項與順序 <value>配置選單選項與順序
0_開啟資料夾、1_以管理員身分執行、2_以其他使用者身分執行、3_複製、4_複製路徑、5_在命令提示字元中開啟、6_在指定軟體中開啟</value> 0_開啟資料夾、1_以管理員身分執行、2_以其他使用者身分執行、3_複製、4_複製路徑、5_在命令提示字元中開啟、6_在指定軟體中開啟、 7_刪除檔案/資料夾、 8_右鍵選單</value>
</data> </data>
<data name="copy_file" xml:space="preserve"> <data name="copy_file" xml:space="preserve">
<value>複製</value> <value>複製</value>
@ -130,6 +130,10 @@
<data name="copy_path" xml:space="preserve"> <data name="copy_path" xml:space="preserve">
<value>複製路徑</value> <value>複製路徑</value>
</data> </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"> <data name="EnvVar_Description" xml:space="preserve">
<value>搜尋時可用環境變數,但會增加搜尋時間</value> <value>搜尋時可用環境變數,但會增加搜尋時間</value>
</data> </data>
@ -214,4 +218,16 @@
<data name="open_in_custom" xml:space="preserve"> <data name="open_in_custom" xml:space="preserve">
<value>在指定軟體裡開起 (Ctrl+N)</value> <value>在指定軟體裡開起 (Ctrl+N)</value>
</data> </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> </root>

View File

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

View File

@ -2,6 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Reflection; using System.Reflection;
using NLog;
using Wox.Plugin.Logger; using Wox.Plugin.Logger;
using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods; using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods;
@ -9,44 +10,39 @@ namespace Community.PowerToys.Run.Plugin.Everything
{ {
public class Settings public class Settings
{ {
internal bool Is1_4 { get; set; }
// Settings from PTR settings // Settings from PTR settings
public Sort Sort { get; set; } = Sort.NAME_ASCENDING; internal Sort Sort { get; set; } = Sort.NAME_ASCENDING;
public uint Max { get; set; } = 10; internal uint Max { get; set; } = 10;
public string Context { get; set; } = "0123456"; internal string Context { get; set; } = "01234568";
public bool Copy { get; set; } internal bool Copy { get; set; }
public bool MatchPath { get; set; } internal bool MatchPath { get; set; }
public bool Preview { get; set; } = true; internal bool Preview { get; set; } = true;
public bool QueryText { get; set; } internal bool QueryText { get; set; }
public bool RegEx { get; set; } internal bool RegEx { get; set; }
public bool EnvVar { get; set; } internal bool EnvVar { get; set; }
public bool Updates { get; set; } = true; internal bool Updates { get; set; } = true;
public string Skip { get; set; } internal string Prefix { get; set; }
public string Prefix { get; set; } internal string EverythingPath { get; set; }
public string EverythingPath { get; set; } internal bool ShowMore { get; set; } = true;
public bool ShowMore { get; set; } = true; internal string CustomProgram { get; set; } = "notepad.exe";
public string CustomProgram { get; set; } = "notepad.exe"; internal string CustomArg { get; set; } = "$P";
public string CustomArg { get; set; } = "$P"; internal LogLevel LoggingLevel { get; set; } = LogLevel.Error;
#if DEBUG
public LogLevel Log { get; set; } = LogLevel.None;
#endif
// Get Filters from settings.toml // Get Filters from settings.toml
public Dictionary<string, string> Filters { get; } = []; public Dictionary<string, string> Filters { get; } = [];
internal void Getfilters() internal void Getfilters()
{ {
Log.Info("User on Everything 1.4", GetType()); Is1_4 = true;
#if DEBUG if (LoggingLevel <= LogLevel.Info)
if (Log > LogLevel.None) Log.Info("User on Everything 1.4, GettingFilters...", GetType());
Debugger.Write("2.Getting Filters...");
#endif
string[] strArr; string[] strArr;
try { strArr = File.ReadAllLines(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "settings.toml")); } try { strArr = File.ReadAllLines(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "settings.toml")); }
catch (Exception e) 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()); Log.Error($"Error reading settings.toml: {e.Message}", GetType());
return; return;
} }
@ -60,18 +56,9 @@ namespace Community.PowerToys.Run.Plugin.Everything
if (kv[0].Contains(':')) if (kv[0].Contains(':'))
Filters.TryAdd(kv[0].ToLowerInvariant(), kv[1] + (kv[1].EndsWith(';') ? ' ' : string.Empty)); Filters.TryAdd(kv[0].ToLowerInvariant(), kv[1] + (kv[1].EndsWith(';') ? ' ' : string.Empty));
} }
#if DEBUG
if (Log > LogLevel.None) if (LoggingLevel <= LogLevel.Info)
Debugger.Write(Log > LogLevel.Debug ? string.Join(Environment.NewLine, Filters) + "\r\n" : string.Empty + " GettingFilters...Done"); Log.Info(LoggingLevel < LogLevel.Debug ? string.Join(Environment.NewLine, Filters) : " GettingFilters...Done", GetType());
#endif
} }
} }
#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.Threading.Tasks;
using System.Windows; using System.Windows;
using Community.PowerToys.Run.Plugin.Everything.Properties; 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); 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"; string apiUrl = "https://api.github.com/repos/lin-ycv/EverythingPowerToys/releases/latest";
#if DEBUG if (s.LoggingLevel <= LogLevel.Info) Log.Info("EPT: Checking Update...", GetType());
if (s.Log > LogLevel.None)
Debugger.Write("1.Checking Update...");
#endif
try try
{ {
using HttpClient httpClient = new(); using HttpClient httpClient = new();
httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0"); httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0");
HttpResponseMessage response = await httpClient.GetAsync(apiUrl); HttpResponseMessage response = await httpClient.GetAsync(apiUrl);
#if DEBUG if (s.LoggingLevel <= LogLevel.Debug) Log.Info($"EPT: Response: {response.StatusCode}", GetType());
if (s.Log == LogLevel.Verbose) Debugger.Write($"\tResponse: {response.StatusCode}");
#endif
if (response.IsSuccessStatusCode) if (response.IsSuccessStatusCode)
{ {
using JsonDocument jsonDocument = await JsonDocument.ParseAsync(await response.Content.ReadAsStreamAsync()); 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) Version latest = Version.TryParse(root.GetProperty("tag_name").GetString().AsSpan(1), out var vNumber)
? vNumber ? vNumber
: Version.Parse(root.GetProperty("tag_name").GetString()); : 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)) if (mbox == MessageBoxResult.Yes && root.TryGetProperty("assets", out JsonElement assets))
{ {
string[] nameUrl = [string.Empty, string.Empty]; string[] nameUrl = [string.Empty, string.Empty];
foreach (JsonElement asset in assets.EnumerateArray()) foreach (JsonElement asset in assets.EnumerateArray())
{ {
#if X64 if (asset.TryGetProperty("browser_download_url", out JsonElement downUrl) && downUrl.ToString().EndsWith(isArm ? "ARM64.exe" : "x64.exe", StringComparison.OrdinalIgnoreCase))
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
{ {
nameUrl[0] = asset.GetProperty("name").ToString(); nameUrl[0] = asset.GetProperty("name").ToString();
nameUrl[1] = downUrl.ToString(); nameUrl[1] = downUrl.ToString();
@ -62,6 +60,9 @@ namespace Community.PowerToys.Run.Plugin.Everything
string fileName = Path.Combine(Path.GetTempPath(), nameUrl[0]); string fileName = Path.Combine(Path.GetTempPath(), nameUrl[0]);
File.WriteAllBytes(fileName, fileContent); File.WriteAllBytes(fileName, fileContent);
Process.Start(fileName); Process.Start(fileName);
//foreach (Process pt in Process.GetProcessesByName("PowerToys"))
// pt.Kill();
} }
else else
{ {
@ -75,24 +76,19 @@ namespace Community.PowerToys.Run.Plugin.Everything
} }
else if (mbox == MessageBoxResult.No) else if (mbox == MessageBoxResult.No)
{ {
s.Skip = latest.ToString(); us.Skip = latest;
} }
} }
} }
} }
#if RELEASE
catch
{ }
#else
catch (Exception e) catch (Exception e)
{ {
if (s.Log > LogLevel.None) if (s.LoggingLevel < LogLevel.Error)
Debugger.Write($"\r\nERROR: {e.Message}\r\n{e.StackTrace}\r\n"); Log.Exception($"EPT: Unable to check for update", e, GetType());
}
} if (s.LoggingLevel < LogLevel.Error)
if (s.Log > LogLevel.None) Log.Info("EPT: Checking Update...Done", GetType());
Debugger.Write(" Checking Update...Done");
#endif
} }
} }
} }

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, "IsGlobal": true,
"Name": "Everything", "Name": "Everything",
"Author": "Yu Chieh (Victor) Lin", "Author": "Yu Chieh (Victor) Lin",
"Version": "0.87.0", "Version": "0.0.2",
"Language": "csharp", "Language": "csharp",
"Website": "https://github.com/Lin-ycv/EverythingPowerToys", "Website": "https://github.com/Lin-ycv/EverythingPowerToys",
"ExecuteFileName": "Community.PowerToys.Run.Plugin.Everything.dll", "ExecuteFileName": "Community.PowerToys.Run.Plugin.Everything.dll",