Apps On The Move
Welcome
Login
Sign up
Home
Solutions
Forums
Enter your search term here...
Search
Login
or
Signup
to submit a new ticket
Check ticket status
Start a new topic
Discussions
beorg forum
Issues
filters and long-press menu issue after 3.29.0
J
Jason
started a topic
about 8 hours ago
Hi there, I had some filters like, #+BEGIN_SRC scheme (define (filter-done-today item) (and (string=? (item-state item) "DONE") (or (today (item-scheduled item)) (today (item-deadline item)) (today (item-active-date item))))) (filter-add "✅ DONE Today" (lambda (item) (filter-done-today item))) And the customized long-press menu like, #+begin_src scheme (define (set-current-item-with-ARCHIVE-tag) ;;
https://appsonthemove.freshdesk.com/support/discussions/topics/14000020471
(set-current-item-tags! '("ARCHIVE"))) (define (schedule-current-item-for-today) (set-current-item-scheduled! (current-date))) (define (schedule-current-item-for-tomorrow) (set-current-item-scheduled! (date-adjust (current-date) 1 'days))) (define (deadline-current-item-for-today) (set-current-item-deadline! (current-date))) (define (deadline-current-item-for-tomorrow) (set-current-item-deadline! (date-adjust (current-date) 1 'days))) (set! item-longpress-menu '(("Make top priority today" (make-current-item-top-priority-today)) ("Schedule for today" (schedule-current-item-for-today)) ("Schedule for tomorrow" (schedule-current-item-for-tomorrow)) ("Deadline for today" (deadline-current-item-for-today)) ("Deadline for tomorrow" (deadline-current-item-for-tomorrow)) ("Remove all dates" (remove-all-dates-from-current-item)) ("ARCHIVE this" (set-current-item-with-ARCHIVE-tag)))) #+end_src It seems they are not supported anymore after 3.29.0?
Login
or
Signup
to post a comment
More topics in
Issues
Links in titles of TODO items
Different colour of the tab in TODO
Blank rectangle covering text after reading file in plain text mode
Able to modify read-only file!
Timestamps with both repeater and special warning period not understood as timestamps
WebDAV Sync Issue
Special formatting not handled in BeOrg
File editing save issues
Nothing happens when I mark repeated task as DONE?
Bug in notifications of hyperlinks
See all 128 topics
Jason