aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-notifications.el
Commit message (Collapse)AuthorAgeFilesLines
* apply filters to notifications. #575.marty hiatt2024-08-091-71/+79
|
* basic apply filters. #575.marty hiatt2024-08-091-0/+1
|
* re-write all (if x y "") clauses as (when x y), if poss.marty hiatt2024-08-061-5/+4
| | | | | we can use when inside concat, but not inside insert, nor in strings/args headed for format or propertize.
* audit notifications.elmarty hiatt2024-08-051-58/+35
|
* flycheckmarty hiatt2024-06-021-1/+1
|
* docstringsmarty hiatt2024-05-281-4/+2
|
* customs for display of profile note in foll req notifs: flag and max lengthmarty hiatt2024-05-271-6/+32
|
* force display of instance in handle for remote local timelines.marty hiatt2024-05-261-1/+1
|
* add commented profile note to foll-req notifs. FIX #519.marty hiatt2024-05-221-9/+21
|
* let bind a setq'd var to keep compiler happymarty hiatt2024-03-151-4/+5
|
* comment plain text in boost/fave notifs. FIX #432.marty hiatt2024-02-271-11/+28
|
* remove ;; Version: strings in buffers other than mastodon.elmarty hiatt2023-11-101-1/+0
|
* triage: call cb on response. do-user-action-fun: check response datamarty hiatt2023-10-281-3/+3
| | | | this means the triage callback always needs to handle 1 arg.
* toot-id>item-id, toot-json>item-json, item-type for nav, byline still neededmarty hiatt2023-10-151-8/+8
|
* * lisp/mastodon-notifications.el: Fix dependencyStefan Monnier2023-08-271-4/+5
| | | | | | | | | | | The file can't be loaded before `mastodon` because it requires `mastodon-mode-map`, so just require it. Also make the keymap definition more standard. * lisp/mastodon-notifications.el: Require `mastodon`. (mastodon-mode-map): Remove redundant declaration. (mastodon-notifications--map): Avoid `copy-keymap` and `keymap-canonicalize`.
* audit notifications.elmarty hiatt2023-05-091-14/+12
|
* let-alist follow-request-processmarty hiatt2023-05-091-25/+20
|
* notifs: fix edit response alistmarty hiatt2023-03-281-1/+1
|
* notifs-foll-req process: call reload-timeline-or-profilemarty hiatt2023-03-271-1/+1
|
* remove all ;; Package-Requires: declarations save for main filemarty hiatt2023-03-271-1/+0
| | | | main file is set in .dir-locals.el now
* remove unused codemarty hiatt2023-03-201-1/+0
|
* sort all autoloadsmarty hiatt2023-03-191-20/+21
| | | | sort autoloads in profile.el
* factor out mastodon-views.el for minor viewsmarty hiatt2023-03-181-2/+2
| | | | | | | | | | | | | | | These are currently lists, follow suggestions, filters, scheduled toots, follow requests, and instance descriptions. fix remanant tl fun names in views stray views fun rename in notifs.el stray views funs in notifs stray views funs in toot.el views file commentary
* move clear-current notif binding off 'c' to 'C-k'marty hiatt2023-02-271-1/+1
|
* remove first empty line in docstringsmarty hiatt2023-01-091-1/+0
|
* update copyright/author attributionmarty hiatt2022-11-271-0/+2
|
* masto mode map: 'g' calls --updatemarty hiatt2022-11-211-1/+0
| | | | also remove notifs-get from same key in notifs map, for consistency
* make mastodon-notifications-get a global functionmarty hiatt2022-11-211-26/+8
| | | | | | | | | so we can view notifs without first openin other masto buffers - move it to mastodon.el - autoload cookie - rename all instances - pray the keymap works
* autoload notifs--get, clean up buffer-name arg/handling in samemarty hiatt2022-11-211-2/+5
|
* notifs: switch to filtered view when already in notifs viewmarty hiatt2022-11-211-1/+2
| | | | we just have to set the let var propertly for filtered views.
* display edit notificationsmarty hiatt2022-11-211-7/+12
|
* http--post - make args + headers optional argsmarty hiatt2022-11-191-6/+3
| | | | also update all calls to it, no need for nil nil everywhere.
* notifs--get: switch and update if we already have the buffermarty hiatt2022-11-191-7/+11
|
* notifs: don't remove "status" from types, add other notifs viewsmarty hiatt2022-11-191-3/+28
|
* notifs mentions -- also set buffer namemarty hiatt2022-11-181-3/+3
|
* binding for clear notif at pointmarty hiatt2022-11-171-0/+1
|
* add notifications--get-mentionsmarty hiatt2022-11-171-3/+16
| | | | fix endpoint arg in init-sync
* kw arg for foll-req rejectmarty hiatt2022-11-171-1/+1
|
* reorder notif types to match masto api docsmarty hiatt2022-11-171-8/+9
|
* notifications - use local map with foll-req acc/rejmarty hiatt2022-11-161-1/+11
| | | | this way we can remove these bindings from mastodon mode map
* Merge branch 'no-parent' into developmarty hiatt2022-11-131-3/+3
|\
| * wholly remove parent-toot; use base-toot/-id onlymarty hiatt2022-11-121-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | the confusion came from the three different types of statuses we often encounter: - toot - boost/fave - notification (of boost/fave/mention) in notifications, we can't just use -tl--toot-id. it will return the notif's id, not the base toot's. so we do still fetch base-toot JSON (formerly 'parent-toot prop), and get base-toot-id from there, else from toot JSON.
* | notifs - rename clear-all / clear-current, y-or-n-pmarty hiatt2022-11-131-11/+12
| |
* | notifications--follow-request-process -- make non-interactivemarty hiatt2022-11-131-1/+0
| |
* | remove extra defvar buffer-specmarty hiatt2022-11-131-1/+0
|/
* use seq-empty-p and string-empty-p callsmarty hiatt2022-09-051-1/+1
|
* autoloadmarty hiatt2022-08-301-0/+1
|
* clear notification(s) functionsmarty hiatt2022-08-301-0/+28
|
* bump version in boilerplatemarty hiatt2022-08-271-1/+1
|
* autoloads, flycheckmarty hiatt2022-08-271-1/+4
|