summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* In mastoapi account search, return local users at the end.Gravatar default2023-05-171-24/+24
|
* Also find local users in /api/v1/search.Gravatar default2023-05-153-3/+29
|
* Updated RELEASE_NOTES.Gravatar default2023-05-151-0/+4
|
* Deleted repeated code.Gravatar default2023-05-151-4/+5
|
* mastoapi_account() returns the acct field as user@host.Gravatar default2023-05-151-1/+7
|
* Made mastoapi account search case-insensitive.Gravatar default2023-05-151-5/+10
|
* Don't repeat accounts when searching.Gravatar default2023-05-151-0/+10
|
* Bumped version.Gravatar default2023-05-151-1/+1
|
* Add /v1/account/search support.Gravatar default2023-05-153-5/+38
|
* Backport from xs.Gravatar default2023-05-152-7/+26
|
* Merge pull request 'Reformat the codeblocks in README.md' (#35) from ↵Gravatar grunfink2023-05-131-8/+8
|\ | | | | | | | | | | bouncepaw/snac2:master into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/35
| * Reformat the codeblocks in README.mdGravatar bouncepaw2023-05-131-8/+8
|/ | | | | 1. Remove the extra indent 2. Add `sh` language
* Version 2.31 RELEASED.2.31Gravatar default2023-05-131-1/+1
|
* Only show the bio in the top of the page for public pages.Gravatar default2023-05-131-9/+12
|
* Updated RELEASE_NOTES.Gravatar default2023-05-131-0/+2
|
* Merge branch 'master' of grunfink-codeberg:grunfink/snac2Gravatar default2023-05-131-1/+2
|\
| * Merge pull request 'Added user-agent to webfinger query' (#34) from ↵Gravatar grunfink2023-05-131-1/+2
| |\ | | | | | | | | | | | | | | | | | | | | | poesty/snac2:master into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/34 This is to avoid that when sending webfinger queries to some instances (e.g. GoToSocial), we cannot fetch their resources because of the 418 status code returned by the other side.
| | * Added user-agent to webfinger queryGravatar poesty2023-05-131-1/+2
| |/
* / Use a different approach towards incomplete mentions.Gravatar default2023-05-122-46/+47
|/ | | | | This time, incomplete mentions are completed using a) the host of the first mention, if there are any, or b) the current host.
* Merge branch 'master' of triptico.com:git/snac2Gravatar default2023-05-121-1/+1
|\
| * Updated RELEASE_NOTES.Gravatar default2023-05-121-1/+1
| |
| * Updated RELEASE_NOTES.Gravatar default2023-05-121-1/+1
| |
* | Added more comment marks.Gravatar default2023-05-121-15/+15
|/
* Added some code comments.Gravatar default2023-05-121-44/+36
|
* Resolve (partially) the issue with mentions without server.Gravatar default2023-05-121-18/+51
| | | | | | | | | Mastodon (mainly from the API) usually include mentions without server, which is just stupid. This patch tries to resolve these broken mentions in process_tags() by looking for a user name starting with it in the already pre-populated tag list. As of now, this only works if the message is an inReplyTo and the broken mention is the one of the original (attributedTo) poster.
* Minor refactor to msg_note(): the tag list is created here, not in ↵Gravatar default2023-05-121-8/+5
| | | | process_tags().
* Minor function prototype tweak.Gravatar default2023-05-121-4/+5
|
* Updated RELEASE_NOTES.Gravatar default2023-05-111-0/+2
|
* Added support from exclude notification types.Gravatar default2023-05-111-0/+5
|
* Backport from xs.Gravatar default2023-05-113-8/+91
|
* In /relationship, the id[] can be a list.Gravatar default2023-05-111-0/+3
|
* Updated RELEASE_NOTES.Gravatar default2023-05-101-2/+4
|
* Fixed conflict.Gravatar default2023-05-091-1/+4
|\
| * Merge pull request 'Fixed the issue of semaphore name conflicts.' (#33) from ↵Gravatar grunfink2023-05-091-1/+4
| |\ | | | | | | | | | | | | | | | poesty/snac2:master into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/33
| | * Fixed the issue of semaphore name conflicts.Gravatar poesty2023-05-091-1/+4
| |/
* | Backport from xs.Gravatar default2023-05-092-164/+1
| |
* | Backport from xs.Gravatar default2023-05-094-35/+49
| |
* | Updated documentation.Gravatar default2023-05-081-0/+5
| |
* | Fill the mastoapi instance contact_account field, if possible.Gravatar default2023-05-082-1/+18
| |
* | Print the total running time at httpd stop.Gravatar default2023-05-082-2/+6
| |
* | Backport from xs.Gravatar default2023-05-082-1/+14
|/
* Moved sem_close() further to the end.Gravatar default2023-05-081-4/+2
|
* Added a source (web, mastoapi, etc) to lastlog_write().Gravatar default2023-05-085-5/+7
|
* Updated RELEASE_NOTES.Gravatar default2023-05-071-0/+8
|
* Added some includes needed for last sem_open() / uintptr_t changes.Gravatar default2023-05-071-0/+2
|
* Merge branch 'master' of grunfink-codeberg:grunfink/snac2Gravatar default2023-05-071-5/+9
|\
| * Merge pull request 'Use named semaphores' (#32) from saagarjha/snac2:master ↵Gravatar grunfink2023-05-071-5/+9
| |\ | | | | | | | | | | | | | | | | | | | | | into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/32 This fixes httpd on macOS. It's fine if you don't want to merge this into snac itself; I can ask MacPorts to carry the patch themselves.
| | * Fix pointer-to-int castGravatar Saagar Jha2023-05-071-1/+1
| | | | | | | | | | | | | | | Resolves "warning: performing pointer subtraction with a null pointer has undefined behavior [-Wnull-pointer-subtraction]"
| | * Use named semaphoresGravatar Saagar Jha2023-05-071-4/+8
| |/ | | | | | | Unnamed semaphores are not supported on macOS.
* / Bumped version.Gravatar default2023-05-071-1/+1
|/