- oct. 27, 2017
-
-
David Yip a rédigé
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 a rédigé
-
Akihiko Odaki a rédigé
[hash] is not documented.
-
nullkal a rédigé
-
puckipedia a rédigé
-
unarist a rédigé
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 a rédigé
-
りんすき a rédigé
* Fix #5314 * fix not beautiful code * fix broken design with mobile view * remove no longer needed code
-
unarist a rédigé
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 a rédigé
-
- oct. 25, 2017
-
-
Ratmir Karabut a rédigé
* 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ó a rédigé
-
Olivier Nicole a rédigé
-
- oct. 21, 2017
-
-
Marcin Mikołajczak a rédigé
-
- oct. 19, 2017
-
-
Nolan Lawson a rédigé
-
masarakki a rédigé
-
- oct. 18, 2017
-
-
Sho Kusano a rédigé
-
Eugen Rochko a rédigé
-
Renato "Lond" Cerqueira a rédigé
-
Technowix a rédigé
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 a rédigé
* 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 a rédigé
-
Yamagishi Kazutoshi a rédigé
-
JohnD28 a rédigé
Typo correction : https://fr.wikipedia.org/wiki/Heure#Typographie
-
- oct. 17, 2017
-
-
Eugen Rochko a rédigé
-
Jeroen a rédigé
* Dutch: A few strings I found last minute * Update simple_form.nl.yml
-
YaQ a rédigé
* Rename application.scss * Move to 'default' directory * Follow review Move directory, and Rename "mastodon". * Revert rename * undo removal of newline
-
Eugen Rochko a rédigé
-
JeanGauthier a rédigé
* 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 a rédigé
-
Eugen Rochko a rédigé
Fix #5356
-
Eugen Rochko a rédigé
-
unarist a rédigé
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 a rédigé
* Update oc.json * Update ca.json * Update fr.json * Update es.json
-
unarist a rédigé
-
Jakob Kramer a rédigé
-
Yamagishi Kazutoshi a rédigé
* yarn manage:translations * Add Japanese translation for #5410 * Add Japanese translation for #5393
-
Yamagishi Kazutoshi a rédigé
-
masarakki a rédigé
-
aschmitz a rédigé
* 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.
-