mirror of
https://github.com/lin-ycv/EverythingPowerToys.git
synced 2025-01-07 03:16:41 +08:00
v0.66.0
This commit is contained in:
parent
923ba89933
commit
2590926641
@ -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;
|
||||
|
@ -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)
|
||||
|
@ -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
31
Main.cs
@ -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;
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
12
Settings.cs
12
Settings.cs
@ -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
|
||||
|
12
Update.cs
12
Update.cs
@ -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)
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user