diff --git a/Flow.Launcher.Infrastructure/Constant.cs b/Flow.Launcher.Infrastructure/Constant.cs index a96d0e5b3cd..a8c72fb122f 100644 --- a/Flow.Launcher.Infrastructure/Constant.cs +++ b/Flow.Launcher.Infrastructure/Constant.cs @@ -27,7 +27,6 @@ public static class Constant public static readonly string ErrorIcon = Path.Combine(ProgramDirectory, "Images", "app_error.png"); public static string PythonPath; - public static string EverythingSDKPath; public static readonly string QueryTextBoxIconImagePath = $"{ProgramDirectory}\\Images\\mainsearch.png"; diff --git a/Flow.Launcher.Infrastructure/Exception/ExceptionFormatter.cs b/Flow.Launcher.Infrastructure/Exception/ExceptionFormatter.cs index 78cd4f9eae8..3849f6e30b0 100644 --- a/Flow.Launcher.Infrastructure/Exception/ExceptionFormatter.cs +++ b/Flow.Launcher.Infrastructure/Exception/ExceptionFormatter.cs @@ -67,7 +67,6 @@ private static string CreateExceptionReport(System.Exception ex) sb.AppendLine($"* IntPtr Length: {IntPtr.Size}"); sb.AppendLine($"* x64: {Environment.Is64BitOperatingSystem}"); sb.AppendLine($"* Python Path: {Constant.PythonPath}"); - sb.AppendLine($"* Everything SDK Path: {Constant.EverythingSDKPath}"); sb.AppendLine($"* CLR Version: {Environment.Version}"); sb.AppendLine($"* Installed .NET Framework: "); foreach (var result in GetFrameworkVersionFromRegistry()) diff --git a/Flow.Launcher.Infrastructure/Image/ImageLoader.cs b/Flow.Launcher.Infrastructure/Image/ImageLoader.cs index ed3a6584d6f..0bf575337c7 100644 --- a/Flow.Launcher.Infrastructure/Image/ImageLoader.cs +++ b/Flow.Launcher.Infrastructure/Image/ImageLoader.cs @@ -156,9 +156,8 @@ private static ImageResult GetThumbnailResult(ref string path, bool loadFullImag if (Directory.Exists(path)) { /* Directories can also have thumbnails instead of shell icons. - * Generating thumbnails for a bunch of folders while scrolling through - * results from Everything makes a big impact on performance and - * Flow.Launcher responsibility. + * Generating thumbnails for a bunch of folder results while scrolling + * could have a big impact on performance and Flow.Launcher responsibility. * - Solution: just load the icon */ type = ImageType.Folder; diff --git a/Flow.Launcher.sln b/Flow.Launcher.sln index 70155a8a09e..1dd93b2ba38 100644 --- a/Flow.Launcher.sln +++ b/Flow.Launcher.sln @@ -13,7 +13,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{3A73 EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher", "Flow.Launcher\Flow.Launcher.csproj", "{DB90F671-D861-46BB-93A3-F1304F5BA1C5}" ProjectSection(ProjectDependencies) = postProject - {230AE83F-E92E-4E69-8355-426B305DA9C0} = {230AE83F-E92E-4E69-8355-426B305DA9C0} {1EE20B48-82FB-48A2-8086-675D6DDAB4F0} = {1EE20B48-82FB-48A2-8086-675D6DDAB4F0} {0B9DE348-9361-4940-ADB6-F5953BFFCCEC} = {0B9DE348-9361-4940-ADB6-F5953BFFCCEC} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {FDB3555B-58EF-4AE6-B5F1-904719637AB4} @@ -49,8 +48,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Url", EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Color", "Plugins\Flow.Launcher.Plugin.Color\Flow.Launcher.Plugin.Color.csproj", "{F35190AA-4758-4D9E-A193-E3BDF6AD3567}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Everything", "Plugins\Flow.Launcher.Plugin.Everything\Flow.Launcher.Plugin.Everything.csproj", "{230AE83F-E92E-4E69-8355-426B305DA9C0}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{FFD651C7-0546-441F-BC8C-D4EE8FD01EA7}" ProjectSection(SolutionItems) = preProject .gitattributes = .gitattributes @@ -240,18 +237,6 @@ Global {F35190AA-4758-4D9E-A193-E3BDF6AD3567}.Release|x64.Build.0 = Release|Any CPU {F35190AA-4758-4D9E-A193-E3BDF6AD3567}.Release|x86.ActiveCfg = Release|Any CPU {F35190AA-4758-4D9E-A193-E3BDF6AD3567}.Release|x86.Build.0 = Release|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Debug|x64.ActiveCfg = Debug|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Debug|x64.Build.0 = Debug|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Debug|x86.ActiveCfg = Debug|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Debug|x86.Build.0 = Debug|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Release|Any CPU.Build.0 = Release|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Release|x64.ActiveCfg = Release|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Release|x64.Build.0 = Release|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Release|x86.ActiveCfg = Release|Any CPU - {230AE83F-E92E-4E69-8355-426B305DA9C0}.Release|x86.Build.0 = Release|Any CPU {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|Any CPU.Build.0 = Debug|Any CPU {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -325,7 +310,6 @@ Global {0B9DE348-9361-4940-ADB6-F5953BFFCCEC} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {A3DCCBCA-ACC1-421D-B16E-210896234C26} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {F35190AA-4758-4D9E-A193-E3BDF6AD3567} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} - {230AE83F-E92E-4E69-8355-426B305DA9C0} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {9B130CC5-14FB-41FF-B310-0A95B6894C37} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} diff --git a/Flow.Launcher/Helper/ErrorReporting.cs b/Flow.Launcher/Helper/ErrorReporting.cs index 3d02633381c..94e2ed2bc65 100644 --- a/Flow.Launcher/Helper/ErrorReporting.cs +++ b/Flow.Launcher/Helper/ErrorReporting.cs @@ -41,8 +41,7 @@ public static string RuntimeInfo() public static string DependenciesInfo() { - var info = $"\nPython Path: {Constant.PythonPath}" + - $"\nEverything SDK Path: {Constant.EverythingSDKPath}"; + var info = $"\nPython Path: {Constant.PythonPath}"; return info; } } diff --git a/Plugins/Flow.Launcher.Plugin.Everything/.gitattributes b/Plugins/Flow.Launcher.Plugin.Everything/.gitattributes deleted file mode 100644 index 1ff0c423042..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/.gitattributes +++ /dev/null @@ -1,63 +0,0 @@ -############################################################################### -# Set default behavior to automatically normalize line endings. -############################################################################### -* text=auto - -############################################################################### -# Set default behavior for command prompt diff. -# -# This is need for earlier builds of msysgit that does not have it on by -# default for csharp files. -# Note: This is only used by command line -############################################################################### -#*.cs diff=csharp - -############################################################################### -# Set the merge driver for project and solution files -# -# Merging from the command prompt will add diff markers to the files if there -# are conflicts (Merging from VS is not affected by the settings below, in VS -# the diff markers are never inserted). Diff markers may cause the following -# file extensions to fail to load in VS. An alternative would be to treat -# these files as binary and thus will always conflict and require user -# intervention with every merge. To do so, just uncomment the entries below -############################################################################### -#*.sln merge=binary -#*.csproj merge=binary -#*.vbproj merge=binary -#*.vcxproj merge=binary -#*.vcproj merge=binary -#*.dbproj merge=binary -#*.fsproj merge=binary -#*.lsproj merge=binary -#*.wixproj merge=binary -#*.modelproj merge=binary -#*.sqlproj merge=binary -#*.wwaproj merge=binary - -############################################################################### -# behavior for image files -# -# image files are treated as binary by default. -############################################################################### -#*.jpg binary -#*.png binary -#*.gif binary - -############################################################################### -# diff behavior for common document formats -# -# Convert binary document formats to text before diffing them. This feature -# is only available from the command line. Turn it on by uncommenting the -# entries below. -############################################################################### -#*.doc diff=astextplain -#*.DOC diff=astextplain -#*.docx diff=astextplain -#*.DOCX diff=astextplain -#*.dot diff=astextplain -#*.DOT diff=astextplain -#*.pdf diff=astextplain -#*.PDF diff=astextplain -#*.rtf diff=astextplain -#*.RTF diff=astextplain diff --git a/Plugins/Flow.Launcher.Plugin.Everything/.gitignore b/Plugins/Flow.Launcher.Plugin.Everything/.gitignore deleted file mode 100644 index 2f72fc4243c..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/.gitignore +++ /dev/null @@ -1,156 +0,0 @@ -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. - -# User-specific files -*.suo -*.user -*.sln.docstates - -# Build results - -[Dd]ebug/ -[Rr]elease/ -x64/ -build/ -[Bb]in/ -[Oo]bj/ - -# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets -!packages/*/build/ - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -*_i.c -*_p.c -*.ilk -*.meta -*.obj -*.pch -*.pdb -*.pgc -*.pgd -*.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.tmp_proj -*.log -*.vspscc -*.vssscc -.builds -*.pidb -*.log -*.scc - -# Visual C++ cache files -ipch/ -*.aps -*.ncb -*.opensdf -*.sdf -*.cachefile - -# Visual Studio profiler -*.psess -*.vsp -*.vspx - -# Guidance Automation Toolkit -*.gpState - -# ReSharper is a .NET coding add-in -_ReSharper*/ -*.[Rr]e[Ss]harper - -# TeamCity is a build add-in -_TeamCity* - -# DotCover is a Code Coverage Tool -*.dotCover - -# NCrunch -*.ncrunch* -.*crunch*.local.xml - -# Installshield output folder -[Ee]xpress/ - -# DocProject is a documentation generator add-in -DocProject/buildhelp/ -DocProject/Help/*.HxT -DocProject/Help/*.HxC -DocProject/Help/*.hhc -DocProject/Help/*.hhk -DocProject/Help/*.hhp -DocProject/Help/Html2 -DocProject/Help/html - -# Click-Once directory -publish/ - -# Publish Web Output -*.Publish.xml - -# NuGet Packages Directory -## TODO: If you have NuGet Package Restore enabled, uncomment the next line -packages/ - -# Windows Azure Build Output -csx -*.build.csdef - -# Windows Store app package directory -AppPackages/ - -# Others -sql/ -*.Cache -ClientBin/ -[Ss]tyle[Cc]op.* -~$* -*~ -*.dbmdl -*.[Pp]ublish.xml -*.pfx -*.publishsettings - -# RIA/Silverlight projects -Generated_Code/ - -# Backup & report files from converting an old project file to a newer -# Visual Studio version. Backup files are not needed, because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML -UpgradeLog*.htm - -# SQL Server files -App_Data/*.mdf -App_Data/*.ldf - - -#LightSwitch generated files -GeneratedArtifacts/ -_Pvt_Extensions/ -ModelManifest.xml - -# ========================= -# Windows detritus -# ========================= - -# Windows image file caches -Thumbs.db -ehthumbs.db - -# Folder config file -Desktop.ini - -# Recycle Bin used on file shares -$RECYCLE.BIN/ - -# Mac desktop service store files -.DS_Store diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/EverythingAPI.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/EverythingAPI.cs deleted file mode 100644 index 77875e1ec82..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/EverythingAPI.cs +++ /dev/null @@ -1,218 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.InteropServices; -using System.Text; -using System.Threading; -using Flow.Launcher.Infrastructure.Logger; -using Flow.Launcher.Plugin.Everything.Everything.Exceptions; - -namespace Flow.Launcher.Plugin.Everything.Everything -{ - public interface IEverythingApi - { - /// - /// Searches the specified key word. - /// - /// The key word. - /// token that allow cancellation - /// The offset. - /// The max count. - /// - List Search(string keyWord, CancellationToken token, int offset = 0, int maxCount = 100); - - void Load(string sdkPath); - } - - public sealed class EverythingApi : IEverythingApi - { - private const int BufferSize = 4096; - - private readonly object _syncObject = new object(); - // cached buffer to remove redundant allocations. - private readonly StringBuilder _buffer = new StringBuilder(BufferSize); - - public enum StateCode - { - OK, - MemoryError, - IPCError, - RegisterClassExError, - CreateWindowError, - CreateThreadError, - InvalidIndexError, - InvalidCallError - } - - /// - /// Gets or sets a value indicating whether [match path]. - /// - /// true if [match path]; otherwise, false. - public bool MatchPath - { - get - { - return EverythingApiDllImport.Everything_GetMatchPath(); - } - set - { - EverythingApiDllImport.Everything_SetMatchPath(value); - } - } - - /// - /// Gets or sets a value indicating whether [match case]. - /// - /// true if [match case]; otherwise, false. - public bool MatchCase - { - get - { - return EverythingApiDllImport.Everything_GetMatchCase(); - } - set - { - EverythingApiDllImport.Everything_SetMatchCase(value); - } - } - - /// - /// Gets or sets a value indicating whether [match whole word]. - /// - /// true if [match whole word]; otherwise, false. - public bool MatchWholeWord - { - get - { - return EverythingApiDllImport.Everything_GetMatchWholeWord(); - } - set - { - EverythingApiDllImport.Everything_SetMatchWholeWord(value); - } - } - - /// - /// Gets or sets a value indicating whether [enable regex]. - /// - /// true if [enable regex]; otherwise, false. - public bool EnableRegex - { - get - { - return EverythingApiDllImport.Everything_GetRegex(); - } - set - { - EverythingApiDllImport.Everything_SetRegex(value); - } - } - - /// - /// Resets this instance. - /// - public void Reset() - { - lock (_syncObject) - { - EverythingApiDllImport.Everything_Reset(); - } - } - - /// - /// Searches the specified key word and reset the everything API afterwards - /// - /// The key word. - /// when cancelled the current search will stop and exit (and would not reset) - /// The offset. - /// The max count. - /// - public List Search(string keyWord, CancellationToken token, int offset = 0, int maxCount = 100) - { - if (string.IsNullOrEmpty(keyWord)) - throw new ArgumentNullException(nameof(keyWord)); - - if (offset < 0) - throw new ArgumentOutOfRangeException(nameof(offset)); - - if (maxCount < 0) - throw new ArgumentOutOfRangeException(nameof(maxCount)); - - lock (_syncObject) - { - if (keyWord.StartsWith("@")) - { - EverythingApiDllImport.Everything_SetRegex(true); - keyWord = keyWord.Substring(1); - } - - EverythingApiDllImport.Everything_SetSearchW(keyWord); - EverythingApiDllImport.Everything_SetOffset(offset); - EverythingApiDllImport.Everything_SetMax(maxCount); - - if (token.IsCancellationRequested) - { - return null; - } - - - if (!EverythingApiDllImport.Everything_QueryW(true)) - { - CheckAndThrowExceptionOnError(); - return null; - } - - var results = new List(); - for (int idx = 0; idx < EverythingApiDllImport.Everything_GetNumResults(); ++idx) - { - if (token.IsCancellationRequested) - { - return null; - } - - EverythingApiDllImport.Everything_GetResultFullPathNameW(idx, _buffer, BufferSize); - - var result = new SearchResult { FullPath = _buffer.ToString() }; - if (EverythingApiDllImport.Everything_IsFolderResult(idx)) - result.Type = ResultType.Folder; - else if (EverythingApiDllImport.Everything_IsFileResult(idx)) - result.Type = ResultType.File; - - results.Add(result); - } - - Reset(); - - return results; - } - } - - [DllImport("kernel32.dll")] - private static extern int LoadLibrary(string name); - - public void Load(string sdkPath) - { - LoadLibrary(sdkPath); - } - - private static void CheckAndThrowExceptionOnError() - { - switch (EverythingApiDllImport.Everything_GetLastError()) - { - case StateCode.CreateThreadError: - throw new CreateThreadException(); - case StateCode.CreateWindowError: - throw new CreateWindowException(); - case StateCode.InvalidCallError: - throw new InvalidCallException(); - case StateCode.InvalidIndexError: - throw new InvalidIndexException(); - case StateCode.IPCError: - throw new IPCErrorException(); - case StateCode.MemoryError: - throw new MemoryErrorException(); - case StateCode.RegisterClassExError: - throw new RegisterClassExException(); - } - } - } -} diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/EverythingApiDllImport.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/EverythingApiDllImport.cs deleted file mode 100644 index 34afebe2305..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/EverythingApiDllImport.cs +++ /dev/null @@ -1,92 +0,0 @@ -using System.Runtime.InteropServices; -using System.Text; - -namespace Flow.Launcher.Plugin.Everything.Everything -{ - public sealed class EverythingApiDllImport - { - [DllImport(Main.DLL, CharSet = CharSet.Unicode)] - internal static extern int Everything_SetSearchW(string lpSearchString); - - [DllImport(Main.DLL)] - internal static extern void Everything_SetMatchPath(bool bEnable); - - [DllImport(Main.DLL)] - internal static extern void Everything_SetMatchCase(bool bEnable); - - [DllImport(Main.DLL)] - internal static extern void Everything_SetMatchWholeWord(bool bEnable); - - [DllImport(Main.DLL)] - internal static extern void Everything_SetRegex(bool bEnable); - - [DllImport(Main.DLL)] - internal static extern void Everything_SetMax(int dwMax); - - [DllImport(Main.DLL)] - internal static extern void Everything_SetOffset(int dwOffset); - - [DllImport(Main.DLL)] - internal static extern bool Everything_GetMatchPath(); - - [DllImport(Main.DLL)] - internal static extern bool Everything_GetMatchCase(); - - [DllImport(Main.DLL)] - internal static extern bool Everything_GetMatchWholeWord(); - - [DllImport(Main.DLL)] - internal static extern bool Everything_GetRegex(); - - [DllImport(Main.DLL)] - internal static extern uint Everything_GetMax(); - - [DllImport(Main.DLL)] - internal static extern uint Everything_GetOffset(); - - [DllImport(Main.DLL, CharSet = CharSet.Unicode)] - internal static extern string Everything_GetSearchW(); - - [DllImport(Main.DLL)] - internal static extern EverythingApi.StateCode Everything_GetLastError(); - - [DllImport(Main.DLL, CharSet = CharSet.Unicode)] - internal static extern bool Everything_QueryW(bool bWait); - - [DllImport(Main.DLL)] - internal static extern void Everything_SortResultsByPath(); - - [DllImport(Main.DLL)] - internal static extern int Everything_GetNumFileResults(); - - [DllImport(Main.DLL)] - internal static extern int Everything_GetNumFolderResults(); - - [DllImport(Main.DLL)] - internal static extern int Everything_GetNumResults(); - - [DllImport(Main.DLL)] - internal static extern int Everything_GetTotFileResults(); - - [DllImport(Main.DLL)] - internal static extern int Everything_GetTotFolderResults(); - - [DllImport(Main.DLL)] - internal static extern int Everything_GetTotResults(); - - [DllImport(Main.DLL)] - internal static extern bool Everything_IsVolumeResult(int nIndex); - - [DllImport(Main.DLL)] - internal static extern bool Everything_IsFolderResult(int nIndex); - - [DllImport(Main.DLL)] - internal static extern bool Everything_IsFileResult(int nIndex); - - [DllImport(Main.DLL, CharSet = CharSet.Unicode)] - internal static extern void Everything_GetResultFullPathNameW(int nIndex, StringBuilder lpString, int nMaxCount); - - [DllImport(Main.DLL)] - internal static extern void Everything_Reset(); - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/CreateThreadException.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/CreateThreadException.cs deleted file mode 100644 index 16f24b7defc..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/CreateThreadException.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; - -namespace Flow.Launcher.Plugin.Everything.Everything -{ - /// - /// - /// - public class CreateThreadException : ApplicationException - { - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/CreateWindowException.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/CreateWindowException.cs deleted file mode 100644 index 43c8cc5b078..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/CreateWindowException.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; - -namespace Flow.Launcher.Plugin.Everything.Everything -{ - /// - /// - /// - public class CreateWindowException : ApplicationException - { - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/IPCErrorException.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/IPCErrorException.cs deleted file mode 100644 index 2a63fae0b8a..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/IPCErrorException.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; - -namespace Flow.Launcher.Plugin.Everything.Everything -{ - /// - /// - /// - public class IPCErrorException : ApplicationException - { - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/InvalidCallException.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/InvalidCallException.cs deleted file mode 100644 index 58ae4a7134a..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/InvalidCallException.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; - -namespace Flow.Launcher.Plugin.Everything.Everything -{ - /// - /// - /// - public class InvalidCallException : ApplicationException - { - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/InvalidIndexException.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/InvalidIndexException.cs deleted file mode 100644 index bbd19f86238..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/InvalidIndexException.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; - -namespace Flow.Launcher.Plugin.Everything.Everything -{ - /// - /// - /// - public class InvalidIndexException : ApplicationException - { - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/MemoryErrorException.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/MemoryErrorException.cs deleted file mode 100644 index d79d6454310..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/MemoryErrorException.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; - -namespace Flow.Launcher.Plugin.Everything.Everything.Exceptions -{ - /// - /// - /// - public class MemoryErrorException : ApplicationException - { - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/RegisterClassExException.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/RegisterClassExException.cs deleted file mode 100644 index 79b2a1b3216..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/Exceptions/RegisterClassExException.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; - -namespace Flow.Launcher.Plugin.Everything.Everything -{ - /// - /// - /// - public class RegisterClassExException : ApplicationException - { - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/ResultType.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/ResultType.cs deleted file mode 100644 index f2514939b1b..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/ResultType.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Flow.Launcher.Plugin.Everything.Everything -{ - public enum ResultType - { - Volume, - Folder, - File - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Everything/Everything/SearchResult.cs b/Plugins/Flow.Launcher.Plugin.Everything/Everything/SearchResult.cs deleted file mode 100644 index be484d24892..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/Everything/SearchResult.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Flow.Launcher.Plugin.Everything.Everything -{ - public class SearchResult - { - public string FullPath { get; set; } - public ResultType Type { get; set; } - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Everything/EverythingSDK/x64/Everything.dll b/Plugins/Flow.Launcher.Plugin.Everything/EverythingSDK/x64/Everything.dll deleted file mode 100644 index 20c2ed86cab..00000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Everything/EverythingSDK/x64/Everything.dll and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Everything/EverythingSDK/x86/Everything.dll b/Plugins/Flow.Launcher.Plugin.Everything/EverythingSDK/x86/Everything.dll deleted file mode 100644 index 19761064e10..00000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Everything/EverythingSDK/x86/Everything.dll and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Everything/EverythingSettings.xaml b/Plugins/Flow.Launcher.Plugin.Everything/EverythingSettings.xaml deleted file mode 100644 index eb3ebbdac75..00000000000 --- a/Plugins/Flow.Launcher.Plugin.Everything/EverythingSettings.xaml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - -