aboutsummaryrefslogtreecommitdiff
path: root/lisp
Commit message (Collapse)AuthorAgeFilesLines
* autoloads and docstringsmousebot2022-02-111-3/+6
|
* put point after a boost/fave marker on successmousebot2022-02-111-1/+4
| | | | | | this will leave point on the author-byline, which is where we want it to be, as the marker is not strictly part of the byline, and we are adding info/actions to the author-byline.
* improve propertizing of boost/fave markersmousebot2022-02-111-15/+17
| | | | | | | | | | | | | | | | - previously, boost/fave markers behaved differently depending on whether they had just been created by the user, or if they were already existing and loaded with the timeline. in the first case, they'd not be part of the byline, in the second they would be. we make it that they not part of the byline, so `mastodon-tl--goto-next-toot', which works according to text properties, should always put point after them, on the author-byline. this also means that we can add help-echos and actions to the author byline without having to worry about also adding them to the boost/fave markers. fix call to format-faved-or-boosted-byline
* implement playing toot's moving image when point is on author bylinemousebot2022-02-111-4/+54
| | | | | | | | | | | | | - new: mpv-play-video-from-byline - new: find-first-video-in-attachments, returns first moving image attachment from the toot - edit mpv-play-video-at-point to accept args url and type - attachments type/url are now stored in attachments property of the byline - fetched with get-attachments-for-byline - keymap byline-keymap to allow playing with C-RET
* display toot's media type when on author bylinemousebot2022-02-111-15/+33
|
* replace if call with or call in tl--mediamousebot2022-02-111-4/+3
|
* Merge branch 'develop' into mpv-play-at-pointmousebot2022-02-1113-95/+143
|\
| * --search-accounts-query use http--apimousebot2022-02-071-1/+1
| |
| * add go to next toot to tl--threadmousebot2022-02-071-13/+15
| | | | | | | | fix go to first toot on thread load
| * implement follow suggestions.mousebot2022-02-072-15/+45
| | | | | | | | | | | | | | | | | | | | | | this factors out display of accounts from mastodon-search--search-query into mastodon-search--insert-users-propertized. mastodon-tl--get-follow-suggestions is the fun to view suggestions. seeing as this allows easy display of profile note under the account handle, i also added this display to --search-query, but it cd be easily disabled by calling --insert-users-propertized without its second arg.
| * message when notificiations--timeline returns nothing.mousebot2022-02-051-2/+4
| |
| * place point on byline of first toot on timeline load.mousebot2022-02-051-0/+1
| |
| * message for no follow reqs in add-author-bylines funmousebot2022-02-051-14/+16
| |
| * don't call mastodon-profile-mode in profile--view-follow-requestsmousebot2022-02-051-1/+0
| | | | | | | | | | | | | | it's now called in tl-init* for follow requests inits. calling it here also enables profile mode in whatever bufer view-follow-reqs was called from, which is useless.
| * revert require of mastodon-toot to autoloadsmousebot2022-02-052-11/+17
| | | | | | | | | | - use (autoload) call in mastodon.el for functions - use autoload cookie in mastodon-tool.el for customize options.
| * update homepage and copyright boilerplatemousebot2022-02-0513-19/+19
| |
| * autoload fix for mastodon-notifications--get; set interative to tmousebot2022-01-301-1/+3
| | | | | | | | | | to make `mastodon-notifications--get' available outside our keymap as it needs to be available to evil users and via M-x. otherwise there's no way to run it.
| * handle a buggy empty notificationmousebot2022-01-152-18/+20
| | | | | | | | | | | | i received an notification (also in other clients/web interface) attached to no toot. these checks should allow notifications view to display without tripping up on any such vacant notifs from the server.
| * autoloadsmousebot2022-01-151-0/+2
| |
* | disable moving image overlaymousebot2022-01-151-14/+14
| | | | | | | | | | due to the bug the displays it before (point-min) if you load a timeline more than once :/
* | Merge branch 'develop' into mpv-play-at-pointmousebot2022-01-153-18/+26
|\|
| * keep mastodon-toot--max-toot-chars a number not a string.mousebot2022-01-121-4/+3
| | | | | | | | | | we use it as a number various times so let's leave it a number, then convert to string for display in toot info.
| * byte compile warningsmousebot2022-01-111-2/+3
| |
| * FIX local mentions/links checkingmousebot2022-01-111-9/+9
| | | | | | | | | | | | | | | | | | | | | | we remove the hacky non-check for a user handle from mastodon-tl--process-link, so that it /always/ runs mastodon-tl--extract-userhandle-from-url. the in extract-userhandle-from-url, we test if the url host = local instance. if so, we just return buffer-text, which = "@user", with no suffix. else we return a full "@user@instance.url" handle. remove unused var after fix to userhandle parsing
| * FIX fetching max toot length from servermousebot2022-01-111-4/+12
| | | | | | | | | | | | | | | | some servers have 'max_toot_chars, but others seem to have 'max_characters, under statuses, under configuation. we allow for both types, but also we check our var isn't nil before trying to check it's length, which broke toot--send in some cases.
| * add support for poll notificationsmousebot2022-01-101-4/+12
| | | | | | | | finally we now display all types of notifications! it's about bloody time.
* | try an all-the-icons icon. not too sure about it tho.mousebot2022-01-111-1/+6
| | | | | | | | its unicode
* | add play symbol as after-string overlay to gifv and video typesmousebot2022-01-111-3/+12
| | | | | | | | also update the help-echo for the command to play them
* | add function to play gif/video at point. uses mpv.elmousebot2022-01-112-1/+18
| | | | | | | | oops fix the mpv require statement
* | add support for poll notificationsmousebot2022-01-051-3/+11
|/ | | | finally we now display all types of notifications! it's about bloody time.
* refactor notification functionsmousebot2022-01-031-75/+48
|
* fix follow-request-process: change "accept" to "authorize"mousebot2021-12-291-7/+8
|
* pleroma compat commentmousebot2021-12-251-0/+1
|
* reload on pin togglemousebot2021-12-251-2/+6
|
* Merge branch 'insert-status-refactor' into developmousebot2021-12-242-17/+9
|\
| * refactor mastodon-notifications--insert-statusmousebot2021-12-242-17/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | which was a copy of mastodon-tl--insert-status. we revert to having just the latter as main function with optional argument. mastodon-notifications--insert-status just calls it with the arg ID. the reason we need the difference is to ensure notifications have their own ID, and not that of the toot the notif refers to, attached as property "toot-id". then we have all functionality working on notifications, such as boosting mentions and so on.
* | refactor follow request accept/reject functions.mousebot2021-12-243-82/+33
|/ | | | | | | | | | previously we had duplication of functions depending on whether we were in follow requests view or notificaitons view. now we just check which kind of f-req we have and act accordingly. main function being `mastodon-notifications--follow-request-process'. also updates keybindings for both views. we no longer need them included separately in profile-mode.
* text-mode for toot compose buffermousebot2021-12-241-1/+1
| | | | and remove duplicate mastodon-toot-mode call.
* tiny ediff clean up 2.mousebot2021-12-232-5/+3
|
* Merge branch 'main' into developmousebot2021-12-232-13/+11
|\
| * apply pleroma patch from #208mousebot2021-12-231-0/+2
| |
| * tiny cleanups after Ediff main / mastermousebot2021-12-231-14/+10
| |
| * remove all ^M from update profile note buffermousebot2021-12-211-0/+1
| |
| * override 'O' binding on links to my-profilemousebot2021-12-211-0/+2
| |
* | remove all ^M from update profile note buffermousebot2021-12-211-0/+1
| |
* | override 'O' binding on links to my-profilemousebot2021-12-211-0/+2
| |
* | docstring and move pin toot togglemousebot2021-12-201-21/+18
| |
* | improve delete toot testsmousebot2021-12-201-0/+2
| |
* | remove old commentsmousebot2021-12-201-6/+1
| |
* | refactoring delete/redraft functionsmousebot2021-12-201-37/+43
| |