Commit graph

14 commits

Author SHA1 Message Date
Claude 66513519ab
docs: fix credential return type, add missing test dir, update plan date
- docs/API.md: load_credentials returns Zeroizing<String> (not String)
- docs/DEVELOPMENT.md: add src/test/ directory to project structure
- PLAN.md: update Last Updated to 2026-04-23, bump version to 4.4

https://claude.ai/code/session_01By1aj94LMM7muDV7AT4egk
2026-04-23 10:08:34 +00:00
SteelDynamite d8c6b9fc8e
Merge pull request #53 from SteelDynamite/claude/dreamy-brown-pFY5T 2026-04-19 09:12:08 +01:00
Claude b977d275ba
docs: sync markdown docs with current codebase state
- CLAUDE.md: add `sync` to the CLI commands list (commands/sync.rs exists)
- PLAN.md: remove BottomSheet.svelte (deleted in efb4cca)
- DEVELOPMENT.md: add grouping.ts and paths.ts to the lib directory listing

https://claude.ai/code/session_01YbcpJqmwpEW5tCJFFkMSPZ
2026-04-18 08:53:10 +00:00
Claude 771e104486
Merge remote-tracking branch 'origin/main' into pr51-merge
# Conflicts:
#	README.md
2026-04-17 15:01:58 +00:00
Claude 7bef6b07bc
docs: sync markdown docs with actual codebase state
- README.md: update Phase 4 status to reflect Android preliminaries done
  (file-watcher gating, tauri-plugin-credentials, safe area insets, Android
  targets configured) but init/build not yet run; add tauri-plugin-credentials
  to project structure; expand docs/ tree; add newer GUI features (workspace
  rename, safe area insets, accessibility); add setup screen screenshot;
  update What's Next to note Phase 4 is in progress
- PLAN.md: fix Phase 4 checkboxes — android init and build-succeeds were
  marked [x] but gen/android/ does not exist; correct cfg gate annotation
  from #[cfg(not(mobile))] to #[cfg(not(target_os = "android"))]; update
  dependency snippet to reflect actual keyring/zeroize/sha2/quick-xml usage;
  bump Last Updated to 2026-04-17
- docs/DEVELOPMENT.md: add WEBKIT_DISABLE_DMABUF_RENDERER=1 Wayland note
  to tauri dev command

https://claude.ai/code/session_01MypN7wPNqeSgw8b5DYpMc1
2026-04-17 14:44:33 +00:00
Claude 4cc15a96fe
docs: sync markdown documentation with codebase
- CLAUDE.md: add last_sync field to WorkspaceConfig description
- README.md: update Phase 4 status, replace dark mode with multi-theme
  system, add has_time/parent fields to data format example
- PLAN.md: add last_sync to Phase 1 WorkspaceConfig, update dark mode
  entries to reflect theme selector, fix Google Tasks Tauri command
  names, add rename_list/move_task to Core Library API, fix "Move to..."
  description (inline, not submenu)
- docs/API.md: document rename_list and move_task repository methods
- docs/DEVELOPMENT.md: add dateFormat.ts to frontend file structure

https://claude.ai/code/session_01NCtJ5PNhaDh21kYnDZXYsN
2026-04-16 08:34:32 +00:00
Claude d53bf8dffc
docs: fix inconsistencies between markdown docs and codebase
- README.md: correct "group-by-due-date" to "group-by-date" (field is
  group_by_date, not tied to due dates)
- docs/DEVELOPMENT.md: remove "Add migration logic if needed" step —
  project is pre-alpha with no migration policy; remove CHANGELOG.md
  references (file does not exist)
- docs/API.md: clarify load_credentials returns Zeroizing<String> not
  plain String; fix legacy credential migration description (unscoped
  format, not dot-separated format)

https://claude.ai/code/session_01KgXnipZEAHUwTp5wX4PFj9
2026-04-15 10:54:38 +00:00
Claude 2b2f5da928
docs: fix stale references in PLAN.md, README.md, and DEVELOPMENT.md
- PLAN.md: replace non-existent ListSelector.svelte with actual components
  (TaskDetailView, BottomSheet, ConfirmDialog, DateTimePicker)
- PLAN.md: rename stores/app.ts → app.svelte.ts to match actual filename
- PLAN.md: add missing tauri-plugin-credentials/ to directory structure
- PLAN.md: remove non-existent commands.rs; mark lib.rs as command handler
- PLAN.md: correct sliding drawer width "80vw" → "80cqi"
- README.md: add Wayland env var note for Tauri dev command
- DEVELOPMENT.md: fix debug snippet .metadata.json → .onyx-workspace.json

https://claude.ai/code/session_018Nqr77xVGjbsWxgeMJb7HG
2026-04-15 00:13:54 +00:00
Claude 208032596c
docs: sync markdown files with current codebase state
- Rename due_date → date and group_by_due_date → group_by_date throughout
  all docs to match the renamed Rust fields (Task.date, TaskList.group_by_date,
  repository set_group_by_date/get_group_by_date)
- Update YAML frontmatter examples: due: → date:, add has_time field
- Update .listdata.json examples: group_by_due_date → group_by_date
- Update CLI flag in examples: --due → --date
- Add WorkspaceMode::GoogleTasks variant and google_account / sync_interval_unfocused_secs
  fields to WorkspaceConfig in all docs
- Document google_tasks.rs module (read-only Google Tasks API client, UUID v5 mapping)
- Document Ink theme and window decorations selector in CLAUDE.md
- Update PLAN.md Phase 7 Google Tasks checklist to reflect partial implementation
- Update current state date in CLAUDE.md (2026-04-06 → 2026-04-15)
- Update PLAN.md Last Updated date (2026-04-05 → 2026-04-15)
- Add google_tasks.rs to DEVELOPMENT.md project structure

https://claude.ai/code/session_01VmzpAB3PRY7bvSoVmzMRVm
2026-04-15 00:08:16 +00:00
Tristan Michael eaab66609c Docs: update all markdown files to reflect workspace-settings-overhaul changes
Update CLAUDE.md, PLAN.md, README.md, docs/API.md, and docs/DEVELOPMENT.md
to reflect UUID-keyed workspaces, checksum-based conflict resolution,
auto-sync lifecycle, tauri-plugin-credentials, .onyx-workspace.json rename,
and new GUI features (remote folder browsing, workspace rename, sync
interval, loading screen, safe area insets, task dedup).
2026-04-05 19:21:54 -07:00
Tristan Michael 52de450a0f docs: audit and update all markdown files to reflect current progress
Phase 2 (WebDAV sync) and Phase 3 (GUI MVP) are complete but docs still
showed them as in-progress. Phase 4 Android steps 1-4 are done. Windows
MSI packaging was added. Multiple doc inaccuracies fixed: missing Error
variants, stale struct definitions, wrong filenames in directory trees.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 03:52:58 -07:00
Tristan Michael 13da81fae6 update project docs, workspace config, and lockfile for onyx rename 2026-03-31 09:47:19 -07:00
Tristan Michael 9333ac7825 docs: update documentation, add LICENSE, fix outdated info
- Add GPL-3.0 LICENSE file
- Update README with current project status (all 3 phases), fix structure
- Update PLAN.md Phase 2 API signatures to match actual implementation
- Add WebDAV & Sync section to docs/API.md
- Update docs/DEVELOPMENT.md with Tauri app structure and setup
- Add metadata (description, license, repository) to all Cargo.toml files
- Update .gitignore with node_modules, .env, dist, build entries
- Remove stale Cargo.lock from .gitignore (apps should track it)
- Update example dates from 2025 to 2026 across all docs
- Update CLAUDE.md date to 2026-03-30
2026-03-30 16:24:46 -07:00
Tristan Michael 1d90354fd3 progress of some kind 2026-03-17 05:49:48 -07:00