summaryrefslogtreecommitdiff
path: root/lib/mix/tasks
AgeCommit message (Collapse)Author
2024-02-02Pleroma Emoji mix task: fix gradient errorMark Felder
lib/mix/tasks/pleroma/emoji.ex: The tuple {:cwd, pack_path} on line 114 is expected to have type :cooked | :keep_old_files | :memory | :verbose | {:cwd, list(char())} | {:file_filter, (record(:zip_file) -> boolean())} | {:file_list, list(:file.name())} but it has type {:cwd, binary()}
2024-01-20Fix mix task pleroma.instance dialyzer errorMark Felder
lib/mix/tasks/pleroma/instance.ex:356:pattern_match_cov The pattern :variable_ can never match, because previous clauses completely cover the type %{ :anonymize => boolean(), :dedupe => boolean(), :read_description => boolean(), :strip_location => boolean() }.
2023-12-28Fix some more typosmarcin mikołajczak
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2023-11-12Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵Lain Soykaf
pleroma-meilisearch
2023-11-08Ensure benchee doesn't run unless we are executing benchmarksMark Felder
2023-08-04instance gen: Reduce permissions of pleroma directories and config filesHaelwenn (lanodan) Monnier
2023-01-15Force spec for every operation to have a listed tagtusooa
2023-01-02Revert "Merge branch 'copyright-bump' into 'develop'"lain
This reverts merge request !3825
2023-01-01Bump copyright yearmarcin mikołajczak
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2022-10-10Specifically strip mentions for search indexingEkaterina Vaartis
2022-10-10Make add_to_index and remove_from_index report errorsEkaterina Vaartis
2022-10-10Change updateId to uid because apparently that's the new nameEkaterina Vaartis
2022-10-10Change the meilisearch key auth to conform to 0.25.0Ekaterina Vaartis
2022-10-10Don't support meilisearch < 0.24.0, since it breaks thingsEkaterina Vaartis
2022-10-10Make chunk size configurableEkaterina Vaartis
2022-10-10Implement suggestions from the Meilisearch MREkaterina Vaartis
- Index unlisted posts - Move version check outside of the streaming and only do it once - Use a PUT request instead of checking manually if there is need to insert - Add error handling, sort of
2022-10-10Style fixesEkaterina Vaartis
2022-10-10Support reindexing meilisearch >=0.24.0Ekaterina Vaartis
It has has a different error code key
2022-10-10Add a reindex optionEkaterina Vaartis
Signed-off-by: Ekaterina Vaartis <vaartis@kotobank.ch>
2022-10-10Reorder ranking rules for (maybe) better resultsEkaterina Vaartis
2022-10-10Add the meilisearch.stats commandEkaterina Vaartis
2022-10-10Add a message with a count of posts to indexEkaterina Vaartis
2022-10-10Implement meilisearch authEkaterina Vaartis
2022-10-10Make indexing logs rewrite themselvesEkaterina Vaartis
2022-10-10Rework task indexing to share code with the main moduleEkaterina Vaartis
The code in the main module now scrubs new posts too
2022-10-10Adjust content indexing to skip more unneeded stuffEkaterina Vaartis
2022-10-10Mark only content as searchable for meilisearchEkaterina Vaartis
2022-10-10Make the chunk size smallerEkaterina Vaartis
2022-10-10Use content instead of source and scrub itEkaterina Vaartis
2022-10-10Tweak search ordering to hopefully return newer resultsEkaterina Vaartis
2022-10-10Make meilisearch sort on publish date converted to unix timeEkaterina Vaartis
2022-10-10Make the indexing batch differently and more, show number indexedEkaterina Vaartis
2022-10-10Ensure only indexing public posts and implement clearing and deleteEkaterina Vaartis
2022-10-10Add logging to milisiearch index and make it use desc(id)Ekaterina Vaartis
2022-10-10Initial meilisearch implementation, doesn't delete posts yetEkaterina Vaartis
2022-09-27Merge branch 'bugfix/elixir-1.14' into 'develop'Haelwenn
Bugfix: Elixir 1.14 See merge request pleroma/pleroma!3740
2022-09-05Merge branch 'bump/min-elixir-1.10' into 'develop'tusooa
Bump minimum Elixir version to 1.10 See merge request pleroma/pleroma!3741
2022-09-03Elixir 1.14 formattingHaelwenn (lanodan) Monnier
2022-09-02Bump minimum Elixir version to 1.10Haelwenn (lanodan) Monnier
With the release of Elixir 1.14, Elixir 1.9 is now end-of-life. Elixir 1.10 Release Notes: https://github.com/elixir-lang/elixir/releases/tag/v1.10.0
2022-08-20Switch to associated_object_id indexTusooa Zhu
2022-08-03bugfix/follow-state (#104)floatingghost
Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/104
2022-07-01Rename the Exiftool moduleIlja
No migrations or checks yet
2022-07-01Rename the new moduleIlja
2022-07-01Use EXIF data of image to prefill image descriptionIlja
During attachment upload Pleroma returns a "description" field. Pleroma-fe has an MR to use that to pre-fill the image description field, <https://git.pleroma.social/pleroma/pleroma-fe/-/merge_requests/1399> * This MR allows Pleroma to read the EXIF data during upload and return the description to the FE * If a description is already present (e.g. because a previous module added it), it will use that * Otherwise it will read from the EXIF data. First it will check -ImageDescription, if that's empty, it will check -iptc:Caption-Abstract * If no description is found, it will simply return nil, just like before * When people set up a new instance, they will be asked if they want to read metadata and this module will be activated if so This was taken from an MR i did on Pleroma and isn't finished yet.
2022-02-25Copyright bump for 2022Sean King
2021-12-15Merge remote-tracking branch 'origin/develop' into live-dashboardAlex Gleason
2021-12-15Add Phoenix LiveDashboardAlex Gleason
Co-authored-by: Egor Kislitsyn <egor@kislitsyn.com>
2021-10-06CI: Bump lint stage to elixir-1.12Haelwenn (lanodan) Monnier
Elixir 1.12 changed formatting rules, this allows to avoid having to rollback to run `mix format`
2021-08-28mix pleroma.database set_text_search_config now runs concurrently and infinitelysomeone
Backport of: https://git.pleroma.social/pleroma/pleroma/-/merge_requests/3514
2021-08-15mix pleroma.database set_text_search_config now runs concurrently and infinitelysomeone