Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | make profile--extract-user-handles compat with foll req view | mousebot | 2022-02-15 | 1 | -1/+6 | |
| | | | | | | this allows following users directly from foll req views made extract-users-handles work with follwers/following in profile view | |||||
* | factor out a decent insert-follow-requests fun | mousebot | 2022-02-15 | 1 | -1/+15 | |
| | ||||||
* | replace all calls to mastodon-search--insert-users-propertized | mousebot | 2022-02-15 | 1 | -2/+1 | |
| | | | | with calls to mastodon-profile--add-author-bylines. | |||||
* | make accept/reject foll reqs cmds avail in foll reqs view! | mousebot | 2022-02-15 | 1 | -0/+13 | |
| | ||||||
* | message for no follow reqs in add-author-bylines fun | mousebot | 2022-02-05 | 1 | -14/+16 | |
| | ||||||
* | don't call mastodon-profile-mode in profile--view-follow-requests | mousebot | 2022-02-05 | 1 | -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. | |||||
* | update homepage and copyright boilerplate | mousebot | 2022-02-05 | 1 | -1/+1 | |
| | ||||||
* | refactor follow request accept/reject functions. | mousebot | 2021-12-24 | 1 | -46/+0 | |
| | | | | | | | | | | 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. | |||||
* | tiny ediff clean up 2. | mousebot | 2021-12-23 | 1 | -3/+2 | |
| | ||||||
* | remove all ^M from update profile note buffer | mousebot | 2021-12-21 | 1 | -0/+1 | |
| | ||||||
* | remove old comments | mousebot | 2021-12-20 | 1 | -6/+1 | |
| | ||||||
* | typos and docstrings | mousebot | 2021-12-20 | 1 | -3/+4 | |
| | ||||||
* | bump version to a round number | mousebot | 2021-12-17 | 1 | -1/+1 | |
| | ||||||
* | boilerplate maintainer contact | mousebot | 2021-12-17 | 1 | -0/+1 | |
| | ||||||
* | depend on emacs 27.1, flychecks, docstrings, etc. | mousebot | 2021-12-17 | 1 | -1/+1 | |
| | | | | strictly, the 27.1 dependency is only for proper-list-p in -http.el. | |||||
* | bump version, change homepage link, readme | mousebot | 2021-12-17 | 1 | -2/+2 | |
| | ||||||
* | move profile view followers/following bindings to 's'/'g'. | mousebot | 2021-11-10 | 1 | -2/+2 | |
| | | | | | | | because 'O' is no longer available, being used for --my-profile. the actual solution is to just have one binding that cycles through the profile views. | |||||
* | Do a bit if `if` and `progn` sanitizing. | Holger Dürer | 2021-11-06 | 1 | -6/+5 | |
| | | | | | | | - A `progn` with a single form is redundant - `when` doesn't need a `progn` body - `if` has an implicit `progn` for the consequences - I converted one cascade of `if`s into a `cond`. | |||||
* | Convert most uses of `(cdr (assoc <some-symbol> <a-list>))` to `(alist-get ↵ | Holger Dürer | 2021-11-06 | 1 | -31/+31 | |
| | | | | | | | <some-symbol> <a-list>)` This is more readable and actually more efficient (maybe) since it uses `eq` rather than `equal` as a test. | |||||
* | Reformat all code. | Holger Dürer | 2021-11-06 | 1 | -12/+12 | |
| | | | | | | | | | | | Basically, in Emacs for each file: select all text and `indent-region`. - This also removes one redundant comment, and - fixes an error with json decoding where the `json-read-from-string` was actually not within the intended `unless` clause (which explains the warning about "result of (string-equal "" json-string) will be ignored" which I never understood. | |||||
* | Use `defvar-local` to create buffer-local vars. | Holger Dürer | 2021-11-06 | 1 | -2/+1 | |
| | | | | | This is much cleaner than first using `defvar` immediately followed by `make-variable-buffer-local`. | |||||
* | Fix tests. | Holger Dürer | 2021-11-01 | 1 | -1/+1 | |
| | | | | | | | | | | | | These needed a bit of tender love and care to get back into passing state. - Move the auth tests to the `test` directory. No idea what it was doing in `lisp`. - Image tests are mostly broken because with later Emacsen we no longer need the `imagemagic` option on create-image. - Some method signatures have changed and mocking calls needed to follow suit. | |||||
* | display status of locked accounts in profile view | mousebot | 2021-10-26 | 1 | -1/+7 | |
| | ||||||
* | update discover menu | mousebot | 2021-10-22 | 1 | -0/+8 | |
| | ||||||
* | get relationships for a user with 1 rather than 2 requests | mousebot | 2021-10-05 | 1 | -2/+3 | |
| | ||||||
* | make updating new toots inserts them after any pinned toots | mousebot | 2021-10-04 | 1 | -3/+4 | |
| | ||||||
* | package-lint: bump to emacs 26.1, disable stream keybindings | mousebot | 2021-09-22 | 1 | -1/+1 | |
| | ||||||
* | use inbuilt image scaling if emacs version => 27.1 | mousebot | 2021-09-13 | 1 | -1/+2 | |
| | | | | and put point at point-min on profile load | |||||
* | follow requests accept/reject from notifications + | mousebot | 2021-08-09 | 1 | -39/+42 | |
| | | | | | | | - 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 | |||||
* | fix typo in mastodon-tl--process-link setting 'account-id prop | mousebot | 2021-08-08 | 1 | -1/+1 | |
| | | | | this prevented the 'account-id from being attached to mentions | |||||
* | move follow req acc/rej bindings so they don't shadow profiles | mousebot | 2021-07-16 | 1 | -2/+2 | |
| | ||||||
* | implement updating user profile note | mousebot | 2021-06-05 | 1 | -7/+62 | |
| | | | | | uses a tiny minor mode 'profile-update', with bindings. U is a general binding for it. | |||||
* | foll reqs/faves bindings global, autoloads and declarations, readme | mousebot | 2021-06-01 | 1 | -4/+6 | |
| | ||||||
* | bump masto version, bump emacs version to 25.1, dependency in readme | mousebot | 2021-05-31 | 1 | -2/+2 | |
| | ||||||
* | view favourites fun, and view/accept/reject follow requests funs. | mousebot | 2021-05-30 | 1 | -2/+62 | |
| | | | | | | | and bindings. view-follow-requests makes mastodon-tl--init run in mastodon-profile-mode just so that its bindings can be restricted to that minor mode. | |||||
* | only show pinned statuses for "statuses" profile buffer | mousebot | 2021-05-30 | 1 | -2/+2 | |
| | ||||||
* | add request and seq as dependencies, flycheck cleanups, and | mousebot | 2021-05-27 | 1 | -1/+2 | |
| | | | | move http search funs into http.el | |||||
* | enable tab-stops for links/handles/hashtags in profile note. | mousebot | 2021-05-21 | 1 | -1/+2 | |
| | ||||||
* | pinned toots implemented properly, make-buffer-for revert to synchro | mousebot | 2021-05-21 | 1 | -12/+26 | |
| | | | | better pinned toots formatting | |||||
* | autoloads in profile.el | mousebot | 2021-05-18 | 1 | -0/+4 | |
| | ||||||
* | split mastodon-tl--timeline back into two functions. | mousebot | 2021-05-17 | 1 | -2/+2 | |
| | | | | | this is to prevent pinned toots appearing as such when this function is used elsewhere than for a profile. e.g. the tag search. | |||||
* | clean-up edits after flycheck/bytecompile. | mousebot | 2021-05-16 | 1 | -2/+2 | |
| | ||||||
* | display pinned toots first on a user's profile. | mousebot | 2021-05-16 | 1 | -4/+3 | |
| | | | | | | | also: profile--relationships-get no longer interactive. and docstrings for fields insert. indent "pinned" for pinned toots display | |||||
* | add basic display of "fields" (category pairs) on user profiles | mousebot | 2021-05-16 | 1 | -3/+47 | |
| | | | | clean up fields mastodon-profile--fields-format | |||||
* | display "follows you" and "followed by you" on user profiles | mousebot | 2021-05-14 | 1 | -7/+38 | |
| | ||||||
* | message when loading timelines and profiles | mousebot | 2021-05-13 | 1 | -1/+4 | |
| | ||||||
* | add my profile function | mousebot | 2021-05-10 | 1 | -0/+5 | |
| | ||||||
* | async view profile, async view thread, better prompts | mousebot | 2021-05-09 | 1 | -4/+9 | |
| | | | | | | - view profile (using make-profile-buffer-for). - user confirm to delete toot. - better follow/mute/block/profile prompts | |||||
* | indent toots/foll/following on profile | mousebot | 2021-05-08 | 1 | -1/+1 | |
| | ||||||
* | add toot/follows/followers counts to profile buffer | mousebot | 2021-05-08 | 1 | -1/+11 | |
| |