Skip to content

Commit

Permalink
support for PT 0.75.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidegiacometti committed Oct 30, 2023
1 parent 7eb92a5 commit 3c5e42e
Show file tree
Hide file tree
Showing 16 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Read version
run: |
Expand Down
7 changes: 6 additions & 1 deletion Community.PowerToys.Run.Plugin.GitKraken.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.33516.290
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Community.PowerToys.Run.Plugin.GitKraken", "Community.PowerToys.Run.Plugin.GitKraken/Community.PowerToys.Run.Plugin.GitKraken.csproj", "{59418FCB-BD51-4002-ABAB-3AFE7E516E1F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.GitKraken", "Community.PowerToys.Run.Plugin.GitKraken\Community.PowerToys.Run.Plugin.GitKraken.csproj", "{59418FCB-BD51-4002-ABAB-3AFE7E516E1F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{ED5F93E2-EE2B-4EFE-8660-46CC85381D53}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Platforms>x64;ARM64;ARM64</Platforms>
<Platforms>x64;ARM64</Platforms>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Community.PowerToys.Run.Plugin.GitKraken/Libs/x64/Wox.Plugin.dll
Binary file not shown.
4 changes: 3 additions & 1 deletion Community.PowerToys.Run.Plugin.GitKraken/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ namespace Community.PowerToys.Run.Plugin.GitKraken
{
public class Main : IPlugin, IContextMenu
{
public static string PluginID => "582B10E1E9144702B5E18C3EDC3FF466";

private readonly RepositoryQuery _repositoryQuery;
private PluginInitContext? _context;
private string? _icoPath;
Expand Down Expand Up @@ -76,7 +78,7 @@ public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
{
Title = "Open containing folder (Ctrl+Shift+E)",
Glyph = "\xE838",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.E,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>0.0.2</Version>
<Version>0.1.0</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -9,7 +9,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.507">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Simple [PowerToys Run](https://learn.microsoft.com/windows/powertoys/run) experi
## Requirements

- GitKraken 9.x
- PowerToys minimum version 0.68.0
- PowerToys minimum version 0.75.0

## Installation

Expand Down

0 comments on commit 3c5e42e

Please sign in to comment.