- Add `src-tauri/resources/` to `.gitignore`. - Introduced utilities to read locally installed backends (`getLocalInstalledBackends`) and fetch remote supported backends (`fetchRemoteSupportedBackends`). - Refactored `listSupportedBackends` to merge remote and local entries with deduplication and proper sorting. - Exported `getBackendDir` and integrated it into the extension. - Added helper `parseBackendVersion` and new method `checkBackendForUpdates` to detect newer backend versions. - Implemented `installBackend` for manual backend archive installation, including platform‑specific binary path handling. - Updated command‑line argument logic for `--flash-attn` to respect version‑specific defaults. - Modified Tauri filesystem `decompress` command to remove overly strict path validation.
62 lines
750 B
Plaintext
62 lines
750 B
Plaintext
.env
|
|
error.log
|
|
node_modules
|
|
*.tgz
|
|
dist
|
|
build
|
|
.DS_Store
|
|
package-lock.json
|
|
coverage
|
|
*.log
|
|
core/lib/**
|
|
.yarn
|
|
.yarnrc
|
|
*.tsbuildinfo
|
|
test_results.html
|
|
|
|
# docs
|
|
docs/yarn.lock
|
|
src-tauri/resources/lib
|
|
src-tauri/icons
|
|
!src-tauri/icons/icon.png
|
|
src-tauri/gen/apple
|
|
src-tauri/resources/bin
|
|
|
|
# Helper tools
|
|
.opencode
|
|
OpenCode.md
|
|
archive/
|
|
.cache/
|
|
|
|
# auto qa
|
|
autoqa/trajectories
|
|
autoqa/recordings
|
|
autoqa/__pycache__
|
|
|
|
# Astro / Starlight specific
|
|
website/dist/
|
|
website/.astro/
|
|
website/src/content/config.ts.timestamp-*
|
|
|
|
# Nextra specific
|
|
docs/out/
|
|
docs/.next/
|
|
|
|
# General Node.js
|
|
**/node_modules
|
|
**/.env
|
|
**/.env.*
|
|
**/npm-debug.log*
|
|
**/yarn-debug.log*
|
|
**/yarn-error.log*
|
|
**/pnpm-debug.log*
|
|
|
|
## cargo
|
|
target
|
|
Cargo.lock
|
|
src-tauri/resources/
|
|
|
|
## test
|
|
test-data
|
|
llm-docs
|