| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
`string-search' was added in Emacs 28.1. Since chime's package floor is
27.1, the convert-org-contacts-birthdays test file failed on that version
in CI. I swapped each `string-search NEEDLE HAYSTACK' for the equivalent
`string-match-p (regexp-quote NEEDLE) HAYSTACK', which works on 27.1+ and
returns a truthy value the same way.
|
| |
|
|
|
|
|
|
|
|
|
| |
Remove chime--agenda-buffer-name (unused variable) and
chime--extract-birthday-year (superseded by chime--parse-birthday).
Reduce chime-tooltip-lookahead-hours from 8760 (1 year) to 168
(1 week). The 1-year default caused org-agenda-list to scan a
365-day span every check cycle, which is slow for large org
collections. The tooltip only shows 5 events, so a week is
sufficient for most users.
|
| |
|
|
|
| |
Updated 41 files: chime.el, chime-debug.el, chime-org-contacts.el,
convert-org-contacts-birthdays.el, and all test/utility files.
|
| |
|