Skip to content
Snippets Groups Projects
  1. Apr 12, 2017
    • Matt Jankowski's avatar
      323671a6
    • Matt Jankowski's avatar
      Fix issue with intermittent api/v1/notifications failure (#1606) · b155e6cc
      Matt Jankowski authored
      The spec was checking the activity_id of the activities held in notifications
      within the controller.
      
      Because the activities are different models, it is possible that they are
      created with the same database IDs, and when they are this spec fails because an
      activity which should not count as a match is counted as one.
      b155e6cc
    • Christopher Su's avatar
      Fix redirect link on Tuning.md (#1595) · f16b9a49
      Christopher Su authored
      f16b9a49
    • Koala Yeung's avatar
      Add Traditional Chinese, Hong Kong translation (zh-HK) (#1544) · 24eb4542
      Koala Yeung authored
      * Added Chinese Traditional Hong Kong (zh-HK) for Ruby
      
      * Added translations for Ruby.
      
      * Added Chinese Traditional Hong Kong (zh-HK) for JS
      
      * Added translations for javascript code.
      
      * Rearrange language references in mastodon.jsx
      
      * Break `addLocaleData` into multiple lines. Make future commit more readable.
      * Roughly re-sort the languages in alphabetical orders
        (only manually put English on top because it is default).
      
      * Sort application.rb locale with alphabetical order
      
      With exception that English (default language) goes first.
      Improve code readability.
      
      * Resort language selection box alphabetically
      
      Sort HUMAN_LOCALES in the alphabetical order of display name
      (except English, the default language, come first).
      
      Improve usability.
      24eb4542
  2. Apr 11, 2017
  3. Apr 10, 2017
    • Matt Jankowski's avatar
      Pagination improvements (#1445) · 4ada5098
      Matt Jankowski authored
      * Replace will_paginate with kaminari
      
      * Use #page instead of #paginate in controllers
      
      * Replace will_paginate.page_gap with pagination.truncate in i18n
      
      * Customize kaminari views to match prior styles
      
      * Set kaminari options to match prior behavior
      
      * Replace will_paginate with paginate in views
      4ada5098
    • Effy Elden's avatar
      Add note about minimum docker-compose version (#1264) · a2837864
      Effy Elden authored
      Add a note to ensure users are using the right version of docker-compose.
      a2837864
    • Eugen's avatar
      When avatar/header are GIF, generate static versions (#1428) · 12f72e17
      Eugen authored
      * When avatar/header are GIF, generate static versions.
      Account API returns "avatar"/"avatar_static", "header"/"header_static"
      Static version is the same as original for other cases
      Web UI de-animates avatars in toots, lists of users
      
      Fix #441, fix #596, prerequisite for #1064
      
      * Fix JS test
      
      * Add rake task to generate static avatars/headers from GIF ones, add test
      12f72e17
    • Matt Jankowski's avatar
      Remove order prior to .find_in_batches (#1470) · b57eed45
      Matt Jankowski authored
      The `Status` class has a default order on it, so when this query gets built and
      gets all the way to `find_in_batches` there is an order already there.
      
      When `find_in_batches` is run it discards any existing order on the query, and
      emits a warning to the logs if there is one there.
      
      This change removes the order prior calling `find_in_batches`, which will stop
      the logged warning from occurring as well.
      b57eed45
    • Gavin Mogan's avatar
      Dev Tooling fixes (eslint/editorconfig) (#1398) · 3672a799
      Gavin Mogan authored
      * Add eslint to dev dependancies so it gets installed for the repo
      
      yarn add --dev eslint babel-eslint eslint-plugin-reac
      
      project specific version of eslint, you can globally install eslint-cli
      if you want the global runtime, or add .bin to your path
      
      * fix eslint errors about inconsitent returns
      
      * eslint ignore the same as git ignore. allows for eslint .
      
      * Add editorconfig file so everyones editor will be setup to follow the same standards
      3672a799
Loading