diff --git a/.github/workflows/desktop-publish.yml b/.github/workflows/desktop-publish.yml index 39db43d..7f43ff8 100644 --- a/.github/workflows/desktop-publish.yml +++ b/.github/workflows/desktop-publish.yml @@ -87,6 +87,8 @@ jobs: # pnpm --filter=@kksh/ci run ci-env-check bun packages/ci/scripts/ci-env-check.ts - name: Build Packages + env: + NODE_OPTIONS: --max-old-space-size=4096 run: pnpm build - name: Get App Version if: matrix.settings.platform == 'windows-latest' @@ -98,6 +100,7 @@ jobs: CI: false KUNKUN_PUBLISH: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NODE_OPTIONS: --max-old-space-size=4096 APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }} APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }} APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }} diff --git a/apps/desktop/package.json b/apps/desktop/package.json index 2acceaf..9408dc4 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@kksh/desktop", - "version": "0.1.29", + "version": "0.1.32", "description": "", "type": "module", "scripts": { diff --git a/apps/desktop/src/routes/app/extension/ui-worker/+page.svelte b/apps/desktop/src/routes/app/extension/ui-worker/+page.svelte index 2ebf88a..6aef00e 100644 --- a/apps/desktop/src/routes/app/extension/ui-worker/+page.svelte +++ b/apps/desktop/src/routes/app/extension/ui-worker/+page.svelte @@ -51,7 +51,6 @@ import Inspect from "svelte-inspect-value" import { type CommandEvent } from "tauri-plugin-shellx-api" import * as v from "valibot" - import Listview2 from "./listview2.svelte" const { data } = $props() let listviewInputRef = $state(null) diff --git a/apps/desktop/src/routes/app/extension/ui-worker/listview2.svelte b/apps/desktop/src/routes/app/extension/ui-worker/listview2.svelte deleted file mode 100644 index 089896e..0000000 --- a/apps/desktop/src/routes/app/extension/ui-worker/listview2.svelte +++ /dev/null @@ -1,8 +0,0 @@ - - -
detailWidth: {detailWidth}
diff --git a/packages/ui/src/components/extension/templates/list-view.svelte b/packages/ui/src/components/extension/templates/list-view.svelte index 3638e0a..612f163 100644 --- a/packages/ui/src/components/extension/templates/list-view.svelte +++ b/packages/ui/src/components/extension/templates/list-view.svelte @@ -144,10 +144,10 @@ let resultingItems = $derived( // when search term changes, update the resulting items listViewContent.filter === "none" - ? searchTerm.length > 0 + ? (listViewContent.items ?? []) + : searchTerm.length > 0 ? itemsFuse.search(searchTerm).map((item) => item.item) : srcItems - : (listViewContent.items ?? []) ) // section total height is auto derived from section refs let sectionTotalHeight = $derived(srcSections.reduce((acc, s) => acc + (s.sectionHeight ?? 0), 0)) diff --git a/packages/ui/src/components/extension/templates/virtual-command-group.svelte b/packages/ui/src/components/extension/templates/virtual-command-group.svelte index 14bbd39..eb994d0 100644 --- a/packages/ui/src/components/extension/templates/virtual-command-group.svelte +++ b/packages/ui/src/components/extension/templates/virtual-command-group.svelte @@ -48,10 +48,10 @@ let resultingItems = $derived( // when search term changes, update the resulting items filterMode === "none" - ? searchTerm.length > 0 + ? items + : searchTerm.length > 0 ? fuse.search(searchTerm).map((item) => item.item) : items - : items ) $effect(() => {