summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Backport from xs.Gravatar default2022-12-113-6/+22
|
* Log the response date in send_to_inbox() errors.Gravatar default2022-12-111-0/+5
|
* Updated TODO.Gravatar default2022-12-101-0/+2
|
* Call pthread_detach() and spawning the purge.Gravatar default2022-12-101-0/+1
|
* Bumped development version.Gravatar default2022-12-101-1/+1
|
* Updated RELEASE_NOTES.Gravatar default2022-12-102-1/+6
|
* Merge pull request 'Ensure that pd variable stays in scope while curl ↵Gravatar grunfink2022-12-101-1/+4
|\ | | | | | | | | | | request runs' (#20) from tobyjaffey/snac2:fix_19 into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/20
| * Ensure that pd variable stays in scope while curl request runsGravatar Toby Jaffey2022-12-101-1/+4
|/ | | | Fix for #19
* Use object_likes_len() and object_announces_len() in the post score.Gravatar default2022-12-101-3/+3
|
* New function index_len().Gravatar default2022-12-102-8/+43
|
* In process_queue(), do not retry for 404 or 410 status.Gravatar default2022-12-101-0/+4
|
* Merge branch 'master' of grunfink-codeberg:grunfink/snac2Gravatar default2022-12-091-3/+4
|\
| * Merge pull request 'Makefile improvements' (#18) from ↵Gravatar grunfink2022-12-091-3/+4
| |\ | | | | | | | | | | | | | | | CyberTaIlor/snac2:master into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/18
| | * Makefile improvementsGravatar Anna “CyberTailor”2022-12-091-3/+4
| |/ | | | | | | | | | | * Don't overwrite CFLAGS from env * Respect CPPFLAGS and LDFLAGS * Create bindir in "install"
* / Backport from xs.Gravatar default2022-12-092-2/+2
|/
* Version 2.14 RELEASED.2.14Gravatar default2022-12-091-1/+1
|
* Updated documentation.Gravatar default2022-12-081-0/+6
|
* Updated RELEASE_NOTES.Gravatar default2022-12-081-1/+1
|
* Updated RELEASE_NOTES.Gravatar default2022-12-081-0/+2
|
* Added support for /.well-known/nodeinfo.Gravatar default2022-12-081-0/+36
|
* Updated TODO.Gravatar default2022-12-081-2/+2
|
* Updated RELEASE_NOTES.Gravatar default2022-12-081-0/+2
|
* Don't show the 'Boost' button for private messages.Gravatar default2022-12-081-3/+5
|
* Updated TODO.Gravatar default2022-12-081-4/+4
|
* Updated RELEASE_NOTES.Gravatar default2022-12-081-2/+2
|
* Updated RELEASE_NOTES.Gravatar default2022-12-081-0/+2
|
* Updated RELEASE_NOTES.Gravatar default2022-12-081-0/+2
|
* Added level of debug for 'Delete' messages.Gravatar default2022-12-081-1/+1
|
* Also add 'redir' hidden field to Replies.Gravatar default2022-12-081-0/+2
|
* Some tweaks to improve the page position after like or boost.Gravatar default2022-12-081-13/+9
|
* Wrapped too long string literals.Gravatar default2022-12-081-2/+4
|
* Updated RELEASE_NOTES.Gravatar default2022-12-081-0/+6
|
* Little tweak to previous change to avoid a memleak.Gravatar default2022-12-081-1/+7
|
* Merge pull request 'Fix mentions with one @ sign' (#16) from ↵Gravatar grunfink2022-12-081-0/+1
|\ | | | | | | | | | | kensanata/snac2:fix-mention-with-one-at-sign into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/16
| * Fix mentions with one @ signGravatar Alex Schroeder2022-12-071-0/+1
|/ | | | | | | | | | | | | | | | | | | | | | | | 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.
* Ask for just 1 more entry beyond the current page to test if there are more.Gravatar default2022-12-071-2/+2
|
* Fixed last minute typo.Gravatar default2022-12-071-1/+1
|
* Minor tweaks to paged timeline output.Gravatar default2022-12-071-17/+18
|
* Merge pull request 'Pagination of the private and public page' (#13) from ↵Gravatar grunfink2022-12-075-23/+46
|\ | | | | | | | | | | kensanata/snac2:pagination into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/13
| * Pagination of the public and private pageGravatar Alex Schroeder2022-12-065-23/+46
| | | | | | | | | | | | | | | | | | | | | | Use the query parameters skip and show to control what you can see, e.g. /alex/admin?skip=0&show=4 Don't use or save the timeline cache if either is set. The following functions were changed from accepting a single max parameter to accepting both skip and show: timeline_simple_list, timeline_list, index_list_desc.
* | Fixed memory leak.Gravatar default2022-12-061-1/+3
| |
* | Backport from xs.Gravatar default2022-12-062-20/+41
|/
* Updated TODO.Gravatar default2022-12-061-0/+2
|
* Merge pull request 'Add loading="lazy" to all images' (#15) from ↵Gravatar grunfink2022-12-061-4/+4
|\ | | | | | | | | | | kensanata/snac2:lazy-loading into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/15
| * Add loading="lazy" to all imagesGravatar Alex Schroeder2022-12-061-4/+4
|/ | | | | | | | | Only load images when they're visible. "The loading attribute on an <img> element … can be used to instruct the browser to defer loading of images/iframes that are off-screen until the user scrolls near them." https://developer.mozilla.org/en-US/docs/Web/Performance/Lazy_loading#images_and_iframes
* Updated TODO.Gravatar default2022-12-061-1/+5
|
* Updated TODO.Gravatar default2022-12-051-4/+2
|
* Merge pull request 'Handle /favicon.ico' (#12) from kensanata/snac2:favicon ↵Gravatar grunfink2022-12-051-1/+1
|\ | | | | | | | | | | into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/12
| * Handle /favicon.icoGravatar Alex Schroeder2022-12-041-1/+1
| | | | | | | | Reply with the susie.png.
* | Updated RELEASE_NOTES.Gravatar default2022-12-041-0/+2
| |