Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a617a4e
feat: add sidebar sorting and collapse controls
Norkep Aug 3, 2026
661b600
feat: add editor display and title-bar settings
Norkep Aug 3, 2026
1cb30a5
feat: improve standalone Markdown window behavior
Norkep Aug 3, 2026
12d9f22
fix(recovery): tolerate damaged checkpoints
Norkep Aug 4, 2026
b119b2a
fix(persistence): support create-only writes without hard links
Norkep Aug 4, 2026
68f9efa
fix(preview): ignore stale asynchronous file loads
Norkep Aug 4, 2026
0a324bb
fix(shortcuts): remove render-time refs and report failures
Norkep Aug 4, 2026
fec9317
fix(window-close): keep windows open without recovery
Norkep Aug 4, 2026
23f63f6
fix(window-close): keep windows open without recovery
Norkep Aug 4, 2026
71623b2
fix(lib): log workspace resolution failures in get_settings
Norkep Aug 4, 2026
f703c6c
fix(lib): make update_git_enabled transactional
Norkep Aug 4, 2026
29c0459
fix(SettingsPage): make tests platform deterministic
Norkep Aug 4, 2026
378adfb
fix(sidebar): restore focus after sort menu close
Norkep Aug 4, 2026
ff06553
fix(settings): handle appearance reset failures
Norkep Aug 4, 2026
46125b7
feat: add multiple windows and workspaces
Norkep Aug 3, 2026
3284029
fix: report workspace switch failures
Norkep Aug 3, 2026
c9e7b94
fix(windows): request graceful closure before preview
Norkep Aug 4, 2026
b77f7c8
fix(notes): create and duplicate notes atomically
Norkep Aug 4, 2026
3baecec
fix(sync): stabilize file-change listeners and state updates
Norkep Aug 4, 2026
5fbdb75
fix(workspaces): use stable persisted identifiers
Norkep Aug 4, 2026
4ab5878
fix(menus): separate New Window and Open Folder events
Norkep Aug 4, 2026
d773928
fix(sessions): isolate fallback selections by workspace
Norkep Aug 4, 2026
e9339d1
fix(import): target the invoking workspace window
Norkep Aug 4, 2026
4ab96de
fix(persistence): support create-only writes without hard links
Norkep Aug 4, 2026
069617f
fix(editor): persist pending drafts during unmount
Norkep Aug 4, 2026
76d87ea
fix(shortcuts): remove render-time refs and report failures
Norkep Aug 4, 2026
0c36808
fix(window-close): keep windows open without recovery
Norkep Aug 4, 2026
afcf4f4
fix: resolve rebase conflicts and clippy warnings
Norkep Aug 4, 2026
b52037e
style: format Rust code with cargo fmt
Norkep Aug 4, 2026
06b494e
fix: remove unused ref and fix ThemeContext syntax
Norkep Aug 4, 2026
e6f3861
fix: correct atomic_create_new fallback logic
Norkep Aug 4, 2026
7022cb1
fix: harden workspace windows and remove New Window action
Norkep Aug 5, 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
476 changes: 475 additions & 1 deletion package-lock.json

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
"tauri": "tauri",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
Expand Down Expand Up @@ -58,8 +60,10 @@
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"happy-dom": "20.11.1",
"tailwindcss": "^4.1.18",
"typescript": "~5.8.3",
"vite": "^7.0.4"
"vite": "^7.0.4",
"vitest": "4.1.10"
}
}
3 changes: 1 addition & 2 deletions src-tauri/capabilities/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for all app windows",
"windows": ["main", "preview-*"],
"windows": ["main", "preview-*", "workspace-*", "preferences"],
"permissions": [
"core:default",
"core:window:allow-close",
Expand All @@ -11,7 +11,6 @@
"core:webview:allow-print",
"opener:default",
"opener:allow-open-url",
"opener:allow-reveal-item-in-dir",
"dialog:default",
"dialog:allow-open",
"core:menu:default",
Expand Down
Loading