summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-12-14Some code reordering to placate scan-build's wrath.default
2022-12-13Updated TODO.default
2022-12-13Updated RELEASE_NOTES.default
2022-12-13Fixed crash when unfollowing.default
2022-12-13In server_get_handler(), body must be a dynamic string.default
2022-12-13Updated RELEASE_NOTES.default
2022-12-13Merge branch 'master' of grunfink-codeberg:grunfink/snac2default
2022-12-13Merge pull request 'Serve robots.txt (disallow all)' (#23) from ↵grunfink
kensanata/snac2:robots into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/23
2022-12-13Updated RELEASE_NOTES.default
2022-12-13Merge pull request 'Add docker-compose support' (#22) from ↵grunfink
tobyjaffey/snac2:docker into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/22
2022-12-12Serve robots.txt (disallow all)Alex Schroeder
2022-12-12Add docker-compose support, so a working development server with HTTPS can ↵Toby Jaffey
be started with: docker-compose build && docker-compose up
2022-12-11Backport from xs.default
2022-12-11Backport from xs.default
2022-12-11Log the response date in send_to_inbox() errors.default
2022-12-10Updated TODO.default
2022-12-10Call pthread_detach() and spawning the purge.default
2022-12-10Bumped development version.default
2022-12-10Updated RELEASE_NOTES.default
2022-12-10Merge pull request 'Ensure that pd variable stays in scope while curl ↵grunfink
request runs' (#20) from tobyjaffey/snac2:fix_19 into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/20
2022-12-10Ensure that pd variable stays in scope while curl request runsToby Jaffey
Fix for #19
2022-12-10Use object_likes_len() and object_announces_len() in the post score.default
2022-12-10New function index_len().default
2022-12-10In process_queue(), do not retry for 404 or 410 status.default
2022-12-09Merge branch 'master' of grunfink-codeberg:grunfink/snac2default
2022-12-09Merge pull request 'Makefile improvements' (#18) from ↵grunfink
CyberTaIlor/snac2:master into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/18
2022-12-09Backport from xs.default
2022-12-09Makefile improvementsAnna “CyberTailor”
* Don't overwrite CFLAGS from env * Respect CPPFLAGS and LDFLAGS * Create bindir in "install"
2022-12-09Version 2.14 RELEASED.default
2022-12-08Updated documentation.default
2022-12-08Updated RELEASE_NOTES.default
2022-12-08Updated RELEASE_NOTES.default
2022-12-08Added support for /.well-known/nodeinfo.default
2022-12-08Updated TODO.default
2022-12-08Updated RELEASE_NOTES.default
2022-12-08Don't show the 'Boost' button for private messages.default
2022-12-08Updated TODO.default
2022-12-08Updated RELEASE_NOTES.default
2022-12-08Updated RELEASE_NOTES.default
2022-12-08Updated RELEASE_NOTES.default
2022-12-08Added level of debug for 'Delete' messages.default
2022-12-08Also add 'redir' hidden field to Replies.default
2022-12-08Some tweaks to improve the page position after like or boost.default
2022-12-08Wrapped too long string literals.default
2022-12-08Updated RELEASE_NOTES.default
2022-12-08Little tweak to previous change to avoid a memleak.default
2022-12-08Merge pull request 'Fix mentions with one @ sign' (#16) from ↵grunfink
kensanata/snac2:fix-mention-with-one-at-sign into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/16
2022-12-07Fix mentions with one @ signAlex Schroeder
In a mention like the following, the old code had a problem: It would split the name by '@' and get a list of two elements. Since this is less than three, it would then try to get the domain name from the href ("social.alexschroeder.ch") and concatenate it with the name, resulting in "alex@social.alexschroeder.ch@social.alexschroeder.ch". The reason was that the code expects an initial "@". In that case, splitting "@alex@social.alexschroeder.ch" would result in three elements, and no domain name guessing would happen. If, on the other hand, the name was "@foo" then finding the domain name in the URL and appending it so that you get @foo@domain.name is the correct solution. "tag": [ { "type": "Mention", "href": "https://social.alexschroeder.ch/alex", "name": "alex@social.alexschroeder.ch" } ], The fix consists in prepending an "@" if the name does not start with "@" and leaving the rest of the code unchanged.
2022-12-07Ask for just 1 more entry beyond the current page to test if there are more.default
2022-12-07Fixed last minute typo.default