about summary refs log tree commit diff
AgeCommit message (Collapse)Author
2019-11-18Improve readability somewhat.multiple creatures
2019-11-18Let `PostStatusWorker` deal with delivering posts.multiple creatures
2019-11-18Send status ID instead of objects to `ActivityPub::DistributionWorker`multiple creatures
2019-11-18Use `before_save` instead of `after_save`.multiple creatures
2019-11-18Be more specific about checking for the truthiness of `nomentions`.multiple creatures
2019-11-18Get rid of the `Formatter` cache. It isn't worth the admin headaches.multiple creatures
2019-11-18Auto-remove expired filters.multiple creatures
2019-11-18Remove filter caches.multiple creatures
2019-11-18Filter boosts from profile pages' Roars & Growls tab.multiple creatures
2019-11-18In the regex filtering query, `ANY` should actually be `ALL`.multiple creatures
2019-11-18Correct `CustomFilters` to `CustomFilter`.multiple creatures
2019-11-18Use custom `f_normalize` function for transforming regex filters.multiple creatures
2019-11-18Ensure that community-visible posts are removed from the timeline when the ↵multiple creatures
author deletes them.
2019-11-18Committing this unnecessary schema version update.multiple creatures
2019-11-18Create `f_normalize` function to transform filter queries. Also make the ↵multiple creatures
FTS migration an actual migration to save new Monsterfork admins the headache.
2019-11-18Migrate old whole-word filters to modified syntax (double quoted strings ↵multiple creatures
treated as whole-word).
2019-11-18Only apply a user's string filters if they actually have any set (otherwise ↵multiple creatures
all posts will be filtered).
2019-11-18Split indexing Rake tasks to: `monsterfork:index_statuses` (reindex statuses ↵multiple creatures
that do not normalized text yet), `monsterfork:reindex_statuses` (reindex all statuses), and `monsterfork:reindex_media_desc` (reindex statuses with media descriptions). These tasks are only needed by admins setting up Monsterfork for the first time or if the normalization scheme has changed drastically.
2019-11-18Include media attachment descriptions in normalized text.multiple creatures
2019-11-18Remove context selector from filter view.multiple creatures
2019-11-18Remove unused and incompatable filter settings. These will be re-added in ↵multiple creatures
time as they're rewritten to use database-level filtering.
2019-11-18Remove `FilterHelper` include from timeline APIs.multiple creatures
2019-11-18Always skip `Formatter` cache when serializing ActivityPub representations ↵multiple creatures
of posts and accounts.
2019-11-18Remove a duplicate callback to `update_normalized_text`.multiple creatures
2019-11-18In ProcessMentionsService, `skip_notify` should be a keyword argument, not ↵multiple creatures
positional.
2019-11-18Add a new profile option to filter posts with undescribed media. At some ↵multiple creatures
point, figure out how to put this under Filters, even if it angers the MVC model gods. No gods, no masters.
2019-11-18Users' filters are applied in the `Status` model. They can also now use ↵multiple creatures
regular expressions.
2019-11-18When streaming posts to timelines, do not apply filters to the author's own ↵multiple creatures
posts.
2019-11-17The streaming server can now apply users' regex filters before sending ↵multiple creatures
content to their timelines.`Ia PostgreSQL fthaghn`.
2019-11-17Do away with the kludgy solution of applying users' filters from API ↵multiple creatures
controllers; we will do this in the `Status` model instead, and at the database level.
2019-11-17Add `filter_undescribed` column to `accounts` table.multiple creatures
2019-11-17Removed one too many `rescue`s.multiple creatures
2019-11-17Prefix zero-width space before lines with space characters to preserve their ↵multiple creatures
formatting on other servers.
2019-11-17Reduce Vitamin D intake.multiple creatures
2019-11-17Remove duplicated code.multiple creatures
2019-11-17Use `after_save` instead of `after_create`/`after_update` where methods ↵multiple creatures
should be called every time an object is changed.
2019-11-17Hardcoded disabling of `Formatter` cache in normalizer.multiple creatures
2019-11-17Do not allow `Formatter` cache when normalizing text by default - fixes ↵multiple creatures
mentions formatting bug.
2019-11-17When domain policies are created or updated, set the `processing` flag from ↵multiple creatures
the model instead of from the controller.
2019-11-17In the indexer, skip destroyed `Status` objects.multiple creatures
2019-11-17Do not try to update destroyed `Status` objects.multiple creatures
2019-11-16Include all tags in normalized text. Deduplicate and move them to the front.multiple creatures
2019-11-16In the index task, do not cache `Formatter` results.multiple creatures
2019-11-16When normalizing the text of local posts, skip `Formatter` cache (but allow ↵multiple creatures
the results to be cached) by default.
2019-11-16Allow callers of `Formatter` methods to specify that formatting results ↵multiple creatures
should not be cached.
2019-11-16Correct typo.multiple creatures
2019-11-16In the index task, mute the debug logger once per batch instead of once per ↵multiple creatures
iteation.
2019-11-16Fix progress text.multiple creatures
2019-11-16Moved to using a normalized text column for searches. Admins using an ↵multiple creatures
FTS-enabled version of Monsterfork will need to apply the migration from `dist/search.sql` then run `bundle exec rails monsterfork:index_statuses`.
2019-11-16Searches now work on `following` scope.multiple creatures