aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | make updating new toots inserts them after any pinned tootsmousebot2021-10-041-3/+4
|/
* readmemousebot2021-10-031-1/+2
|
* flycheck: docstrings, autoloads, etcmousebot2021-10-036-19/+39
|
* readme re bugsmousebot2021-10-031-6/+2
|
* revert bug workaround copying toot to kill ringmousebot2021-10-031-2/+1
|
* Fix: make after-change-functions buffer local.Holger Dürer2021-10-031-1/+2
| | | | See issue #218 — we mistakenly modified the global value and `mastodon-toot--update-status-fields` makes no sense outside the toot compose buffer.
* make mastodon-toot--insert-emoji an aliasmousebot2021-10-031-3/+3
|
* restore var toot--media-attachmentsmousebot2021-10-021-3/+7
|
* customize option default-media-directorymousebot2021-10-021-1/+7
|
* flycheck: docstrings, autoloads, declarationsmousebot2021-10-024-41/+78
|
* add emojify-insert-emoji binding in mastodon new toot buffermousebot2021-10-021-0/+8
|
* repair somewhat the media-upload functions and error handlingmousebot2021-10-022-18/+14
|
* kill-current-buffer instead of kill-this-buffermousebot2021-10-011-1/+1
| | | | | kill-this-buffer doesn't always work if not called from the menu bar, as stated in its docstring.
* readme updatemousebot2021-09-231-25/+30
|
* display "followers-only" for "private" post visibilitymousebot2021-09-231-3/+7
|
* fix formatting of mastodon-toot-default-visibilitymousebot2021-09-231-4/+5
|
* basic delete-and-redraft-toot, text status only for now.mousebot2021-09-232-0/+27
|
* hacks to minimize toot bug: copy text, only kill buffer after postmousebot2021-09-231-3/+5
|
* disable avatars by defaultmousebot2021-09-231-1/+1
|
* on delete toot, redraw current timeline or profilemousebot2021-09-232-1/+17
|
* rename show-avatars-p custom to show-avatarsmousebot2021-09-221-3/+3
|
* package-lint: bump to emacs 26.1, disable stream keybindingsmousebot2021-09-2215-29/+25
|
* make display of (scaled) avatars a customize optionmousebot2021-09-131-6/+15
|
* use inbuilt image scaling if emacs version => 27.1mousebot2021-09-133-7/+17
| | | | and put point at point-min on profile load
* fix RET/i not working on image attachments in notifications.mousebot2021-09-081-1/+4
| | | | | notifications only have a url and a preview_url, but no remote_url. we still prefer remote_url in home timelines (inc. boosts) though.
* improve docstrings in mastodon-auth so i know what it does.mousebot2021-08-111-6/+11
|
* zero index our poll vote, message choice + number on successmousebot2021-08-101-9/+11
| | | | zero indexing the vote means we vote for the option we actually chose
* try to handle reblogged pollsmousebot2021-08-102-2/+6
|
* provide poll option descriptions in completing-readmousebot2021-08-101-15/+22
|
* functions to vote on polls in timelines, bound to "v"mousebot2021-08-093-7/+48
| | | | - masto view favorites binding moved to "V", in line with other separate views being in capitals
* mastodon-http--triage - messages errors rather than response buffermousebot2021-08-091-2/+15
|
* use either display_name or username in author bylinemousebot2021-08-091-1/+3
| | | | | this fixes the situation where accounts with nothing in "display_name" would appear as only as a handle
* follow requests accept/reject from notifications +mousebot2021-08-094-52/+111
| | | | | | | - new bindings for f-req accept/reject (in both notifs and in f-req views) - check if we are at an f-req before accept/rejecting - flycheck / docstrings - fix notifs byline formatting for f-reqs
* readme updatemousebot2021-08-091-28/+29
|
* revert 'base-toot-id to 'toot-id in tl oldest tootmousebot2021-08-081-1/+1
|
* include follow-requests in notificationsmousebot2021-08-081-2/+21
|
* fix typo in mastodon-tl--process-link setting 'account-id propmousebot2021-08-082-3/+5
| | | | this prevented the 'account-id from being attached to mentions
* replace 'toot-id with base-toot-id in mastodon-tl--oldest-idmousebot2021-08-071-1/+2
| | | | | | this is an attempt to avoid adding same toots instead of older toots on timelines. it seems to only happen sometimes, my guess it is happens when last toot displayed is favorited or boosted, perhaps only by the logged-in user.
* fix mentions broken when on local instancemousebot2021-08-071-3/+7
|
* fix tests to work with my changes: bylines + notifs asyncmousebot2021-08-072-30/+34
|
* readme mastodon-toot bugsmousebot2021-07-301-0/+2
|
* move follow req acc/rej bindings so they don't shadow profilesmousebot2021-07-161-2/+2
|
* typo in async http-layer, unless in http process-json, typo in readmmousebot2021-06-213-5/+4
|
* feed notfication ID to mastodon-notifications--insert-statusmousebot2021-06-192-11/+40
| | | | | | | | 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.
* display boosted pollsmousebot2021-06-191-2/+5
|
* hack to ensure toot buffer bindings are always enabled.mousebot2021-06-192-3/+3
| | | | | | | | make mastodon-toot-mode is run in mastodon-toot--compose-buffer before after-change-functions bugs. this makes mastodon-toot work properly even if mastodon-mode has not yet been run/loaded yet.
* typos and readmemousebot2021-06-143-22/+26
|
* use mastodon-auth--user-acct instead of get-account-name in mastodonmousebot2021-06-081-2/+3
| | | | | | the former first checks if the value is stored in var mastodon-auth--acct-alist, and only makes a request if it doesn't get the handle from there. and if run it also stores the value.
* attempt to handle response errors in mastodon-http--process-jsonmousebot2021-06-071-1/+3
|
* only get-home-timeline if mastodon buffers not already open.mousebot2021-06-071-2/+15
| | | | requires cl-lib