mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Updated RELEASE_NOTES.
This commit is contained in:
parent
ed957b4646
commit
a2cab2bab6
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
## 2.27
|
||||
|
||||
Started Mastodon API support, so you can use Mastodon-compatible apps to access #snac accounts. What works so far: login, the personal timeline, full post information (replies and ancestors), liking and boosting posts. Things that don't work yet but eventually will: posting and replying to messages (I still have to figure out how some things work, like posting images), notifications (needs some internal support), the instance timeline (snac does not have it, but it can be simulated with not much effort), probably many other things. Things that will never work: bookmarks, pinning, a federated timeline, others that I don't remember right now. Please note that if you want to use this API in your instance, you must add some lines to your HTTP proxy support, see the snac(8) (administrator documentation) manual page. I'm doing my tests using the #Tusky, #AndStatus, #Fedilab and #Husky Android apps. Success or failure reports will be appreciated.
|
||||
Started Mastodon API support, so you can use Mastodon-compatible apps to access #snac accounts. What works so far: login, the personal timeline, full post information (replies and ancestors), liking and boosting posts. Things that don't work yet but eventually will: posting and replying to messages (I still have to figure out how some things work, like posting images), notifications (needs some internal support), the instance timeline (snac does not have one, but it can be simulated with not much effort), public user timelines (trivial but didn't put to it) and probably many other things. Things that will never work: bookmarks, pinning, a federated timeline, many other things that I don't remember right now. Please note that if you want to use this API in your instance, you must add some lines to your HTTP proxy configuration, see the snac(8) (administrator documentation) manual page. I'm doing my tests using the #Tusky, #AndStatus, #Fedilab and #Husky Android apps. Success or failure reports will be appreciated.
|
||||
|
||||
Fixed some buffer overflows (contributed by Saagar Jha).
|
||||
|
||||
|
|
|
@ -927,7 +927,7 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
|
|||
else
|
||||
if (strcmp(op, "reblogged_by") == 0 ||
|
||||
strcmp(op, "favourited_by") == 0) {
|
||||
/* return the list of likes or boosts */
|
||||
/* return the list of people who liked or boosted this */
|
||||
out = xs_list_new();
|
||||
|
||||
xs *l = NULL;
|
||||
|
|
Loading…
Reference in a new issue