Skip to content
Snippets Groups Projects
  1. Mar 26, 2022
  2. Mar 21, 2022
  3. Mar 17, 2022
  4. Mar 15, 2022
  5. Mar 12, 2022
  6. Mar 07, 2022
    • Claire's avatar
      Add more migration tests (#17710) · 61ae6b35
      Claire authored
      * Add migration tests for hide_network settings migration
      
      * Add tests about suspended/suspended_at
      
      * Add more tests regarding the results of migrations
      
      * Fix migration test regarding stale conflicting remote account
      
      * Add migration tests about AccountConversation
      61ae6b35
  7. Mar 06, 2022
  8. Feb 23, 2022
  9. Feb 22, 2022
    • Claire's avatar
      Fix some media attachments being converted with too high framerates (#17619) · 166f6e4b
      Claire authored
      Video files with variable framerates are converted to constant framerate videos
      and the output framerate picked by ffmpeg is based on the original file's
      container framerate (which can be different from the average framerate).
      
      This means that an input video with variable framerate with about 30 frames per
      second on average, but a maximum of 120 fps will be converted to a constant 120
      fps file, which won't be processed by other Mastodon servers.
      
      This commit changes it so that input files with VFR and a maximum framerate
      above the framerate threshold are converted to VFR files with the maximum frame
      rate enforced.
      166f6e4b
  10. Feb 08, 2022
  11. Feb 03, 2022
  12. Jan 31, 2022
  13. Jan 30, 2022
  14. Jan 23, 2022
  15. Jan 20, 2022
  16. Dec 26, 2021
  17. Dec 17, 2021
  18. Dec 12, 2021
    • Takeshi Umeda's avatar
      Add remove orphans to tootctl statuses remove (#17067) · 6c8c031b
      Takeshi Umeda authored
      * Add remove orphans to tootctl statuses remove
      
      * Add REINDEX and change option from vacuum to compression-database
      
      * Changed to extract the deletion target of conversations to a temporary table
      
      * Support progress bar and exceptions when media remove
      
      * Add continue option
      
      * Fix compression to compress
      
      * Remove skip_remove_orphans
      6c8c031b
  19. Nov 26, 2021
  20. Nov 25, 2021
    • Eugen Rochko's avatar
      Add trending links (#16917) · 6e50134a
      Eugen Rochko authored
      * Add trending links
      
      * Add overriding specific links trendability
      
      * Add link type to preview cards and only trend articles
      
      Change trends review notifications from being sent every 5 minutes to being sent every 2 hours
      
      Change threshold from 5 unique accounts to 15 unique accounts
      
      * Fix tests
      6e50134a
  21. Nov 18, 2021
  22. Nov 16, 2021
    • Claire's avatar
      Fix upload of remote media with OpenStack Swift sometimes failing (#16998) · 48f8658d
      Claire authored
      Under certain conditions, files fetched from remotes trigger an error when
      being uploaded using OpenStack Swift. This is because in some cases, the
      remote server will not return a content-length, so our ResponseWithLimitAdapter
      will hold a `nil` value for `#size`, which will lead to an invalid value
      for the Content-Length header of the Swift API call.
      
      This commit fixes that by taking the size from the actually-downloaded file
      size rather than the upstream-provided Content-Length header value.
      48f8658d
  23. Nov 11, 2021
  24. Nov 06, 2021
  25. Oct 28, 2021
  26. Oct 25, 2021
  27. Oct 18, 2021
  28. Oct 14, 2021
  29. Sep 29, 2021
    • Claire's avatar
      Switch from unmaintained paperclip to kt-paperclip (#16724) · fc3ae134
      Claire authored
      * Switch from unmaintained paperclip to kt-paperclip
      
      * Drop some compatibility monkey-patches not required by kt-paperclip
      
      * Drop media spoof check monkey-patching
      
      It's broken with kt-paperclip and hopefully it won't be needed anymore
      
      * Fix regression introduced by paperclip 6.1.0
      
      * Do not rely on pathname to call FastImage
      
      * Add test for ogg vorbis file with cover art
      
      * Add audio/vorbis to the accepted content-types
      
      This seems erroneous as this would be the content-type for a vorbis stream
      without an ogg container, but that's what the `marcel` gem outputs, so…
      
      * Restore missing for_as_default method
      
      * Refactor Attachmentable concern and delay Paperclip's content-type spoof check
      
      Check for content-type spoofing *after* setting the extension ourselves, this
      fixes a regression with kt-paperclip's validations being more strict than
      paperclip 6.0.0 and rejecting some Pleroma uploads because of unknown
      extensions.
      
      * Please CodeClimate
      
      * Add audio/vorbis to the unreliable set
      
      It doesn't correspond to a file format and thus has no extension associated.
      fc3ae134
  30. Aug 09, 2021
    • Claire's avatar
      Add feature to automatically delete old toots (#16529) · 4ac78e2a
      Claire authored
      * Add account statuses cleanup policy model
      
      * Record last inspected toot to delete to speed up successive calls to statuses_to_delete
      
      * Add service to cleanup a given account's statuses within a budget
      
      * Add worker to go through account policies and delete old toots
      
      * Fix last inspected status id logic
      
      All existing statuses older or equal to last inspected status id must be
      kept by the current policy. This is an invariant that must be kept so that
      resuming deletion from the last inspected status remains sound.
      
      * Add tests
      
      * Refactor scheduler and add tests
      
      * Add user interface
      
      * Add support for discriminating based on boosts/favs
      
      * Add UI support for min_reblogs and min_favs, rework UI
      
      * Address first round of review comments
      
      * Replace Snowflake#id_at_start with with_random parameter
      
      * Add tests
      
      * Add tests for StatusesCleanupController
      
      * Rework settings page
      
      * Adjust load-avoiding mechanisms
      
      * Please CodeClimate
      4ac78e2a
  31. Aug 08, 2021
Loading