Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | bookmark/unbookmark toot funs | mousebot | 2021-10-22 | 1 | -0/+24 | |
| | | ||||||
| * | docstring typo | mousebot | 2021-10-22 | 1 | -1/+1 | |
| | | ||||||
| * | use http--api in max-toot-chars fun | mousebot | 2021-10-22 | 1 | -3/+2 | |
| | | ||||||
| * | collect max toot chars from server and display in new toot buffer | mousebot | 2021-10-22 | 1 | -2/+17 | |
| | | ||||||
* | | Merge branch 'develop' into imgcaching | mousebot | 2021-10-21 | 7 | -105/+313 | |
|\| | ||||||
| * | readme | mousebot | 2021-10-21 | 1 | -5/+11 | |
| | | ||||||
| * | redrafts adopt reply to id from deleted toot | mousebot | 2021-10-21 | 1 | -2/+5 | |
| | | ||||||
| * | fix cw test for replies and for redrafts: "" not nil. | mousebot | 2021-10-21 | 1 | -2/+2 | |
| | | ||||||
| * | icon displays for message visibility - direct, or private | mousebot | 2021-10-21 | 1 | -1/+10 | |
| | | ||||||
| * | print toot keybinding docs in two columns | mousebot | 2021-10-21 | 1 | -5/+37 | |
| | | ||||||
| * | move attachments lower in toot-docs | mousebot | 2021-10-21 | 1 | -4/+5 | |
| | | ||||||
| * | restore hdurer's http--read-file-as-string | mousebot | 2021-10-21 | 1 | -0/+6 | |
| | | ||||||
| * | revert to forward-whitespace -1 test for company | mousebot | 2021-10-21 | 1 | -3/+7 | |
| | | | | | | | | | | | | | | - this is an attempt to only engage company completion when our "word" at point is prefixed with a "@" - for some reason i dont understand, using company-grab-symbol-cons "^@ ..." doesn't work here: typing words with no @ still triggers company | |||||
| * | redraft toots adopt visibility and CW of deleted toot | mousebot | 2021-10-21 | 1 | -6/+14 | |
| | | ||||||
| * | when toot replied to has a CW, adopt it as default for replying toot | mousebot | 2021-10-21 | 1 | -3/+11 | |
| | | ||||||
| * | replies to toots adopt their visibility status by default. | mousebot | 2021-10-21 | 2 | -10/+13 | |
| | | | | | | | | | | | | | | | | | | this makes it so that if you reply to a direct message, your toot will also be direct by default. - we feed the reply's full toot JSON through the chain of functions called, all the way down to "setup-as-reply". that way, if anything else needs to be extracted when setting up a reply, it's all there. | |||||
| * | improvements to toot mentions completion | mousebot | 2021-10-21 | 3 | -21/+24 | |
| | | | | | | | | | | | | | | | | | | - customize option for completion off, following-only, or all. - 'following=true' is forwarded to http--get-search accordingly. - use company-grab-symbol-cons + regex, prepend "@" to it - also prepend '@' to the list in get-user-info-no-url - this makes company display user handles prepended with '@', and to match and - enter a handle without duplicating the '@' | |||||
| * | remove empty lines from docstrings | mousebot | 2021-10-21 | 1 | -6/+0 | |
| | | ||||||
| * | fix default-toot-visibility customize | mousebot | 2021-10-21 | 1 | -5/+5 | |
| | | ||||||
| * | make add mentions-company-backend to company-backens buffer local | mousebot | 2021-10-21 | 1 | -1/+2 | |
| | | | | | | | | | | - we add to company-backends rather than replacing it, but it is still only buffer local. | |||||
| * | Merge branch 'develop' into ments-completion | mousebot | 2021-10-20 | 0 | -0/+0 | |
| |\ | ||||||
| | * | revert hdurers alist > plist conv in auth.el | mousebot | 2021-10-20 | 2 | -12/+6 | |
| | | | ||||||
| * | | Merge branch 'develop' into ments-completion | mousebot | 2021-10-20 | 2 | -49/+117 | |
| |\| | ||||||
| | * | revert leftover caching things from merging image-previews branch | mousebot | 2021-10-20 | 1 | -3/+1 | |
| | | | ||||||
| | * | Merge branch 'img-previews' into develop | mousebot | 2021-10-20 | 4 | -56/+132 | |
| | |\ | ||||||
| | | * | docstrings | mousebot | 2021-10-15 | 1 | -2/+2 | |
| | | | | ||||||
| | | * | FIX the filename we send to post-media-attachement | mousebot | 2021-10-15 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | - it needs to be with full path of course! | |||||
| | | * | binding to upload media, and check uploads up before posting toot | mousebot | 2021-10-15 | 1 | -4/+5 | |
| | | | | ||||||
| | | * | remove my old attachment display | mousebot | 2021-10-15 | 1 | -3/+0 | |
| | | | | ||||||
| | | * | disambiguate media--attachment-height and preview-max-height | mousebot | 2021-10-15 | 1 | -3/+3 | |
| | | | | ||||||
| | | * | flycheck toot.el | mousebot | 2021-10-15 | 1 | -3/+6 | |
| | | | | ||||||
| | | * | rever auth / client changes too | mousebot | 2021-10-15 | 2 | -13/+13 | |
| | | | | ||||||
| | | * | merge hdurers attachment upload and my own | mousebot | 2021-10-15 | 1 | -27/+21 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | replace hdurer's mastodon-toot--post-media and my mastodon-toot--add-media-attachment with hdurer's mastodon-toot--attach-media (which holds the data in the toot draft) and my mastodon-toot--upload-media-attachments (which actually uploads them) | |||||
| | | * | revert mastodon-http changes | mousebot | 2021-10-15 | 1 | -49/+9 | |
| | | | | | | | | | | | | | | | | | | | | - we will keep my old implementation of attachment uploading, as it already works with the media_ids[] of the API. | |||||
| | | * | revert "private" visibility = "followers only" in toot draft | mousebot | 2021-10-15 | 1 | -3/+7 | |
| | | | | ||||||
| | | * | handle image scaling with image-transforms-p (when emacs >= 27.1) | mousebot | 2021-10-15 | 1 | -5/+8 | |
| | | | | ||||||
| | | * | first test merge of hdurer's WIP: Posting of images | mousebot | 2021-10-15 | 5 | -64/+176 | |
| | | | | ||||||
| | | * | readme | mousebot | 2021-10-14 | 1 | -1/+1 | |
| | | | | ||||||
| * | | | first go at company completion for mentions in new toots | mousebot | 2021-10-20 | 2 | -0/+72 | |
| |/ / | ||||||
| * | | Revert "handle cached images" | mousebot | 2021-10-18 | 1 | -10/+4 | |
| | | | | | | | | | | | | | | | | | | -- caching images with url.el locks up mastodon.el This reverts commit 0129bcf466a4913bdda095b977cd06560c406a30. | |||||
| * | | readme | mousebot | 2021-10-18 | 1 | -1/+1 | |
| | | | ||||||
* | | | typo | mousebot | 2021-10-18 | 1 | -1/+1 | |
| | | | ||||||
* | | | handle cached images | mousebot | 2021-10-18 | 1 | -1/+1 | |
| |/ |/| | | | | | | | | | | | | | when we fetch images, check if they are cached, and if so use the cached version. for now, images aren't cached explicitly, but this should work if the user has `url-automatic-caching' enabled. | |||||
* | | handle caching of images | mousebot | 2021-10-09 | 1 | -4/+8 | |
|/ | | | | | we now store images ourselves for caching rather than relying on url-automatic-caching. | |||||
* | handle cached images | mousebot | 2021-10-09 | 1 | -4/+10 | |
| | | | | | | | | when we fetch images, check if they are cached, and if so use the cached version. for now, images aren't cached explicitly, but this should work if the user has `url-automatic-caching' enabled. | |||||
* | Merge branch 'main' into develop | mousebot | 2021-10-05 | 3 | -3/+10 | |
|\ | ||||||
| * | get relationships for a user with 1 rather than 2 requests | mousebot | 2021-10-05 | 1 | -2/+3 | |
| | | ||||||
| * | set a larger mastodon-http--timeout. | mousebot | 2021-10-05 | 1 | -1/+1 | |
| | | | | | | | | loading profiles would often not make in 5 seconds on a slower connection | |||||
| * | readme re fixes | mousebot | 2021-10-04 | 1 | -0/+6 | |
| | | ||||||
| * | make updating new toots inserts them after any pinned toots | mousebot | 2021-10-04 | 1 | -3/+4 | |
| | |