| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Version 2.27 RELEASED.2.27 | 2023-04-13 | 1 | -1/+1 | |
| | | |||||
| * | Updated RELEASE_NOTES. | 2023-04-13 | 1 | -1/+1 | |
| | | |||||
| * | More log level tweaks. | 2023-04-13 | 1 | -1/+1 | |
| | | |||||
| * | Changed mastoapi log levels. | 2023-04-13 | 1 | -13/+14 | |
| | | |||||
| * | f_ctime() returns the oldest of ctime and mtime. | 2023-04-13 | 1 | -2/+7 | |
| | | |||||
| * | Updated RELEASE_NOTES. | 2023-04-13 | 2 | -1/+7 | |
| | | |||||
| * | The snac page has been renamed to what-is-snac. | 2023-04-12 | 1 | -1/+1 | |
| | | |||||
| * | Relationships can only be queried if logged in. | 2023-04-12 | 1 | -3/+6 | |
| | | |||||
| * | Dummy /accounts/relationships. | 2023-04-12 | 1 | -0/+8 | |
| | | |||||
| * | Also return (some) information for non-local users. | 2023-04-12 | 1 | -29/+47 | |
| | | |||||
| * | Updated RELEASE_NOTES. | 2023-04-12 | 1 | -1/+1 | |
| | | |||||
| * | Added the mastodon account data. | 2023-04-12 | 1 | -11/+21 | |
| | | |||||
| * | Added the mastodon personal timeline. | 2023-04-12 | 1 | -21/+60 | |
| | | |||||
| * | Updated RELEASE_NOTES. | 2023-04-12 | 2 | -2/+2 | |
| | | |||||
| * | Added support for like and boost lists. | 2023-04-12 | 1 | -20/+47 | |
| | | |||||
| * | Updated RELEASE_NOTES. | 2023-04-12 | 1 | -1/+1 | |
| | | |||||
| * | Updated TODO. | 2023-04-12 | 1 | -3/+5 | |
| | | |||||
| * | Added forgotten user cleanup in mastoapi_post_handler(). | 2023-04-12 | 1 | -3/+7 | |
| | | |||||
| * | Updated documentation. | 2023-04-12 | 2 | -6/+28 | |
| | | |||||
| * | Updated README. | 2023-04-12 | 1 | -1/+2 | |
| | | |||||
| * | Updated RELEASE_NOTES. | 2023-04-12 | 1 | -1/+1 | |
| | | |||||
| * | Updated RELEASE_NOTES. | 2023-04-12 | 1 | -1/+3 | |
| | | |||||
| * | Don't generate invalid JSON if an attachment has no description. | 2023-04-12 | 3 | -5/+22 | |
| | | |||||
| * | Use the ctime instead of the published date in mastoapi_id(). | 2023-04-12 | 1 | -19/+8 | |
| | | |||||
| * | New functions object_ctime() and object_ctime_by_md5(). | 2023-04-12 | 2 | -0/+16 | |
| | | |||||
| * | New function f_ctime(). | 2023-04-12 | 2 | -0/+14 | |
| | | |||||
| * | Commented out debugging messages. | 2023-04-11 | 1 | -8/+8 | |
| | | |||||
| * | Added support for likes and boosts. | 2023-04-11 | 2 | -30/+138 | |
| | | |||||
| * | Added some comments. | 2023-04-11 | 1 | -2/+8 | |
| | | |||||
| * | Added many dummy lists. | 2023-04-11 | 1 | -1/+69 | |
| | | |||||
| * | Added support for statuses/:id and statuses/:id/context. | 2023-04-11 | 1 | -1/+36 | |
| | | |||||
| * | Started work in /api/v1/statuses. | 2023-04-11 | 1 | -2/+44 | |
| | | |||||
| * | New function mastodon_status(). | 2023-04-11 | 3 | -171/+182 | |
| | | |||||
| * | Added /api/v1/instance. | 2023-04-10 | 1 | -0/+29 | |
| | | |||||
| * | Updated RELEASE_NOTES. | 2023-04-10 | 1 | -0/+2 | |
| | | |||||
| * | Merge https://codeberg.org/grunfink/snac2 | 2023-04-10 | 2 | -4/+4 | |
| |\ | |||||
| | * | Merge pull request 'Fix some overflow bugs' (#29) from ↵ | 2023-04-10 | 2 | -4/+4 | |
| | |\ | | | | | | | | | | | | | | | | saagarjha/snac2:master into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/29 | ||||
| | | * | Fix heap overflow from curl-originating buffers | 2023-04-10 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | Most of xs.h seems to expect that buffers are rounded up to block size, so we should preserve that invariant here. (In particular, xs_expand will avoid calling xs_realloc if the new size fits in the same block, which means that if we don't pad out the data it will expand out of the memory we're allocated.) | ||||
| | | * | Avoid reading too much data in xs_data_new | 2023-04-10 | 1 | -3/+3 | |
| | |/ | |||||
| * | | Added image attachments. | 2023-04-10 | 2 | -4/+31 | |
| | | | |||||
| * | | Added some tweaks for AndStatus, that does some things different (still ↵ | 2023-04-10 | 1 | -2/+36 | |
| | | | | | | | | | | | | | | | non-working). AndStatus expects a 'state' field to be propagated and doesn't send the 'client_secret' as a GET argument, but in a Basic authorization header. | ||||
| * | | New function mastoapi_id(), that creates mostly-compatible Ids. | 2023-04-10 | 1 | -18/+50 | |
| | | | | | | | | | Most apps (all?) sort entries by status Id, so they must be time-sorted (somewhat). | ||||
| * | | Some timeline fixes. | 2023-04-10 | 1 | -4/+13 | |
| | | | |||||
| * | | More mastoapi timeline work. | 2023-04-10 | 1 | -11/+37 | |
| | | | |||||
| * | | Also delete the app in token revokation. | 2023-04-10 | 1 | -0/+30 | |
| | | | |||||
| * | | Backport from xs. | 2023-04-10 | 2 | -1/+14 | |
| | | | |||||
| * | | More work in status entries. | 2023-04-10 | 1 | -18/+58 | |
| | | | |||||
| * | | Limit the number of entries returned using the max_id. | 2023-04-10 | 1 | -4/+9 | |
| | | | |||||
| * | | More mastoapi work. | 2023-04-10 | 1 | -8/+137 | |
| | | | |||||
| * | | Fixed avatar. | 2023-04-09 | 1 | -8/+22 | |
| | | | |||||