Skip to content
Snippets Groups Projects
  1. Oct 17, 2017
    • Yamagishi Kazutoshi's avatar
      Normalize locale files (#5429) · 989553c6
      Yamagishi Kazutoshi authored
      989553c6
    • masarakki's avatar
      use-DB_NAME-in-development (#5430) · 0e0c6b1b
      masarakki authored
      0e0c6b1b
    • aschmitz's avatar
      Clean up reblog tracking keys, related improvements (#5428) · 554c2fd8
      aschmitz authored
      * Clean up reblog-tracking sets from FeedManager
      
      Builds on #5419, with a few minor optimizations and cleanup of sets
      after they are no longer needed.
      
      * Update tests, fix multiply-reblogged case
      
      Previously, we would have lost the fact that a given status was
      reblogged if the displayed reblog of it was removed, now we don't.
      
      Also added tests to make sure FeedManager#trim cleans up our reblog
      tracking keys, fixed up FeedCleanupScheduler to use the right loop,
      and fixed the test for it.
      554c2fd8
    • Håkan Eriksson's avatar
      Swedish translation (#5406) · a2b60042
      Håkan Eriksson authored
      * Swedish file added
      
      * Swedish file added
      
      * Swedish file updated
      
      * Swedish languagefile added
      
      * Add Swedish translation
      
      * Add Swedish translation
      
      * Started the Swedish translation
      
      * Added Swedish lang settings
      
      * Updating Swedish language
      
      * Updating Swedish language
      
      * Updating Swedish language
      
      * Updating Swedish language
      
      * Updating Swedish language
      
      * Updating Swedish language
      
      * Swedish language completed and added
      
      * Swedish language Simple_form added
      
      * Swedish language Divise added
      
      * Swedish language doorkeeper added
      
      * Swedish language - now all file complete
      a2b60042
  2. Oct 16, 2017
  3. Oct 15, 2017
  4. Oct 14, 2017
  5. Oct 13, 2017
    • Jeroen's avatar
      Dutch strings: small change (#5375) · c35132a7
      Jeroen authored
      * Dutch strings: small change
      
      * And this too.
      c35132a7
    • unarist's avatar
      Optimize Status#permitted_for 500x (account timeline) (#5373) · a1c54220
      unarist authored
      The main change of this PR is removing `order by visibility` hack.
      
      This was introduced to force using of `index_statuses_on_account_id` instead of PK index, but it seems no longer needed probably due to `index_statuses_on_account_id_id`. Removing this avoids reading all rows, so really improves first fetching of the user who has lot of statuses.
      
      I have also changed JOIN to IN + subquery, which slightly faster in most cases.
      a1c54220
    • Eugen Rochko's avatar
      Fix NameError: uninitialized constant OStatus::AtomSerializer::TagManager (#5371) · df7dbc41
      Eugen Rochko authored
      This error occurred at least in development environment
      df7dbc41
    • Eugen Rochko's avatar
      Fix UserTrackingConcern firing on every request, optimize some queries (#5368) · b8db386e
      Eugen Rochko authored
      - For some reason, :if option on before_action did not work. It got
        executed every time, returned false, and the action run anyway,
        which led to the current_sign_in_at and sign_in_count being
        updated on every request
      - Return "do not filter" early in FeedManager#filter_from_home? if
        the status is authored by receiver. Usually this method is not
        called for own statuses at all, but it is called when Feed#get
        uses the database
      - Return early if #reload_stale_associations! has nothing to load
        to save a database query with WHERE 1=0
      b8db386e
Loading