Skip to content

Commit

Permalink
resolve issue #4, fulfilling the new plugin requirements for PluginID…
Browse files Browse the repository at this point in the history
… validation introduced in PowerToys release 0.75.0
  • Loading branch information
GTGalaxi committed Nov 24, 2023
1 parent 07e3cbd commit ca7fa7b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion QuickLookup.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.3.0</Version>
<Version>1.3.1</Version>
<Company>AusSec</Company>
<Authors>GTGalaxi</Authors>
<TargetFramework>net6.0</TargetFramework>
Expand All @@ -12,6 +12,7 @@
<Nullable>enable</Nullable>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="ManagedCommon">
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Quick Lookup Plugin for PowerToys Run

![build-status](https://github.com/GTGalaxi/quick-lookup-ptrun/actions/workflows/dotnet.yml/badge.svg) <a href="https://github.com/GTGalaxi/quick-lookup-ptrun/releases">![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/GTGalaxi/quick-lookup-ptrun?include_prereleases)</a>
![build-status](https://github.com/GTGalaxi/quick-lookup-ptrun/actions/workflows/dotnet.yml/badge.svg) [![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/GTGalaxi/quick-lookup-ptrun?include_prereleases)](https://github.com/GTGalaxi/quick-lookup-ptrun/releases)

This plugin for [PowerToys Run](https://learn.microsoft.com/en-us/windows/powertoys/run) allows you to quickly search for an IP address, domain name, hash or any other data points in a list of Cyber Security tools. It's perfect for security analysts, penetration testers, or anyone else who needs to quickly lookup information when investigating artifacts or alerts.

Expand All @@ -9,8 +9,9 @@ This plugin for [PowerToys Run](https://learn.microsoft.com/en-us/windows/powert
> **NOTE: As of version 0.72.0 or 0.73.0 (Not 100% sure as the release notes don't mention this), the directory for Powertoys Run plugins was changed!**
>
> If you already installed this or another plugin and it recently stopped working this may be why. You will need to move the plugin(s) from the old directory to the new one.
>
>
> The old plugin directory was:
>
> - **For machine wide install of PowerToys:** `C:\Program Files\PowerToys\modules\launcher\Plugins`
> - **For per user install of PowerToys:** `C:\Users\<yourusername>\AppData\Local\PowerToys\modules\launcher\Plugins`
Expand Down
2 changes: 2 additions & 0 deletions main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ public static (string, int) Subtitle(this string[] items, bool includeCount = tr
}
public class Main : IPlugin
{
public static string PluginID => "11EB1E4568DF43E0AE80AE1E46A052B0";

private string IconPath { get; set; } = "img/ql.dark.png";
public static PluginInitContext Context { get; set; } = null!;
public string Name => "Quick Lookup";
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Name": "Quick Lookup",
"Description": "Quick Lookup IP Addresses, Domains, Whois Records, Hashes and more!",
"Author": "gtgalaxi",
"Version": "1.3.0",
"Version": "1.3.1",
"Language": "csharp",
"Website": "https://github.com/GTGalaxi/quick-lookup-ptrun",
"IcoPathDark": "img\\ql.dark.png",
Expand Down

0 comments on commit ca7fa7b

Please sign in to comment.