Merge pull request #44 from SteelDynamite/claude/gifted-darwin-kwln0
docs: fix stale references in PLAN.md, README.md, and DEVELOPMENT.md
This commit is contained in:
commit
35db093b79
17
PLAN.md
17
PLAN.md
|
|
@ -664,16 +664,23 @@ apps/tauri/
|
||||||
│ ├── components/
|
│ ├── components/
|
||||||
│ │ ├── TaskItem.svelte
|
│ │ ├── TaskItem.svelte
|
||||||
│ │ ├── NewTaskInput.svelte
|
│ │ ├── NewTaskInput.svelte
|
||||||
│ │ └── ListSelector.svelte
|
│ │ ├── TaskDetailView.svelte
|
||||||
|
│ │ ├── BottomSheet.svelte
|
||||||
|
│ │ ├── ConfirmDialog.svelte
|
||||||
|
│ │ └── DateTimePicker.svelte
|
||||||
│ └── stores/
|
│ └── stores/
|
||||||
│ └── app.ts
|
│ └── app.svelte.ts
|
||||||
|
├── tauri-plugin-credentials/ # Cross-platform credential storage plugin
|
||||||
|
│ ├── Cargo.toml
|
||||||
|
│ ├── src/
|
||||||
|
│ │ └── lib.rs # Desktop (keyring) + plugin API
|
||||||
|
│ └── android/ # Android (EncryptedSharedPreferences)
|
||||||
└── src-tauri/ # Rust backend (Tauri commands)
|
└── src-tauri/ # Rust backend (Tauri commands)
|
||||||
├── Cargo.toml
|
├── Cargo.toml
|
||||||
├── tauri.conf.json
|
├── tauri.conf.json
|
||||||
└── src/
|
└── src/
|
||||||
├── main.rs
|
├── main.rs
|
||||||
├── commands.rs # Tauri command handlers
|
└── lib.rs # Tauri command handlers
|
||||||
└── lib.rs
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### First Run Experience
|
#### First Run Experience
|
||||||
|
|
@ -742,7 +749,7 @@ WorkspaceConfig {
|
||||||
- [x] Delete tasks (kebab menu → delete)
|
- [x] Delete tasks (kebab menu → delete)
|
||||||
- [x] Mark tasks complete/incomplete with animated transitions
|
- [x] Mark tasks complete/incomplete with animated transitions
|
||||||
- [x] Drag-and-drop task reordering
|
- [x] Drag-and-drop task reordering
|
||||||
- [x] Sliding lists drawer (80vw, left side)
|
- [x] Sliding lists drawer (80cqi wide, left side)
|
||||||
- [x] Settings popup overlay (WebDAV config, dark mode toggle)
|
- [x] Settings popup overlay (WebDAV config, dark mode toggle)
|
||||||
- [x] Dark mode (GNOME-style neutral theme, cyan-blue accent)
|
- [x] Dark mode (GNOME-style neutral theme, cyan-blue accent)
|
||||||
- [x] Animated completed section show/hide
|
- [x] Animated completed section show/hide
|
||||||
|
|
|
||||||
|
|
@ -91,7 +91,7 @@ cargo run -p onyx-cli -- --help
|
||||||
|
|
||||||
# Run Tauri GUI
|
# Run Tauri GUI
|
||||||
cd apps/tauri && npm install
|
cd apps/tauri && npm install
|
||||||
npm run tauri dev
|
npm run tauri dev # (Wayland: WEBKIT_DISABLE_DMABUF_RENDERER=1 npm run tauri dev)
|
||||||
```
|
```
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
|
||||||
|
|
@ -272,7 +272,7 @@ Inspect the file system directly:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Check metadata
|
# Check metadata
|
||||||
cat ~/test-tasks/.metadata.json | jq
|
cat ~/test-tasks/.onyx-workspace.json | jq
|
||||||
|
|
||||||
# Check list metadata
|
# Check list metadata
|
||||||
cat ~/test-tasks/My\ Tasks/.listdata.json | jq
|
cat ~/test-tasks/My\ Tasks/.listdata.json | jq
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue