From ee8b0702a79e1b990d0775ac429b62c543a6e83b Mon Sep 17 00:00:00 2001 From: VictoriousRaptor <10308169+VictoriousRaptor@users.noreply.github.com> Date: Thu, 28 Sep 2023 11:18:17 +0800 Subject: [PATCH 1/3] Ignore .lnk target file extension - To avoid query "ex" matching any ".exe" file --- Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs b/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs index f3a26dca6..20f489c30 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs +++ b/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs @@ -313,7 +313,7 @@ namespace Flow.Launcher.Plugin.Program.Programs if (!string.IsNullOrEmpty(target) && File.Exists(target)) { program.LnkResolvedPath = Path.GetFullPath(target); - program.ExecutableName = Path.GetFileName(target); + program.ExecutableName = Path.GetFileNameWithoutExtension(target); var args = _helper.arguments; if (!string.IsNullOrEmpty(args)) From 07e77e7a416b05e554e750d4db76c71a29095a67 Mon Sep 17 00:00:00 2001 From: VictoriousRaptor <10308169+VictoriousRaptor@users.noreply.github.com> Date: Tue, 3 Oct 2023 13:55:47 +0800 Subject: [PATCH 2/3] Add Edge Workspaces support --- .../ChromiumBookmarkLoader.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs index c1efb5b5f..14b791c48 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs @@ -54,6 +54,7 @@ namespace Flow.Launcher.Plugin.BrowserBookmark switch (subElement.GetProperty("type").GetString()) { case "folder": + case "workspace": // Edge Workspace EnumerateFolderBookmark(subElement, bookmarks, source); break; default: From 755c09e3d9833ce0e3f01ed21866fb0519b6b5bd Mon Sep 17 00:00:00 2001 From: VictoriousRaptor <10308169+VictoriousRaptor@users.noreply.github.com> Date: Wed, 4 Oct 2023 02:59:18 +0800 Subject: [PATCH 3/3] Fix spell check extra dict missing error (#2379) * Fix spell check extra dict missing error * revert deleting dicts * fix dup --- .github/workflows/spelling.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index df962a675..1866c8f7e 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -73,7 +73,7 @@ jobs: steps: - name: check-spelling id: spelling - uses: check-spelling/check-spelling@main + uses: check-spelling/check-spelling@v0.0.22 with: suppress_push_for_open_pull_request: 1 checkout: true @@ -89,12 +89,13 @@ jobs: check_extra_dictionaries: '' quit_without_error: true extra_dictionaries: - cspell:software-terms/src/software-terms.txt + cspell:software-terms/dict/softwareTerms.txt cspell:win32/src/win32.txt cspell:php/php.txt cspell:filetypes/filetypes.txt cspell:csharp/csharp.txt cspell:dotnet/dotnet.txt + cspell:python/src/common/extra.txt cspell:python/src/python/python-lib.txt cspell:aws/aws.txt cspell:companies/src/companies.txt @@ -113,7 +114,7 @@ jobs: # if: (success() || failure()) && needs.spelling.outputs.followup && github.event_name == 'push' # steps: # - name: comment -# uses: check-spelling/check-spelling@main +# uses: check-spelling/check-spelling@@v0.0.22 # with: # checkout: true # spell_check_this: check-spelling/spell-check-this@main @@ -129,7 +130,7 @@ jobs: if: (success() || failure()) && needs.spelling.outputs.followup && contains(github.event_name, 'pull_request') steps: - name: comment - uses: check-spelling/check-spelling@main + uses: check-spelling/check-spelling@v0.0.22 with: checkout: true spell_check_this: check-spelling/spell-check-this@main @@ -153,7 +154,7 @@ jobs: # cancel-in-progress: false # steps: # - name: apply spelling updates - # uses: check-spelling/check-spelling@main + # uses: check-spelling/check-spelling@v0.0.22 # with: # experimental_apply_changes_via_bot: 1 # checkout: true