Skip to content
Extraits de code Groupes Projets
  1. fév. 21, 2018
    • Eugen Rochko's avatar
      Fix avatar and header issues by using custom geometry detector (#6515) · a7171af0
      Eugen Rochko a rédigé
      * Fix avatar and header issues by using custom geometry detector
      
      Revert a part of #6508. The file passed to dynamic styles method
      was not actually a file, but an instance of Paperclip::Attachment,
      which broke all styles by always returning {} from the method.
      
      One problem with GIF avatars was that Paperclip::GeometryDetector
      reported wrong dimensions for them, e.g. 120x120 GIF avatar would
      for some reason be detected as 120x53. By writing our own geometry
      parser, we can use FastImage, which also happens to be faster than
      ImageMagick, to detect image dimensions, which are also correct.
      
      Unfortunately, this PR does not implement skipping a `convert`
      entirely if the dimensions are already correct, as I found no easy
      way to write that behaviour into Paperclip without rewriting the
      Paperclip::Thumbnail class.
      
      * Only invoke convert if dimension or format needs to be changed
      Non vérifiée
      a7171af0
  2. fév. 20, 2018
  3. fév. 19, 2018
  4. fév. 18, 2018
  5. fév. 17, 2018
  6. fév. 16, 2018
  7. fév. 15, 2018
  8. fév. 13, 2018
  9. fév. 11, 2018
  10. fév. 10, 2018
  11. fév. 09, 2018
    • Eugen Rochko's avatar
      Full-text search for authorized statuses (#6423) · 3ebc0ad4
      Eugen Rochko a rédigé
      * 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
      Non vérifiée
      3ebc0ad4
    • masarakki's avatar
      fix-indent (#6453) · 235c14c7
      masarakki a rédigé
      235c14c7
  12. fév. 08, 2018
  13. fév. 07, 2018
  14. fév. 05, 2018
    • Daniel King's avatar
      match hashtag regex in js client with server (#6431) · 95c82321
      Daniel King a rédigé
      the slight mismatch in hashtag regex between js and ruby was causing
      hashtag warning to be displayed for unlisted tweets when an invalid
      hashtag was entered
      
      exact version of ruby regex not possible in js as POSIX bracket
      expressions are not supported, this version approximates and doesn't
      give same unicode support
      95c82321
Chargement en cours