aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-profile.el
Commit message (Collapse)AuthorAgeFilesLines
...
* add private note on accounts. first go.marty hiatt2023-03-161-0/+46
|
* note on profiles if user has requested to follow youmarty hiatt2023-03-141-5/+10
|
* with-current-buffer for use-local-map callsmarty hiatt2023-03-141-2/+3
|
* lsp corrections: lambdas, if to when, etc.marty hiatt2023-03-141-2/+2
|
* replace with-output-to-temp-buffer with with-current-buffer callsmarty hiatt2023-03-081-82/+83
|
* require parse-timemarty hiatt2023-02-201-0/+1
|
* autoloads, flychecksmarty hiatt2023-02-191-0/+4
|
* more cases to use buffer-type-eqmarty hiatt2023-02-191-10/+9
|
* docstrings/flychecksmarty hiatt2023-01-281-1/+1
|
* profile--format-joined-date-string - don't use ts.el to formatmouse2023-01-211-5/+2
|
* customize number of posts displayed in a timeline or account viewmarty hiatt2023-01-111-1/+2
| | | | FIXES #363
* confirm update profile note if > 500 charsmarty hiatt2022-11-281-5/+14
| | | | mastodon server sets a 500 char max, but forks and other servers may not.
* live count for update profile note, + confirm cancelmarty hiatt2022-11-281-9/+46
|
* add remove-from-followers via list of 100 followers.marty hiatt2022-11-281-7/+26
|
* simplify remove from followersmarty hiatt2022-11-281-19/+1
|
* Merge branch 'develop' into remove-from-followersmarty hiatt2022-11-281-22/+37
|\
| * update copyright/author attributionmarty hiatt2022-11-271-0/+2
| |
| * no lambdas allowed in buffer-spec update-function!marty hiatt2022-11-261-1/+0
| |
| * --set-buffer-spec everywhere(?) and include handle/instance urlmarty hiatt2022-11-261-1/+8
| | | | | | | | set buffer spec in view instances description
| * remove --view-author-profile, replace with --get-toot-authormarty hiatt2022-11-261-8/+0
| |
| * symbols: preceding space for locked accounts, private/direct tootsmarty hiatt2022-11-261-1/+1
| |
| * cleanup --symbols, autoloadmarty hiatt2022-11-261-3/+2
| |
| * paginate profile view followers/following with link headermarty hiatt2022-11-261-10/+26
| |
* | don't require match for handle at pointmarty hiatt2022-11-251-1/+2
| |
* | actually make remove-from-followers workmarty hiatt2022-11-251-7/+8
| |
* | Merge branch 'develop' into remove-from-followersmarty hiatt2022-11-251-3/+6
|\|
| * tweak joined date newlines printing + testmarty hiatt2022-11-251-3/+6
| |
* | draft remove-from-followersmarty hiatt2022-11-241-0/+49
|/
* no blank lines in docstrings in profile.elmarty hiatt2022-11-241-7/+2
|
* docstrings and autoloadsmarty hiatt2022-11-241-3/+5
|
* Merge branch 'params-always-in-http-el' into developmarty hiatt2022-11-241-13/+15
|\
| * params always in http.el, only ever send alists from elsewhere.marty hiatt2022-11-211-13/+15
| | | | | | | | probably incomplete but mostly done.
* | move add account to list profile to profile.el, + readmemarty hiatt2022-11-231-0/+11
| |
* | refactor mastodon-profile--format-joined-date-stringmarty hiatt2022-11-221-7/+10
|/
* add fun to display profile statuses without boostsmarty hiatt2022-11-211-6/+18
|
* add joined date to profile pagesmarty hiatt2022-11-211-2/+12
|
* paginate bookmarks timeline (3/4 working?)marty hiatt2022-11-211-1/+2
| | | | | | | seems tl--more seems to repeat bookmarks after 3-4 loads. a similar issue was solved with favourites, but it was always after 2nd load. and we are using the fixed code here already. i have many more favourites than bookmarks. but still it would be nice to not seem to load more when we hit the end.
* profile.el: -- separator for all function namesmarty hiatt2022-11-181-21/+21
|
* profile--add-author-bylines -- still print avatar byline-authormarty hiatt2022-11-171-1/+2
|
* change foll-reqs view reject binding to 'j', like notifs viewmarty hiatt2022-11-131-1/+4
| | | | then 'r' is only ever used for reply, even tho not avail in fr view
* comment profile 's' and 'g' view followers/-ing bindingsmarty hiatt2022-11-131-2/+5
| | | | | | 's' conflicts with translate-toot-at-point. C-c C-c does the job anyway
* flycheck -profile / profile--toot-json todosmarty hiatt2022-11-121-2/+8
|
* GET verify_cred not PATCH update_creds for fetch profile notemarty hiatt2022-11-101-2/+2
|
* FIX update profile note - params alist formatmarty hiatt2022-11-101-1/+1
|
* Merge branch 'headers' into developmarty hiatt2022-11-101-12/+14
|\
| * relationships in print profile buffer - get json list not vectmarty hiatt2022-11-091-5/+4
| |
| * add headers arg to http--process-json and --get-json-asyncmarty hiatt2022-11-051-1/+2
| |
| * display profile header image [rough start]marty hiatt2022-11-041-6/+8
| | | | | | | | plant header image to right of avatar
| * convert :json-false to nil in account settings handlingmarty hiatt2022-10-311-3/+7
| | | | | | | | :json-false isn't nil, so doesn't work as we want
* | masto-toot-mode-hook - only fetch acc settings if not setmarty hiatt2022-11-101-22/+30
| | | | | | | | | | | | | | | | | | the idea is to be able to start composing a toot without making any unnecessary requests. masto-mode-hook still always fetches (in case settings changed elsewhere). and we always fetch when we change a setting.