aboutsummaryrefslogtreecommitdiff
path: root/data
Commit message (Collapse)AuthorAgeFilesLines
* chore(data): update calendar sync state and historyCraig Jennings2026-01-133-7/+25
| | | | Updated calendar sync state after auto-sync.
* feat(dirvish): add project shortcuts and remove scratch font overrideCraig Jennings2026-01-093-438/+595
| | | | | Added dirvish quick-access shortcuts for homelab, kit, and nextjob projects. Removed 16pt font size override from scratch buffer startup hook.
* feat(calendar-sync): multi-calendar support with property testsCraig Jennings2025-12-023-418/+969
| | | | | | Added multi-URL calendar sync supporting Google and Proton calendars. Each calendar syncs to separate file with per-calendar state tracking. Added 13 property-based tests for RRULE expansion. Total: 150 tests passing.
* session: Add session notes and org-noter TODOCraig Jennings2025-11-242-100/+180
| | | | | | Added session notes for 2025-11-24 DWIM shell command work. Added detailed TODO for org-noter workflow continuation with known issues and testing requirements. Added TODO for dwim-shell-command status dashboard with implementation approaches.
* session: Update calendar sync state and command historyCraig Jennings2025-11-182-22787/+943
| | | | | | - Updated gcal.org with 377 events from successful RRULE expansion - Updated sync state with latest sync timestamp - Updated command history
* feat: add org keymap under C-; O with cache clear bindingCraig Jennings2025-11-172-74/+77
| | | | | | Created general org operations keymap at C-; O separate from specialized org-table and org-drill keymaps. Added C-; O c binding for clearing org-element cache to fix org-todo state change errors.
* fix: increase calendar-sync curl timeout from 10 to 30 secondsCraig Jennings2025-11-172-82/+94
| | | | | | 10-second timeout was too aggressive for slower networks or delayed Google servers. Increased to 30 seconds to prevent timeout errors while still preventing indefinite hangs.
* session: async calendar sync implementation and testingCraig Jennings2025-11-172-11710/+11719
| | | | | | Implemented async calendar fetching to prevent UI freezes. Tested sync functionality and confirmed improved responsiveness. Updated calendar state and data files from sync testing.
* feat(calendar-sync): Add automatic timezone detection and chronological sortingCraig Jennings2025-11-162-0/+23147
Implemented calendar-sync.el as a complete replacement for org-gcal, featuring: **Core Functionality:** - One-way sync from Google Calendar to Org (via .ics URL) - UTC to local timezone conversion for all event timestamps - Chronological event sorting (past → present → future) - Non-blocking sync using curl (works reliably in daemon mode) **Automatic Timezone Detection:** - Detects timezone changes when traveling between timezones - Tracks timezone offset in seconds (-21600 for CST, -28800 for PST, etc.) - Triggers automatic re-sync when timezone changes detected - Shows informative messages: "Timezone change detected (UTC-6 → UTC-8)" **State Persistence:** - Saves sync state to ~/.emacs.d/data/calendar-sync-state.el - Persists timezone and last sync time across Emacs sessions - Enables detection even after closing Emacs before traveling **User Features:** - Interactive commands: calendar-sync-now, calendar-sync-start/stop - Keybindings: C-; g s (sync), C-; g a (start auto-sync), C-; g x (stop) - Optional auto-sync every 15 minutes (disabled by default) - Clear status messages for all operations **Code Quality:** - Comprehensive test coverage: 51 ERT tests (100% passing) - Refactored UTC conversion into separate function - Clean separation of concerns (parsing, conversion, formatting, sorting) - Well-documented with timezone behavior guide and changelog **Migration:** - Removed org-gcal-config.el (archived in modules/archived/) - Updated init.el to use calendar-sync - Moved gcal.org to .emacs.d/data/ for machine-independent syncing - Removed org-gcal appointment capture template Files modified: modules/calendar-sync.el:442, tests/test-calendar-sync.el:577 Files created: data/calendar-sync-state.el, tests/testutil-calendar-sync.el Documentation: docs/calendar-sync-timezones.md, docs/calendar-sync-changelog.md