Skip to content
Snippets Groups Projects
  1. Mar 24, 2018
  2. Mar 22, 2018
  3. Mar 18, 2018
  4. Mar 13, 2018
  5. Mar 12, 2018
  6. Mar 11, 2018
  7. Mar 08, 2018
  8. Mar 07, 2018
  9. Mar 06, 2018
  10. Mar 05, 2018
    • Akihiko Odaki's avatar
      Replace onScrollToBottom with onLoadMore (#6615) · b0664a5e
      Akihiko Odaki authored
      onScrollToBottom was a function to run instead of onScrollToTop and
      onScroll when scrolling to the bottom. The behavior to prevent
      onScrollToTop was inconvenient because the viewport can be at the bottom
      and at the top at the same time if the viewport is larger than the
      container.
      
      onScrollToBottom was also called when the button to load more is clicked
      on contray to the name suggests, which led notifications and
      status_list_container components to mark the scrolled location is not at
      the top mistakenly.
      
      onLoadMore is a replacement for onScrollToBottom. It will be called
      independently from onScrollToTop and onScroll.
      b0664a5e
    • ThibG's avatar
      Add “Domain hidden” badge (#6636) · 4746feaa
      ThibG authored
      4746feaa
    • ThibG's avatar
      Make more apparent that an account is blocked or muted (fixes #6544) (#6627) · 46a9a237
      ThibG authored
      * Add button to unblock blocked accounts from their profile
      
      * Add “Blocked” badge in place of “Follows you” when the user is blocked
      
      * Add “Muted” badge (below “follows you” badge)
      46a9a237
  11. Mar 04, 2018
    • Yuto Tokunaga's avatar
      [RFC] Improved media modal (#5956) · 4e929b2d
      Yuto Tokunaga authored
      * Improved media modal
      
      ImageLoader: Impliment pinch zoom by CSS `transform: scale(X)`
      ImageLoader: Impliment panning by CSS `overflow: scroll`
      ImageLoader: Larger image
      MediaModal: Larger close button
      MediaModal: Close the modal by swiping vertically
      MediaModal: Show/hide close button and right/left navigation on tapping image
      MediaModal: Change the `pointer-event` CSS prpp to get more blank space to close the modal
      ImageLoader: Zoom/reset zoom on double tap
      MediaModal: disable vertical swiping while horizontally swiped
      ImageLoader: prevent propagating touchmove event to MediaModal
      MediaModal: Adjust size and potision of buttons
      ImageLoader: Adjust scroll potision on pinch zoom
      
      * Remove "swipe to close" and "double tap to zoom" features
      
      * remove unused prop and functions
      
      removed `onScroll` prop and `handleScroll` func in ImageLoader
      
      * separate zoom functionary to ZoomableImage component
      
      adjust styling of ImageLoader
      add styling for ZoomableImage
      
      * adjust size and potision of close button of media modal
      
      * Fix for gif video
      
      add `onClick` prop to ExtendedVideoPlayer
      specify `onClick` prop to video tag for switching nav of `MediaModal`
      add `.video-modal` class to scss to separate styling for `VideoModal`
      
      * fix styling for centering
      
      specify height of `ZoomableImage` by pixel
      clean styling for `ImageLoader`
      
      * fix lint errors
      
      * small fix
      
      * fixed designated parts
      4e929b2d
    • abcang's avatar
      Show media on report UI (#6619) · 219aac78
      abcang authored
      219aac78
    • Eugen Rochko's avatar
      Federate pinned statuses over ActivityPub (#6610) · 9110db41
      Eugen Rochko authored
      * Federate pinned statuses over ActivityPub
      
      * Display pinned toots in web UI
      
      Fix #6117
      
      * Fix migration
      
      * Fix tests
      
      * Update outbox_serializer.rb
      
      * Update remove_serializer.rb
      
      * Update add_serializer.rb
      
      * Update fetch_featured_collection_service.rb
    • Akihiko Odaki's avatar
      Finalize location on scrollable notifications when unmounting (#6614) · 45feb439
      Akihiko Odaki authored
      The top of the scrollable notifications will be invisible after unmounting.
      The Redux state should be updated accordingly in such a case so that the
      unread notification counter will be updated later.
      45feb439
  12. Mar 02, 2018
  13. Mar 01, 2018
  14. Feb 28, 2018
  15. Feb 24, 2018
    • Akihiko Odaki's avatar
      Do not use function name to track components (#6542) · 7cb49eaa
      Akihiko Odaki authored
      UglifyJS2 is allowed to mangle function names, and function names can also
      be duplicate if they are from different scopes. Therefore function names
      are not reliable as identifiers.
      
      Functions as keys for Map object is a cheaper and more reliable
      alternative.
      7cb49eaa
  16. Feb 21, 2018
    • Eugen Rochko's avatar
      Focal points (#6520) · 90f12f2e
      Eugen Rochko authored
      * Add focus param to media API, center thumbnails on focus point
      
      * Add UI for setting a focal point
      
      * Improve focal point icon on upload item
      
      * Use focal point in upload preview
      
      * Add focalPoint property to ActivityPub
      
      * Don't show focal point button for non-image attachments
  17. Feb 15, 2018
  18. 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
  19. Feb 08, 2018
Loading