Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-19 | Add ForceMentionsInContentPolicy | rinpatch | |
Even though latest PleromaFE supports displaying these properly, mobile apps still exist, so I think we should offer a workaround to those who want it. | |||
2022-01-15 | Update cheatsheet.md. Add `Pleroma.Web.ActivityPub.MRF.KeywordPolicy`. | Hakaba Hitoyo | |
2021-11-15 | Merge branch 'block-behavior' into 'develop' | lain | |
Configurable block visibility, fixes #2123 Closes #2123 See merge request pleroma/pleroma!3242 | |||
2021-09-07 | Merge branch 'remove/mastofe' into 'develop' | Haelwenn | |
Remove MastoFE from Pleroma, fixes #2625 Closes #2625 See merge request pleroma/pleroma!3392 | |||
2021-08-15 | mix pleroma.database set_text_search_config now runs concurrently and infinitely | someone | |
2021-08-06 | Change docs | Ilja | |
* ./configuration/mrf.md * Change example * ./configuration/cheatsheet.md * Change descriptions to include that a reason is given * CHANGELOG.md * Add as breaking change | |||
2021-07-10 | Merge develop branch upstream | Sean King | |
2021-06-07 | MRF: create MRF.Policy behaviour separate from MRF module | Alex Gleason | |
Speeds up recompilation by reducing compile-time deps | |||
2021-06-04 | Fix merge conflicts with upstream | Sean King | |
2021-06-03 | Merge branch 'chore/rename-chat' into 'develop' | Haelwenn | |
Rename the non-federating Chat feature to Shout See merge request pleroma/pleroma!2842 | |||
2021-06-02 | Update wording for relays in docs and config description | Mark Felder | |
2021-06-01 | Move shout configuration from :instance, update docs and changelog | Mark Felder | |
2021-04-29 | Merge remote-tracking branch 'upstream/develop' into block-behavior | Alex Gleason | |
2021-04-15 | Remove MastoFE configuration stuff | Sean King | |
2021-03-30 | Add more details to the cheatsheat for FollowBot MRF | Mark Felder | |
2021-03-30 | Apply 1 suggestion(s) to 1 file(s) | feld | |
2021-03-30 | Document :mrf_follow_bot | Mark Felder | |
2021-03-19 | Merge branch 'fix/remove_auto_nsfw' into 'develop' | rinpatch | |
Remove sensitive setting #nsfw See merge request pleroma/pleroma!3223 | |||
2021-03-02 | Merge remote-tracking branch 'remotes/origin/develop' into ↵ | Ivan Tashkinov | |
feature/object-hashtags-rework | |||
2021-02-27 | Remove sensitive-property setting #nsfw, create HashtagPolicy | Haelwenn (lanodan) Monnier | |
2021-02-23 | [#3213] Misc. tweaks: proper upsert in Hashtag, better feature toggle ↵ | Ivan Tashkinov | |
management. | |||
2021-02-22 | Update the documentation to use make it use /api/v1/pleroma instead of ↵ | eugenijm | |
/api/pleroma | |||
2021-02-18 | [#3213] HashtagsTableMigrator: fault rate allowance to enable the feature ↵ | Ivan Tashkinov | |
(defaults to 1%), counting of affected objects, misc. tweaks. | |||
2021-02-13 | [#3213] `rescue` around potentially-raising `Repo.insert_all/_` calls. Misc. ↵ | Ivan Tashkinov | |
improvements (docs etc.). | |||
2021-02-06 | Merge branch 'feat/allow_alt_text_search_config' into 'develop' | rinpatch | |
allow user defined text search config in database See merge request pleroma/pleroma!3275 | |||
2021-02-06 | Update priv/repo/migrations/20190501125843_add_fts_index_to_objects.exs, ↵ | hyperion | |
priv/repo/optional_migrations/rum_indexing/20190510135645_add_fts_index_to_objects_two.exs files | |||
2021-01-29 | [#3286] Documentation on configuring Pleroma as OAuth 2.0 provider. | Ivan Tashkinov | |
2021-01-21 | Add ability to invalidate cache entries for Apache | Mark Felder | |
2021-01-21 | use proper naming | Alexander Strizhakov | |
for MediaProxyWarmingPolicy in ConcurrentLimiter | |||
2021-01-21 | Update docs | Mark Felder | |
2021-01-21 | configurable limits for ConcurrentLimiter | Alexander Strizhakov | |
Pleroma.Web.RichMedia.Helpers & Pleroma.Web.MediaProxy | |||
2021-01-20 | Merge branch 'deprecate-public_endpoint' into 'develop' | feld | |
Deprecate Uploaders.S3, :public_endpoint See merge request pleroma/pleroma!3251 | |||
2021-01-19 | Improve PostgreSQL optimization article | rinpatch | |
Move query plan mode setting from OTP installation guide and try to explain what it does. | |||
2021-01-12 | Deprecate Pleroma.Uploaders.S3, :public_endpoint | Mark Felder | |
2021-01-10 | Add development section | Ilja | |
* I cretaed a folder 'development' * I split up the file dev.md into three parts and moved it to this folder * index.md * authentication_authorization.md * mrf.md * I also moved ap_extensions.md * I created a new file setting_up_pleroma_dev.md | |||
2021-01-06 | Merge remote-tracking branch 'upstream/develop' into block-behavior | Alex Gleason | |
2020-12-07 | Merge remote-tracking branch 'remotes/origin/develop' into auth-improvements | Ivan Tashkinov | |
# Conflicts: # CHANGELOG.md | |||
2020-12-02 | The debug output is no longer there by default | Mark Felder | |
2020-12-02 | Update ConfigDB docs for new mix commands | Mark Felder | |
2020-12-02 | Document how to delete individual configuration groups and completely reset ↵ | Mark Felder | |
the config without SQL | |||
2020-11-28 | OAuth form user remembering feature. Local MastoFE login / logout fixes. | Ivan Tashkinov | |
2020-11-19 | Cheatsheet: Add docs about reset token expiration | lain | |
2020-11-17 | Remove FedSockets | rinpatch | |
Current FedSocket implementation has a bunch of problems. It doesn't have proper error handling (in case of an error the server just doesn't respond until the connection is closed, while the client doesn't match any error messages and just assumes there has been an error after 15s) and the code is full of bad descisions (see: fetch registry which uses uuids for no reason and waits for a response by recursively querying a ets table until the value changes, or double JSON encoding). Sometime ago I almost completed rewriting fedsockets from scrach to adress these issues. However, while doing so, I realized that fedsockets are just too overkill for what they were trying to accomplish, which is reduce the overhead of federation by not signing every message. This could be done without reimplementing failure states and endpoint logic we already have with HTTP by, for example, using TLS cert auth, or switching to a more performant signature algorithm. I opened https://git.pleroma.social/pleroma/pleroma/-/issues/2262 for further discussion on alternatives to fedsockets. From discussions I had with other Pleroma developers it seems like they would approve the descision to remove them as well, therefore I am submitting this patch. | |||
2020-11-10 | Apply 1 suggestion(s) to 1 file(s) | feld | |
2020-11-10 | Apply 1 suggestion(s) to 1 file(s) | feld | |
2020-11-10 | Apply 1 suggestion(s) to 1 file(s) | feld | |
2020-11-10 | Apply 1 suggestion(s) to 1 file(s) | feld | |
2020-11-08 | Update optimizing_beam.md | lain | |
2020-11-06 | Markdown, you're drunk | Mark Felder | |
2020-11-06 | Make it clearer the settings go into the vm.args file | Mark Felder | |