- Oct 27, 2017
-
-
David Yip authored
For boop.mp3, this commit adds both ID3v1 and ID3v2 tags. For boop.ogg, we use Vorbis metadata. In the case of boop.mp3, this also adds a cover image. Interestingly, it didn't seem to affect the size of boop.mp3 much, despite being ~8k. boop.ogg seemed to be much more affected and so no cover image was added to that version.
-
Nolan Lawson authored
-
Akihiko Odaki authored
[hash] is not documented.
-
nullkal authored
-
puckipedia authored
-
unarist authored
We have changed how we store reblogs in the redis for bigint IDs. This process is done by 1) scan all entries in users feed, and 2) re-store reblogs by 3 write commands. However, this operation is really slow for large instances. e.g. 1hrs on friends.nico (w/ 50k users). So I have tried below tweaks. * It checked non-reblogs by `entry[0] == entry[1]`, but this condition won't work because `entry[0]` is String while `entry[1]` is Float. Changing `entry[0].to_i == entry[1]` seems work. -> about 4-20x faster (feed with less reblogs will be faster) * Write operations can be batched by pipeline -> about 6x faster * Wrap operation by Lua script and execute by EVALSHA command. This really reduces packets between Ruby and Redis. -> about 3x faster I've taken Lua script way, though doing other optimizations may be enough.
-
- Oct 26, 2017
-
-
erin authored
-
りんすき authored
* Fix #5314 * fix not beautiful code * fix broken design with mobile view * remove no longer needed code
-
unarist authored
Looks like copied tempfile need to be flushed before further processing. This issue won't happen if the uploaded file has enough file size.
-
Nolan Lawson authored
-
- Oct 25, 2017
-
-
Ratmir Karabut authored
* Add Russian translation (ru) * Fix a missing comma * Fix the wording for better consistency * Update Russian translation * Arrange Russian setting alphabetically * Fix syntax error * Update Russian translation * Fix formatting error * Update Russian translation * Update Russian translation * Update ru.jsx * Fix syntax error * Remove two_factor_auth.warning (appears obsolete) * Add missing strings in ru.yml A lot of new strings translated, especially for the newly added admin section * Fix translation consistency * Update Russian translation * Update Russian translation (pluralizations) * Update Russian translation * Update Russian translation * Update Russian translation (pin) * Update Russian translation (account deletion) * Fix extra line * Update Russian translation (sessions) * Update Russian translation * Update Russian translation * Fix merge conflicts (revert) * Update Russian translation * Update Russian translation (fix) * Update Russian translation (fix quotes) * Update Russian translation (fix quotes) * Update Russian translation (fix) * Update Russian translation * Add quotes * bundle exec i18n-tasks normalize
-
Anna e só authored
-
Olivier Nicole authored
-
- Oct 21, 2017
-
-
Marcin Mikołajczak authored
-
- Oct 19, 2017
-
-
Nolan Lawson authored
-
masarakki authored
-
- Oct 18, 2017
-
-
Sho Kusano authored
-
Eugen Rochko authored
-
Renato "Lond" Cerqueira authored
-
Technowix authored
As said here https://github.com/tootsuite/mastodon/pull/5438 the point of shortening the timestamp is legit, and after some time of adaptation no mistakes can be mades.
-
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 * Swedish - Typos and supplementation in sentence structure * Update simple_form.sv.yml * Update sv.yml * Update sv.yml Rearranged the alphabetical order.
-
Yamagishi Kazutoshi authored
-
Yamagishi Kazutoshi authored
-
JohnD28 authored
Typo correction : https://fr.wikipedia.org/wiki/Heure#Typographie
-
- Oct 17, 2017
-
-
Eugen Rochko authored
-
Jeroen authored
* Dutch: A few strings I found last minute * Update simple_form.nl.yml
-
YaQ authored
* Rename application.scss * Move to 'default' directory * Follow review Move directory, and Rename "mastodon". * Revert rename * undo removal of newline
-
Eugen Rochko authored
-
JeanGauthier authored
* Update oc.json * Update fr.json * Update ca.json * Update fr.json * Update simple_form.fr.yml * Update ca.json * Update fr.json * Update oc.json * Update oc.json * Update fr.json
-
Nolan Lawson authored
-
Eugen Rochko authored
Fix #5356
-
Eugen Rochko authored
-
unarist authored
Specifically, this fixes status length calculation to be same as JS side. BTW, since this pattern used in not only preview card fetching, we should extract it (with twitter-regex?) and write tests I think.
-
JeanGauthier authored
* Update oc.json * Update ca.json * Update fr.json * Update es.json
-
unarist authored
-
Jakob Kramer authored
-
Yamagishi Kazutoshi authored
* yarn manage:translations * Add Japanese translation for #5410 * Add Japanese translation for #5393
-
Yamagishi Kazutoshi authored
-
masarakki authored
-
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.
-