Skip to content

Commit

Permalink
Simplify build process, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Grub4K committed Jan 8, 2024
1 parent be36fc0 commit 1ee2a69
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
13 changes: 8 additions & 5 deletions Karenify/Karenify.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Product>Karenify</Product>
<Description>Plugin for PowerToys Run to Karenify input and copy it to the clipboard</Description>
<Version>1.0.1</Version>
<Version>1.1.0</Version>
<Copyright>Copyright (c) 2023</Copyright>
<Authors>Simon Sawicki (Grub4K)</Authors>

Expand All @@ -18,18 +18,21 @@
<AssemblyName>Community.PowerToys.Run.Plugin.Karenify</AssemblyName>
</PropertyGroup>

<!-- You get these from `{PowerToysInstallDir}/...` -->
<!-- If the install location is different, put the libraries into `lib/` -->
<ItemGroup>
<Reference Include="PowerToys.Common.UI">
<HintPath>/lib/PowerToys.Common.UI.dll</HintPath>
<HintPath Condition="Exists('$(ProgramFiles)/PowerToys/PowerToys.Common.UI.dll')">$(ProgramFiles)/PowerToys/PowerToys.Common.UI.dll</HintPath>
<HintPath Condition="Exists('lib/PowerToys.Common.UI.dll')">lib/PowerToys.Common.UI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="PowerToys.ManagedCommon">
<HintPath>lib/PowerToys.ManagedCommon.dll</HintPath>
<HintPath Condition="Exists('$(ProgramFiles)/PowerToys/PowerToys.ManagedCommon.dll')">$(ProgramFiles)/PowerToys/PowerToys.ManagedCommon.dll</HintPath>
<HintPath Condition="Exists('lib/PowerToys.ManagedCommon.dll')">lib/PowerToys.ManagedCommon.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Wox.Plugin">
<HintPath>lib/Wox.Plugin.dll</HintPath>
<HintPath Condition="Exists('$(ProgramFiles)/PowerToys/Wox.Plugin.dll')">$(ProgramFiles)/PowerToys/Wox.Plugin.dll</HintPath>
<HintPath Condition="Exists('lib/Wox.Plugin.dll')">lib/Wox.Plugin.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Karenify/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"IsGlobal": false,
"Name": "Karenify",
"Author": "Simon Sawicki (Grub4K)",
"Version": "1.0.1",
"Version": "1.1.0",
"Language": "csharp",
"Website": "https://github.com/Grub4K/PTRun-Karenify",
"ExecuteFileName": "Community.PowerToys.Run.Plugin.Karenify.dll",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Install:
## Building

1. Clone this repository
2. Copy the following files from `%PROGRAMFILES%\PowerToys\modules\launcher` to the `Karenify/lib/` directory:
2. The build process takes the reference libraries from `%ProgramFiles%/PowerToys/`. If the install location differs or you want to build against another version, copy the following files to the `Karenify/lib/` directory:
- `PowerToys.Common.UI.dll`
- `PowerToys.ManagedCommon.dll`
- `Wox.Plugin.dll`
Expand Down

0 comments on commit 1ee2a69

Please sign in to comment.