Skip to content
This repository was archived by the owner on Jul 18, 2023. It is now read-only.

Commit 592ec2f

Browse files
authored
Merge branch 'master' into refactor
2 parents dd36231 + d62b569 commit 592ec2f

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
name: Publish Release
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [ master ]
67
paths-ignore:
78
- .github/workflows/*
9+
- '**/README.md'
810

911
jobs:
1012
publish:
@@ -14,7 +16,7 @@ jobs:
1416
- name: Setup .NET
1517
uses: actions/setup-dotnet@v1
1618
with:
17-
dotnet-version: 3.1.301
19+
dotnet-version: 5.0.x
1820
- name: get version
1921
id: version
2022
uses: notiz-dev/github-action-json-property@release
@@ -24,7 +26,7 @@ jobs:
2426
- run: echo ${{steps.version.outputs.prop}}
2527
- name: Build
2628
run: |
27-
dotnet publish 'Flow.Launcher.Plugin.Everything.csproj' --framework netcoreapp3.1 -c Release -o "Flow.Launcher.Plugin.Everything"
29+
dotnet publish 'Flow.Launcher.Plugin.Everything.csproj' --framework net5.0-windows -c Release -o "Flow.Launcher.Plugin.Everything"
2830
7z a -tzip "Flow.Launcher.Plugin.Everything.zip" "./Flow.Launcher.Plugin.Everything/*"
2931
rm -r "Flow.Launcher.Plugin.Everything"
3032
- name: Publish

Flow.Launcher.Plugin.Everything.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFramework>net5.0-windows</TargetFramework>
44
<ProjectGuid>{230AE83F-E92E-4E69-8355-426B305DA9C0}</ProjectGuid>
@@ -53,7 +53,7 @@
5353
</ItemGroup>
5454
<ItemGroup>
5555
<PackageReference Include="Flow.Launcher.Plugin" Version="2.0.0" />
56-
<PackageReference Include="Droplex" Version="1.3.1" />
56+
<PackageReference Include="Droplex" Version="1.4.0" />
5757
<PackageReference Include="JetBrains.Annotations" Version="2021.2.0" />
5858
<PackageReference Include="System.Runtime" Version="4.3.1" />
5959
</ItemGroup>

Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ public void Init(PluginInitContext context)
231231
context.API.ShowMsg(context.API.GetTranslation("flowlauncher_plugin_everything_installing_title"),
232232
context.API.GetTranslation("flowlauncher_plugin_everything_installing_subtitle"), "", useMainWindowAsOwner: false);
233233

234-
await DroplexPackage.Drop(App.Everything1_3_4_686).ConfigureAwait(false);
234+
await DroplexPackage.Drop(App.Everything1_4_1_1009).ConfigureAwait(false);
235235

236236
context.API.ShowMsg(context.API.GetTranslation("flowlauncher_plugin_everything_installing_title"),
237237
context.API.GetTranslation("flowlauncher_plugin_everything_installationsuccess_subtitle"), "", useMainWindowAsOwner: false);

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ This is the repo for the Flow.Launcher's Everything plugin. This plugin has been
55

66
**Dependency:**
77

8-
Requires Everything service(automatically installed) higher than 1.4.1
8+
Requires Everything service(automatically installed) version 1.4.1 or higher

0 commit comments

Comments
 (0)