aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-notifications.el
Commit message (Collapse)AuthorAgeFilesLines
...
* feed notfication ID to mastodon-notifications--insert-statusmousebot2021-06-191-9/+38
| | | | | | | | which is a copy of mastodon-tl--insert-status. this makes the 'toot-id of notifications that of the favoriting/boosting item, rather than the item boosted/favorited. this ID is needed in order to make loading more older notifications work correctly. beforehand, the call would be incorrect and the same latest 20 notifications would load.
* typos and readmemousebot2021-06-141-1/+1
|
* enable async stream for user notifications.mousebot2021-06-031-3/+3
| | | | creates a notifications filter for the 'user' stream, then handles display of notifications, which have their own timeline funs.
* bump masto version, bump emacs version to 25.1, dependency in readmemousebot2021-05-311-2/+2
|
* make the boosts/favorite byline text in notifications less ambiguousmousebot2021-05-211-2/+2
|
* message for notifs load, tiny search.el cleanupmousebot2021-05-171-1/+2
|
* Update copyright and bump versionJohnson Denen2019-03-041-1/+1
|
* Fix boosting and faving in the notifications buffer.Holger Dürer2018-08-101-4/+6
| | | | Now that we calculate the base toot id, we can ensure that it is unset in notifications that do not represent a toot.
* Remove compiler warnings in mastodon-notifications.el (#190)H Durer2018-08-101-0/+12
|
* Give mastodon-media--inline-images a saner interface. (#191)H Durer2018-08-101-5/+7
| | | | | | | | Instead of making it search the whole buffer every time to find images to load, give it a range where this work should be done. We then call this immediately after inserting a single status, notification, ... There should be no big noticible difference - images might load a tiny bit sooner although I doubt you can see that. This should be more efficient on large buffers although Alex didn't notice any problems when testing streamed buffers. We should still do it as it make things easier to understand. I was always worried about these global operations.
* Adds the notification timeline to mastodon.el closing #34. (#178)Alexander Griffith2018-08-101-0/+133
- Can now handle notifications (follow reblog favourite and mention) - Tests for each of the rendering functions are included - Added keybinding N to mastodon.el for mastodon-notifications-get - added mastodon-notifications to ert-helper.el