Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f097c52
feat: add scheduled directory import
skfan135 May 6, 2026
d13b95f
fix: use arduino/setup-protoc for Windows CI build
skfan135 May 6, 2026
4a1b95b
feat: default scheduled import path to project/raw
skfan135 May 7, 2026
40deba1
refactor: scheduled import path now relative to project
skfan135 May 7, 2026
f4becc8
fix: reset scheduled import path on project switch
skfan135 May 7, 2026
9d54285
fix: store scheduled import config per-project
skfan135 May 7, 2026
b0b8b97
fix: import normalizePath in project-store.ts
skfan135 May 7, 2026
6b08b28
fix: default scheduled import path to raw/sources
skfan135 May 7, 2026
898fcf0
fix: sync version to 0.4.8 across all configs
skfan135 May 8, 2026
196c858
fix: show absolute path in scheduled import settings
skfan135 May 8, 2026
601e3ca
feat: store scheduled import path as absolute path
skfan135 May 8, 2026
eb42ea4
fix: handle Windows paths with forward slashes
skfan135 May 8, 2026
394021e
fix: scheduled import scan logic and detection
skfan135 May 8, 2026
d86f532
fix: use filename for matching files in scheduled import
skfan135 May 11, 2026
9b9c7a3
feat: MD5-based file tracking for scheduled import
skfan135 May 12, 2026
2fe977d
chore: bump version to 0.4.8.2
skfan135 May 12, 2026
9c5a2dc
chore: bump version to 0.4.9
skfan135 May 12, 2026
b00f761
merge: resolve conflicts between main and dev_fsk_260506
skfan135 May 12, 2026
3942484
chore: bump version to 0.4.10
skfan135 May 12, 2026
805a7cc
fix: align Tauri npm packages with Rust crate versions
skfan135 May 12, 2026
b915d2b
fix: resolve TypeScript errors from merge conflict in settings-view
skfan135 May 12, 2026
5a3122a
fix: robust exclusion of .llm-wiki-imported/ from import scan
skfan135 May 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ jobs:
- name: Install protoc (Windows)
if: matrix.platform == 'windows-latest'
run: choco install protoc -y
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
148 changes: 74 additions & 74 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "llm-wiki",
"private": true,
"version": "0.4.9",
"version": "0.4.10",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -22,11 +22,11 @@
"@milkdown/theme-nord": "^7.20.0",
"@react-sigma/core": "^5.0.6",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-http": "^2.5.8",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-http": "^2.5.9",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-store": "^2.4.3",
"@types/js-yaml": "^4.0.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
Expand Down Expand Up @@ -54,7 +54,7 @@
"zustand": "^5.0.12"
},
"devDependencies": {
"@tauri-apps/cli": "^2.10.1",
"@tauri-apps/cli": "^2.11.1",
"@types/node": "^25.5.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
Expand Down
Loading
Loading