Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-12 | Update Mastofe. | lain | |
2018-08-12 | Merge branch 'feature/invites' into 'develop' | lambda | |
Invites Closes #108 See merge request pleroma/pleroma!208 | |||
2018-08-12 | Update generate_invite_token.ex | lambda | |
2018-08-12 | Merge branch 'fix/remote-follow-errormessage' into 'develop' | lambda | |
Remote follow: don't show confusing error if already following See merge request pleroma/pleroma!267 | |||
2018-08-12 | Merge branch 'bugfix/gopher-empty-lines' into 'develop' | lambda | |
lib/pleroma/gopher/server.ex: Fix errorneous empty lines See merge request pleroma/pleroma!270 | |||
2018-08-12 | Merge branch 'emoji-in-account-view' into 'develop' | lambda | |
Render emoji in user profiles See merge request pleroma/pleroma!265 | |||
2018-08-10 | lib/pleroma/gopher/server.ex: Fix errorneous empty lines | Haelwenn (lanodan) Monnier | |
2018-08-10 | Merge branch 'bugfix/fix-gopher-server-i' into 'develop' | lambda | |
fix gopher server informational messages See merge request pleroma/pleroma!268 | |||
2018-08-10 | fix gopher server informational messages | trqx@goat.si | |
some gopher clients did not accept those lines due to a missing tab | |||
2018-08-09 | Remote follow: don't show confusing error if already following | eal | |
2018-08-09 | HTML-sanitize usernames before emojifying. | eal | |
2018-08-08 | Add tests for emoji in user profiles | eal | |
Also use the correct field in TwitterAPI... | |||
2018-08-08 | TwitterAPI user view: add screen_name_html and description_html. | eal | |
2018-08-07 | MastoAPI AccountView: render profile emoji. | eal | |
2018-08-06 | Merge branch 'bugfix/duplicate-follow-requests' into 'develop' | lambda | |
user: filter out duplicate follow requests Closes #228 See merge request pleroma/pleroma!263 | |||
2018-08-06 | Merge branch 'feature/camelcase-hashtags' into 'develop' | lambda | |
formatter: preserve case of hashtags Closes #165 See merge request pleroma/pleroma!262 | |||
2018-08-06 | test: use private visibility for twitterapi update consistency test, to ↵ | William Pitcock | |
ensure that a second activity isn't relayed | |||
2018-08-06 | user: do not leak virtuals in account search | William Pitcock | |
2018-08-06 | user: hide virtual actors from statistics queries | William Pitcock | |
2018-08-06 | activitypub: do not show observable effects of non-public boosts | William Pitcock | |
2018-08-06 | test: nickname is no longer a required field | William Pitcock | |
2018-08-06 | relay: do not relay in test mode | William Pitcock | |
2018-08-06 | run mix format | William Pitcock | |
2018-08-06 | relay: reintroduce @allow_relay | William Pitcock | |
2018-08-06 | activitypub: relay: fix up AS2 actor object | William Pitcock | |
2018-08-06 | relay: move to /relay endpoint from / due to webapp issues | William Pitcock | |
2018-08-06 | relay: only relay create activities | William Pitcock | |
2018-08-06 | user: set up a valid followers address to use | William Pitcock | |
2018-08-06 | activitypub: relay: add relay following/followers collection URLs | William Pitcock | |
2018-08-06 | federator: actually relay the public activities | William Pitcock | |
2018-08-06 | relay: remove @allow_relay for the moment | William Pitcock | |
2018-08-06 | relay: fix invoking federator, use a timer to sleep the mix task to force a ↵ | William Pitcock | |
context switch | |||
2018-08-06 | relay: add relay follow/unfollow tasks | William Pitcock | |
2018-08-06 | user: remote actors can have no nickname if they are virtual services | William Pitcock | |
2018-08-06 | config: allow relaying to be disabled | William Pitcock | |
2018-08-06 | activitypub: refactor relay concerns into new relay module | William Pitcock | |
2018-08-06 | activitypub: represent relay actor at instance root | William Pitcock | |
2018-08-06 | user: support creating an actor which represents the instance itself | William Pitcock | |
2018-08-05 | user: filter out duplicate follow requests | William Pitcock | |
2018-08-05 | formatter: preserve case of hashtags | William Pitcock | |
when generating hashtag links, we used the casefolded version that we use in the link URLs, instead of the original version. accordingly, adjust the formatter to use the original text for the links, while keeping the casefolded version for the URLs. | |||
2018-08-02 | add suggestions/web config | Hakaba Hitoyo | |
2018-08-01 | Merge branch 'bugfix/digest-legacy-compat' into 'develop' | lambda | |
activitypub: actually send digest header when federating See merge request pleroma/pleroma!261 | |||
2018-08-01 | activitypub: actually send digest header when federating | William Pitcock | |
this is needed for backwards compatibility with non-digest pleroma instances | |||
2018-08-01 | Merge branch 'security/digest-signature-validation' into 'develop' | lambda | |
digest signature validation See merge request pleroma/pleroma!260 | |||
2018-08-01 | Allow additionnal schemes in the config | Haelwenn (lanodan) Monnier | |
2018-07-31 | activitypub: verify remote http signature digests by recomputing the digest ↵ | William Pitcock | |
and replacing the digest header | |||
2018-07-31 | activitypub: add digest header to outbound messages and sign it | William Pitcock | |
2018-07-30 | [Pleroma.FormatterTest] Add test for XMPP link | Haelwenn (lanodan) Monnier | |
2018-07-30 | [Pleroma.FormatterTest]: .add_links: Add a space before the dot | Haelwenn (lanodan) Monnier | |
A dot is legal in the url, even at the end, so I moved it for the test | |||
2018-07-30 | [Pleroma.Formatter]: Add support for non-HTTP schemes in URIs | Haelwenn (lanodan) Monnier | |
The call to the regex in add_links is there just to be sure it’s a legal URI, it can be removed if you want to get more performance. The URI Schemes list is sorted, but with http(s) at the start (in case it might make it faster for common links). Closes: https://git.pleroma.social/pleroma/pleroma/issues/127 |