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
25d4744
fix(sidebar): restore focus after sort menu close
Norkep Aug 4, 2026
8e8eca1
feat: add editor display and title-bar settings
Norkep Aug 3, 2026
d256657
fix(settings): handle appearance reset failures
Norkep Aug 4, 2026
61c0f39
feat: improve standalone Markdown window behavior
Norkep Aug 3, 2026
fd663cb
feat: add multiple windows and workspaces
Norkep Aug 3, 2026
ecccdd7
fix: report workspace switch failures
Norkep Aug 3, 2026
8954ba8
fix(windows): request graceful closure before preview
Norkep Aug 4, 2026
fab8a4e
fix(notes): create and duplicate notes atomically
Norkep Aug 4, 2026
11e7765
fix(sync): stabilize file-change listeners and state updates
Norkep Aug 4, 2026
c701dba
fix(workspaces): use stable persisted identifiers
Norkep Aug 4, 2026
85226c8
fix(menus): separate New Window and Open Folder events
Norkep Aug 4, 2026
d4e40ce
fix(sessions): isolate fallback selections by workspace
Norkep Aug 4, 2026
6ec58c0
fix(import): target the invoking workspace window
Norkep Aug 4, 2026
4c17711
fix(persistence): support create-only writes without hard links
Norkep Aug 4, 2026
b134118
fix(editor): persist pending drafts during unmount
Norkep Aug 4, 2026
cd75e71
fix(preview): ignore stale asynchronous file loads
Norkep Aug 4, 2026
989829d
fix(shortcuts): remove render-time refs and report failures
Norkep Aug 4, 2026
5e0494e
fix(window-close): keep windows open without recovery
Norkep Aug 4, 2026
948ef1e
fix: resolve rebase conflicts and clippy warnings
Norkep Aug 4, 2026
2d101d5
style: format Rust code with cargo fmt
Norkep Aug 4, 2026
9dad629
fix: remove unused ref and fix ThemeContext syntax
Norkep Aug 4, 2026
32e7ec5
fix: correct atomic_create_new fallback logic
Norkep Aug 4, 2026
dd6bf9a
feat: add selection formatting and improved tables
Norkep Aug 3, 2026
f52e322
security(editor): restrict Tauri opener permissions
Norkep Aug 4, 2026
5f9ac2d
perf(tables): avoid transaction document serialization
Norkep Aug 4, 2026
fc34b12
fix(table-resize): restore temporary DOM state
Norkep Aug 4, 2026
1f2c09c
fix(table-controls): guard stale table geometry
Norkep Aug 4, 2026
64d25b0
style(tables): address table control CSS warnings
Norkep Aug 4, 2026
95fe48d
fix(notes): surface actionable missing-revision error
Norkep Aug 4, 2026
ac3d8a3
fix: resolve TypeScript build errors in PR #201
Norkep Aug 4, 2026
0196251
fix(editor): harden table metadata and history reset
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
1,183 changes: 773 additions & 410 deletions package-lock.json

Large diffs are not rendered by default.

46 changes: 27 additions & 19 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 All @@ -22,23 +24,27 @@
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-updater": "^2.10.0",
"@tiptap/core": "^3.19.0",
"@tiptap/extension-code-block-lowlight": "^3.20.0",
"@tiptap/extension-image": "^3.18.0",
"@tiptap/extension-link": "^3.18.0",
"@tiptap/extension-mathematics": "^3.18.0",
"@tiptap/extension-placeholder": "^3.18.0",
"@tiptap/extension-table": "^3.19.0",
"@tiptap/extension-table-cell": "^3.19.0",
"@tiptap/extension-table-header": "^3.19.0",
"@tiptap/extension-table-row": "^3.19.0",
"@tiptap/extension-task-item": "^3.18.0",
"@tiptap/extension-task-list": "^3.18.0",
"@tiptap/markdown": "^3.18.0",
"@tiptap/pm": "^3.18.0",
"@tiptap/react": "^3.18.0",
"@tiptap/starter-kit": "^3.18.0",
"@tiptap/suggestion": "^3.18.0",
"@tiptap/core": "3.29.2",
"@tiptap/extension-code-block-lowlight": "3.29.2",
"@tiptap/extension-highlight": "3.29.2",
"@tiptap/extension-image": "3.29.2",
"@tiptap/extension-link": "3.29.2",
"@tiptap/extension-mathematics": "3.29.2",
"@tiptap/extension-placeholder": "3.29.2",
"@tiptap/extension-subscript": "3.29.2",
"@tiptap/extension-superscript": "3.29.2",
"@tiptap/extension-table": "3.29.2",
"@tiptap/extension-table-cell": "3.29.2",
"@tiptap/extension-table-header": "3.29.2",
"@tiptap/extension-table-row": "3.29.2",
"@tiptap/extension-task-item": "3.29.2",
"@tiptap/extension-task-list": "3.29.2",
"@tiptap/extension-text-style": "3.29.2",
"@tiptap/markdown": "3.29.2",
"@tiptap/pm": "3.29.2",
"@tiptap/react": "3.29.2",
"@tiptap/starter-kit": "3.29.2",
"@tiptap/suggestion": "3.29.2",
"beautiful-mermaid": "^1.1.3",
"clsx": "^2.1.1",
"highlight.js": "^11.11.1",
Expand All @@ -58,8 +64,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"
}
}
4 changes: 1 addition & 3 deletions src-tauri/capabilities/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@
"$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",
"core:window:allow-start-dragging",
"core:window:allow-set-focus",
"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