Skip to content
Snippets Groups Projects
  1. Feb 28, 2018
  2. Feb 24, 2018
  3. Feb 22, 2018
    • Eugen Rochko's avatar
      Redesign landing page (again) (#6486) · c71aa468
      Eugen Rochko authored
      * Redesign landing page (again)
      
      * Move login form in small version to the right column
      
      * Display closed registrations message
      
      * Add site setting for the hero image
      
      * Fix test
      
      * Increase spacing, maximum width, change call to action section
      Unverified
      c71aa468
  4. Feb 21, 2018
    • Eugen Rochko's avatar
      Fix bug in relationships API introduced by #6482 (#6527) · 4bc62516
      Eugen Rochko authored
      It was merge when it needed to be deep_merge. And added some tests
      Unverified
      4bc62516
    • Eugen Rochko's avatar
      Account archive download (#6460) · 61ed133f
      Eugen Rochko authored
      * Fix #201: Account archive download
      
      * Export actor and private key in the archive
      
      * Optimize BackupService
      
      - Add conversation to cached associations of status, because
        somehow it was forgotten and is source of N+1 queries
      - Explicitly call GC between batches of records being fetched
        (Model class allocations are the worst offender)
      - Stream media files into the tar in 1MB chunks
        (Do not allocate media file (up to 8MB) as string into memory)
      - Use #bytesize instead of #size to calculate file size for JSON
        (Fix FileOverflow error)
      - Segment media into subfolders by status ID because apparently
        GIF-to-MP4 media are all named "media.mp4" for some reason
      
      * Keep uniquely generated filename in Paperclip::GifTranscoder
      
      * Ensure dumped files do not overwrite each other by maintaing directory partitions
      
      * Give tar archives a good name
      
      * Add scheduler to remove week-old backups
      
      * Fix code style issue
      Unverified
      61ed133f
  5. Feb 20, 2018
  6. Feb 18, 2018
  7. Feb 17, 2018
    • Akihiko Odaki's avatar
      Isolate each specs for cache store (#6450) · 9b8a4484
      Akihiko Odaki authored
      The cache store is explicitly used by some specs, but they were not
      isolated and therefore not reliable. This fixes the issue by clearing
      the cache after each specs.
      9b8a4484
    • Akihiko Odaki's avatar
      Limit the languages used for notification mailer test (#6487) · a7c50c7a
      Akihiko Odaki authored
      Some available languages lack translations for notification mails. Now it
      tests for two languages which is certain to have required translations:
      German and English.
      
      German is the language the current project owner, Eugen Rochko speaks, and
      providing English translations for new messages is de facto mandatory.
      a7c50c7a
  8. Feb 16, 2018
  9. Feb 11, 2018
  10. Feb 10, 2018
  11. Feb 09, 2018
    • Eugen Rochko's avatar
      Full-text search for authorized statuses (#6423) · 3ebc0ad4
      Eugen Rochko authored
      * Add full-text search for authorized statuses
      
      - Search API will return statuses that match the query
      - Only for logged in users
      - Only if you are author of the status,
      - Or you were mentioned in it
      - Or you favourited or reblogged it
      - Configuration over `ES_ENABLED`, `ES_HOST`, `ES_PORT`, `ES_PREFIX`
      - Run `rails chewy:deploy` to create & populate index
      
      Fix #5880
      Fix #4293
      Fix #1152
      
      * Add commented out docker-compose configuration for ES container
      
      * Optimize index import, filter search results
      
      * Add basic normalization to the index
      
      * Add better stemming and normalization to the index
      
      * Skip webfinger request if search query includes both @ and a space
      
      * Fix code style
      
      * Visually separate search result sections
      
      * Fix code style issues
      Unverified
      3ebc0ad4
  12. Feb 08, 2018
  13. Feb 07, 2018
  14. Feb 04, 2018
    • Eugen Rochko's avatar
      CAS + SAML authentication feature (#6425) · 26f21fd5
      Eugen Rochko authored
      * Cas authentication feature
      
      * Config
      
      * Remove class_eval + Omniauth initializer
      
      * Codeclimate review
      
      * Codeclimate review 2
      
      * Codeclimate review 3
      
      * Remove uid/email reconciliation
      
      * SAML authentication
      
      * Clean up code
      
      * Improve login form
      
      * Fix code style issues
      
      * Add locales
      Unverified
      26f21fd5
  15. Feb 02, 2018
  16. Jan 22, 2018
  17. Jan 21, 2018
  18. Jan 20, 2018
  19. Jan 18, 2018
  20. Jan 17, 2018
    • Eugen Rochko's avatar
      Fix home regeneration (#6251) · 7badad77
      Eugen Rochko authored
      * Fix regeneration marker not being removed after completion
      
      * Return HTTP 206 from /api/v1/timelines/home if regeneration in progress
      Prioritize RegenerationWorker by putting it into default queue
      
      * Display loading indicator and poll home timeline while it regenerates
      
      * Add graphic to regeneration message
      
      * Make "not found" indicator consistent with home regeneration
      Unverified
      7badad77
    • Mike Burns's avatar
      Use be_within instead of eq for a to_f test match (#6275) · ea75ae2d
      Mike Burns authored
      Floating point values are notoriously hard to pin down, so use the
      `be_within` matcher to verify the approximate value.
      ea75ae2d
  21. Jan 16, 2018
  22. Jan 08, 2018
  23. Jan 07, 2018
  24. Jan 05, 2018
  25. Jan 04, 2018
    • Patrick Figel's avatar
      Fix email confirmation link not updating email (#6187) · 5ec25ff3
      Patrick Figel authored
      A change introduced in #6125 prevents
      `Devise::Models::Confirmable#confirm` from being called for existing
      users, which in turn leads to `email` not being set to
      `unconfirmed_email`, breaking email updates. This also adds a test
      that would've caught this issue.
      5ec25ff3
  26. Jan 03, 2018
  27. Jan 02, 2018
    • Patrick Figel's avatar
      Add confirmation step for email changes (#6071) · 04ecf44c
      Patrick Figel authored
      * Add confirmation step for email changes
      
      This adds a confirmation step for email changes of existing users.
      Like the initial account confirmation, a confirmation link is sent
      to the new address.
      
      Additionally, a notification is sent to the existing address when
      the change is initiated. This message includes instruction to reset
      the password immediately or to contact the instance admin if the
      change was not initiated by the account owner.
      
      Fixes #3871
      
      * Add review fixes
      04ecf44c
Loading