This commit is contained in:
Lin Yu-Chieh (Victor) 2023-01-07 02:20:22 +08:00
parent 923ba89933
commit 2590926641
9 changed files with 63 additions and 61 deletions

View File

@ -1,15 +1,16 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using Wox.Infrastructure;
using Wox.Plugin;
using Wox.Plugin.Logger;
namespace Community.PowerToys.Run.Plugin.Everything
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using Wox.Infrastructure;
using Wox.Plugin;
using Wox.Plugin.Logger;
internal class ContextMenuLoader : IContextMenu
{
private readonly PluginInitContext _context;

View File

@ -1,14 +1,14 @@
namespace Community.PowerToys.Run.Plugin.Everything
{
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Text;
using Community.PowerToys.Run.Plugin.Everything.Properties;
using Wox.Plugin;
using static Interop.NativeMethods;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Text;
using Community.PowerToys.Run.Plugin.Everything.Properties;
using Wox.Plugin;
using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods;
namespace Community.PowerToys.Run.Plugin.Everything
{
internal class Everything
{
internal Everything(Settings setting)

View File

@ -1,9 +1,9 @@
namespace Community.PowerToys.Run.Plugin.Everything.Interop
{
using System;
using System.Runtime.InteropServices;
using System.Text;
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace Community.PowerToys.Run.Plugin.Everything.Interop
{
internal class NativeMethods
{
#region FlagsEnums

31
Main.cs
View File

@ -1,19 +1,20 @@
namespace Community.PowerToys.Run.Plugin.Everything
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows.Controls;
using Community.PowerToys.Run.Plugin.Everything.Properties;
using ManagedCommon;
using Microsoft.PowerToys.Settings.UI.Library;
using Wox.Infrastructure;
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
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows.Controls;
using Community.PowerToys.Run.Plugin.Everything.Properties;
using ManagedCommon;
using Microsoft.PowerToys.Settings.UI.Library;
using Wox.Infrastructure;
using Wox.Infrastructure.Storage;
using Wox.Plugin;
using Wox.Plugin.Logger;
using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods;
public class Main : IPlugin, IDisposable, IDelayedExecutionPlugin, IContextMenu, ISettingProvider, IPluginI18n
{
private IContextMenu _contextMenuLoader;

View File

@ -1,9 +1,9 @@
namespace Community.PowerToys.Run.Plugin.Everything.SearchHelper
{
using System;
using System.IO;
using static Interop.NativeMethods;
using System;
using System.IO;
using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods;
namespace Community.PowerToys.Run.Plugin.Everything.SearchHelper
{
internal class IconLoader
{
#pragma warning disable CS8632 // The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

View File

@ -1,7 +1,7 @@
namespace Community.PowerToys.Run.Plugin.Everything
{
using Wox.Plugin.Interfaces;
using Wox.Plugin.Interfaces;
namespace Community.PowerToys.Run.Plugin.Everything
{
public class SearchResult : IFileDropResult
{
// Contains the Path of the file or folder

View File

@ -1,10 +1,10 @@
namespace Community.PowerToys.Run.Plugin.Everything
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
namespace Community.PowerToys.Run.Plugin.Everything
{
internal class Settings
{
// Settings from PTR settings

View File

@ -1,10 +1,10 @@
namespace Community.PowerToys.Run.Plugin.Everything
{
using System;
using System.Diagnostics;
using System.Windows;
using System.Xml;
using System;
using System.Diagnostics;
using System.Windows;
using System.Xml;
namespace Community.PowerToys.Run.Plugin.Everything
{
internal class Update
{
internal Update(Version v)

View File

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