summaryrefslogtreecommitdiff
path: root/mastoapi.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Ensure the new app client_id is unique.Gravatar default2023-04-281-1/+12
|
* Hide hidden posts from timelines.Gravatar default2023-04-271-1/+5
|
* Fixed video attachments.Gravatar default2023-04-261-13/+15
|
* Fixed crash in mastoapi search.Gravatar default2023-04-261-1/+1
|
* Update lastlog.txt everytime a Bearer token is validated.Gravatar default2023-04-261-0/+4
|
* Store the what-is-snac URL as a CPP constant.Gravatar default2023-04-251-1/+1
|
* Skip muted morons from timelines and statuses.Gravatar default2023-04-241-3/+9
|
* Added emojis to mastoapi_account().Gravatar default2023-04-241-1/+36
|
* Added custom emojis to Statuses.Gravatar default2023-04-241-0/+22
|
* Added the hashtag list to mastoapi_status().Gravatar default2023-04-241-0/+14
| | | | What is this for?
* Added mentions to mastoapi_status().Gravatar default2023-04-241-3/+39
|
* Added some more Instance values.Gravatar default2023-04-241-0/+19
|
* Added snac limits (no real limits) to the Instance object.Gravatar default2023-04-241-11/+19
|
* Moved JSON output validation to httpd.c.Gravatar default2023-04-231-8/+0
|
* Fixed bad JSON for accounts that do not have a 'summary' field.Gravatar default2023-04-231-1/+6
|
* Fixed a bug in the instance timeline.Gravatar default2023-04-231-3/+3
|
* Added an instance timeline.Gravatar default2023-04-231-2/+55
|
* Don't return that much entries in the mastoapi timeline.Gravatar default2023-04-231-1/+1
|
* Added mastoapi unfollow.Gravatar default2023-04-231-0/+16
|
* Added mastoapi follow.Gravatar default2023-04-231-27/+88
|
* Attend mastoapi relationships.Gravatar default2023-04-231-2/+37
| | | | Now, the follow/unfollow buttons appear on each account's page.
* Added mastoapi code for account search.Gravatar default2023-04-231-0/+40
|
* New function mastoapi_put_handler().Gravatar default2023-04-221-0/+70
|
* Use static_get_meta() when preparing the attachment.Gravatar default2023-04-221-3/+5
|
* Added mastoapi support for adding images.Gravatar default2023-04-221-0/+70
|
* Added a new compilation variable NO_MASTODON_API.Gravatar default2023-04-211-0/+4
| | | | | | | | | The Mastodon API is a big and ugly beast; if you don't want it in your snac, you can compile it out by running make CFLAGS=-DNO_MASTODON_API And your snac binary will be as slim as always.
* Commented out more debugging code.Gravatar default2023-04-201-2/+0
|
* Commented out test code.Gravatar default2023-04-201-2/+2
|
* More complete mastodon api instance object.Gravatar default2023-04-201-1/+21
| | | | But Megalodon keeps crashing.
* Deleted debug code.Gravatar default2023-04-201-2/+0
|
* Use server.json "admin_email" in mastoapi instance object.Gravatar default2023-04-201-1/+7
|
* arc4random() does not exist in not-so-old systems, so revert this.Gravatar default2023-04-161-4/+4
| | | | | | Revert "Replaced random() with arc4random()." This reverts commit f658f345cac7b24d6fa61f08b4ec09823d28b11a.
* Replaced random() with arc4random().Gravatar default2023-04-161-4/+4
|
* Replaced strcpy() with strncpy().Gravatar default2023-04-161-1/+1
| | | | To shut up some compiler whining.
* Also accept /api/v2 urls.Gravatar default2023-04-161-3/+9
|
* New function user_open_by_md5().Gravatar default2023-04-161-5/+1
|
* Temporary fix to this account show error.Gravatar default2023-04-161-0/+4
|
* Return context ancestors in the right order.Gravatar default2023-04-161-1/+1
|
* Fixed use-after-free in reply messages.Gravatar default2023-04-161-30/+30
|
* Don't strip the api version in mastoapi post handler.Gravatar default2023-04-161-6/+6
|
* Posts can now be sent (still no images).Gravatar default2023-04-151-1/+46
|
* Force failure in Mastodon API before it gets to a crash-on-startup situation.Gravatar default2023-04-151-2/+6
|
* Added entrypoint /push/subscription.Gravatar default2023-04-151-4/+40
| | | | | The returned object is just wild guessing, I don't understand all this things. Anyway, the offical app keeps crashing.
* Added some more dummy entry points.Gravatar default2023-04-151-0/+18
|
* Added the 'header' field to verify_credentials.Gravatar default2023-04-151-0/+1
| | | | Megalodon accepted, but now crashes on input.
* Some fixes to allow Megalodon to work.Gravatar default2023-04-151-18/+29
| | | | The instance object was wrong and the oauth args can appear as JSON.
* New mastoapi to clear all notifications.Gravatar default2023-04-141-0/+13
|
* New notifications web page.Gravatar default2023-04-141-0/+3
|
* Fixed crash in notification list.Gravatar default2023-04-141-6/+11
|
* Added a dummy 'created_at' field for accounts that don't have a date.Gravatar default2023-04-141-0/+5
| | | | This avoid a crash in Tusky.