- Jun 06, 2017
-
-
ふぁぼ原 authored
* Add regex filter on the community timeline and the public timeline * correcting * Adjust the height of header buttons * Remove trailing spaces * Remove trailing spaces * Solve some code duplication * reset the state of the locale files in app/javascript/mastodon/locales * adjust to upstream * adjust to upstream * change keys of locale settings
-
unarist authored
-
unarist authored
* Sort results by the name * Switch search method to simple `LIKE` matching instead of tsvector/tsquery Previously we used scores from ts_rank_cd() to sort results, but it didn't work because the function returns same score for all results. It's not for calculate similarity of single words. Sometimes this bug even push out exact matching tag from results. Additionally, PostgreSQL supports prefix searching with standard btree index. Using it offers simpler code, but also less index size and some speed.
-
Yamagishi Kazutoshi authored
* Add react/no-string-refs ESLint rule * Add react/jsx-boolean-value ESLint rule * Add react/jsx-closing-bracket-location ESLint rule * Add react/jsx-indent ESLint rule * Add react/jsx-curly-spacing ESLint rule * Add react/jsx-equals-spacing ESLint rule * Add react/jsx-first-prop-new-line ESLint rule * Add react/jsx-no-duplicate-props ESLint rule * Add react/jsx-tag-spacing ESLint rule
-
Yamagishi Kazutoshi authored
-
May Kittens Devour Your Soul authored
-
Yamagishi Kazutoshi authored
* Add quotes ESLint rule * Add jsx-quotes ESlint rule * Sort ESLint rules
-
Yamagishi Kazutoshi authored
-
- Jun 05, 2017
-
-
ThibG authored
* Try fixing ThreadResolveWorker calls From my understanding of ActiveRecord, a transaction is commited as soon as the exit of the outmost ActiveRecord.transaction block. However, inner transaction blocks will exit without the transaction being commited. In this case, ThreadResolveWorker were fired *within* a transaction block, so moving the call out of it should do the trick. However, this is somewhat fragile, as this whole codepath could be called within yet another transaction. * Set status thread within the transaction block if it is immediately available from database
-
Naoki Kosaka authored
-
Naoki Kosaka authored
-
unarist authored
-
Shunsuke Michii authored
-
IkUrA authored
* Add streaming_api_base_url to /api/v1/instance * Adjust spaces * nested view * re-adjust spaces
-
Matt Jankowski authored
* Add a StatusFilter class to identify visibility of statuses by accounts * Extract StatusThreadingConcern from Status * Clarify purpose of checking for nil account
-
unarist authored
-
Naoki Kosaka authored
-
Daigo 3 Dango authored
* Redirect to streaming_api_base_url When Rails receives a request to streaming API, it most likely means that there is another host which is configured to respond to it. This is to redirect clients to that host if `STREAMING_API_BASE_URL` is set as another host. * Use the new Ruby 1.9 hash syntax
-
Yamagishi Kazutoshi authored
* Add support key shortcut to Onboarding Modal * this.state.pages -> this.pages
-
Yamagishi Kazutoshi authored
-
René Klačan authored
Closes https://github.com/tootsuite/mastodon/issues/3102
-
- Jun 04, 2017
-
-
Quent-in authored
* i18n Update : Add preference setting for delete toot modal Adding a line for "Add preference setting for delete toot modal" * i18n update for pin/unpin Update to add two more translations * i18n update to have the dates in plain occitan * Removed the blank line * %{selft} back in the translation
-
Eugen Rochko authored
* Added support for configurable reserved usernames * Added reserved usernames from mastodon issue 1355 * Fix reserved usernames
-
Akihiko Odaki (@fn_aki@pawoo.net) authored
* Do not fall back to StreamEntry if object_type is unavailable in TagManager Since 6d6a429a, when Status, the only model with stream_entry, and StreamEntry got its own logic in uri_for and url_for, the purpose of the fallbacks to activity_type of StreamEntry became unclear. This commit removes the fallbacks. When adding another model with stream_entry in future, consider to update uri_for and url_for. * Cover TagManager more
-
m4sk1n authored
-
lindwurm authored
ref: #3538 ("Extended information" -> "About this instance") and #3519 Signed-off-by:
lindwurm <lindwurm.q@gmail.com>
-
Akihiko Odaki (@fn_aki@pawoo.net) authored
* Do not default the format in ProviderDiscovery The format should be determined when discovering, as it is in the current implementation, and it is a flaw if it is not determined. * Spec ProviderDiscovery
-
Akihiko Odaki (@fn_aki@pawoo.net) authored
* Remove some arguments of Formatter.instance.format * Improve spec for Formatter
-
Akihiko Odaki (@fn_aki@pawoo.net) authored
-
Naoki Kosaka authored
-
Yamagishi Kazutoshi authored
-
Yamagishi Kazutoshi authored
* Add Japanese translations (pin) * "ピン留め" is more general
-
unarist authored
-
Mingye Wang authored
This change follows #3519, which does the same for the Chinese variants. Or should it be simply "About"?
-
- Jun 03, 2017
-
-
Eugen Rochko authored
* Allow mounting arbitrary columns * Refactor column headers, allow pinning/unpinning and moving columns around * Collapse animation * Re-introduce scroll to top * Save column settings properly, do not display pin options in single-column view, do not display collapse icon if there is nothing to collapse * Fix one instance of public timeline being closed closing the stream Fix back buttons inconsistently sending you back to / even if history exists * Getting started displays links to columns that are not mounted
-
masarakki authored
-
takayamaki authored
-
Akihiko Odaki (@fn_aki@pawoo.net) authored
* Remove redundant status.reply? in AtomSerializer#object * Cover AtomSerializer more
-
Clworld authored
* Add redis key "subscribed:timeline:#{account.id}" to indicate active streaming API listeners exists. * Add endpoint for notification only stream. * Run PushUpdateWorker only for users uses Streaming API now. * Move close hander streamTo(Http/Ws) -> stream(Http/Ws)End (Deal with #3370) * Add stream type for stream start log message.
-
Nolan Lawson authored
-