From 4c54294074f9b0f8912c8fbd1cd7011b803b45de Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Sat, 19 Apr 2025 21:22:43 +1000 Subject: [PATCH 1/8] deploy website on release --- .github/workflows/website_deploy.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/website_deploy.yml diff --git a/.github/workflows/website_deploy.yml b/.github/workflows/website_deploy.yml new file mode 100644 index 000000000..0cb623174 --- /dev/null +++ b/.github/workflows/website_deploy.yml @@ -0,0 +1,21 @@ +--- + +name: Deploy Website On Release +on: + release: + types: [published] + workflow_dispatch: + +jobs: + dispatch: + runs-on: ubuntu-latest + steps: + - name: Dispatch event + run: | + http_status=$(curl -L -f -s -o /dev/null -w "%{http_code}" \ + -X POST \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: Bearer ${{ secrets.DEPLOY_WEBSITE }}" \ + https://api.github.com/repos/Flow-Launcher/flow-launcher.github.io/dispatches \ + -d '{"event_type":"deploy"}') + if [ "$http_status" -ne 204 ]; then echo "Error: Deploy trigger failed, HTTP status code is $http_status"; exit 1; fi From 827c7520f9d011583ab135ce1e65fb086d94925d Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Sat, 19 Apr 2025 21:27:24 +1000 Subject: [PATCH 2/8] update token name --- .github/workflows/website_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/website_deploy.yml b/.github/workflows/website_deploy.yml index 0cb623174..2d44e4a2c 100644 --- a/.github/workflows/website_deploy.yml +++ b/.github/workflows/website_deploy.yml @@ -15,7 +15,7 @@ jobs: http_status=$(curl -L -f -s -o /dev/null -w "%{http_code}" \ -X POST \ -H "Accept: application/vnd.github+json" \ - -H "Authorization: Bearer ${{ secrets.DEPLOY_WEBSITE }}" \ + -H "Authorization: Bearer ${{ secrets.DEPLOY_FLOW_WEBSITE }}" \ https://api.github.com/repos/Flow-Launcher/flow-launcher.github.io/dispatches \ -d '{"event_type":"deploy"}') if [ "$http_status" -ne 204 ]; then echo "Error: Deploy trigger failed, HTTP status code is $http_status"; exit 1; fi From 908d1b74bf0fdcf1ebbb50e499efaae957c295b3 Mon Sep 17 00:00:00 2001 From: DB p Date: Sun, 20 Apr 2025 08:12:31 +0900 Subject: [PATCH 3/8] Fix typo --- Flow.Launcher/Languages/en.xaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index caa9a7129..8501f083b 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -142,8 +142,8 @@ Current action keyword New action keyword Change Action Keywords - Plugin seach delay time - Change Plugin Seach Delay Time + Plugin search delay time + Change Plugin Search Delay Time Advanced Settings: Enabled Priority From d5f48da3f70f2b73dda8e618e7b38a6c890b2929 Mon Sep 17 00:00:00 2001 From: DB p Date: Sun, 20 Apr 2025 08:12:31 +0900 Subject: [PATCH 4/8] Fix typo --- Flow.Launcher/Languages/en.xaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index caa9a7129..8501f083b 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -142,8 +142,8 @@ Current action keyword New action keyword Change Action Keywords - Plugin seach delay time - Change Plugin Seach Delay Time + Plugin search delay time + Change Plugin Search Delay Time Advanced Settings: Enabled Priority From 5765baa5026334791f144a54fabf6bbbf12041c1 Mon Sep 17 00:00:00 2001 From: DB p Date: Sun, 20 Apr 2025 08:15:35 +0900 Subject: [PATCH 5/8] Fix Typo --- Flow.Launcher/Languages/en.xaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index 8501f083b..554e5ed9d 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -235,7 +235,7 @@ Acrylic Mica Mica Alt - This theme supports two(light/dark) modes. + This theme supports two (light/dark) modes. This theme supports Blur Transparent Background. Show placeholder Display placeholder when query is empty From f9a201a33c8c2492b2fbac91b4f2f6a5f673a68f Mon Sep 17 00:00:00 2001 From: DB p Date: Sun, 20 Apr 2025 08:15:35 +0900 Subject: [PATCH 6/8] "disable from displaying" to "Hide" --- Flow.Launcher/Languages/en.xaml | 2 +- Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index 8501f083b..554e5ed9d 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -235,7 +235,7 @@ Acrylic Mica Mica Alt - This theme supports two(light/dark) modes. + This theme supports two (light/dark) modes. This theme supports Blur Transparent Background. Show placeholder Display placeholder when query is empty diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml index 790c9d2c6..ee6b4379d 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml @@ -76,7 +76,7 @@ Run As Different User Run As Administrator Open containing folder - Disable this program from displaying + Hide Open target folder Program From 31f286607dd9dc50f7f53ddb864b22eed7b2d85b Mon Sep 17 00:00:00 2001 From: DB p Date: Sun, 20 Apr 2025 10:31:35 +0900 Subject: [PATCH 7/8] Adjust Badge Text and remove subtitle --- Flow.Launcher/Languages/en.xaml | 3 +-- Flow.Launcher/SettingPages/Views/SettingsPaneTheme.xaml | 5 +---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index 554e5ed9d..f1b41eb3c 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -303,9 +303,8 @@ Use Segoe Fluent Icons for query results where supported Press Key Show Result Badges - Show badges for query results where supported + For supported plugins, badges are displayed to help distinguish them more easily. Show Result Badges for Global Query Only - Show badges for global query results only HTTP Proxy diff --git a/Flow.Launcher/SettingPages/Views/SettingsPaneTheme.xaml b/Flow.Launcher/SettingPages/Views/SettingsPaneTheme.xaml index 0b5de1280..f7853515a 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPaneTheme.xaml +++ b/Flow.Launcher/SettingPages/Views/SettingsPaneTheme.xaml @@ -740,10 +740,7 @@ OffContent="{DynamicResource disable}" OnContent="{DynamicResource enable}" /> - + Date: Mon, 21 Apr 2025 22:07:23 +0000 Subject: [PATCH 8/8] Bump vers-one/dotnet-project-version-updater from 1.5 to 1.7 Bumps [vers-one/dotnet-project-version-updater](https://github.com/vers-one/dotnet-project-version-updater) from 1.5 to 1.7. - [Release notes](https://github.com/vers-one/dotnet-project-version-updater/releases) - [Commits](https://github.com/vers-one/dotnet-project-version-updater/compare/v1.5...v1.7) --- updated-dependencies: - dependency-name: vers-one/dotnet-project-version-updater dependency-version: '1.7' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 718a28dbd..7498262de 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v4 - name: Set Flow.Launcher.csproj version id: update - uses: vers-one/dotnet-project-version-updater@v1.5 + uses: vers-one/dotnet-project-version-updater@v1.7 with: file: | "**/SolutionAssemblyInfo.cs"