about summary refs log tree commit diff
AgeCommit message (Collapse)Author
2017-04-07Fix npm/yarn cache cleaningFlorian Maunier
2017-04-07Merge pull request #1172 from mjankowski/mj-heroku-docsEugen
Update heroku instructions
2017-04-07Merge pull request #1183 from thoughtbot/cp-post-status-service-specsEugen
Add specs for PostStatusService
2017-04-07Merge pull request #1184 from thoughtbot/extract-proper-statusEugen
DRY up reblog vs original status check
2017-04-07Merge pull request #1192 from seekr/patch-2Eugen
typo
2017-04-07Merge pull request #1193 from thoughtbot/status-specsEugen
Implement pending specs on Status
2017-04-07Implement pending specs on StatusJoël Quenneville
Implement the two pending specs on `Status`: `reblogs_count` and `favourites_count`.
2017-04-07typoseekr
2017-04-07change suggested cipher for nginxEd Knutson
2017-04-07Use I18n for media attachment validation errorsChad Pytel
These are currently user facing errors, but are not localized. This adds the ability for these messages to be localized.
2017-04-07Add specs for PostStatusServiceChad Pytel
This implements all pending specs, and adds additional coverage for the following functionality: * Normal status creation * Creating a reply status * Creating a sensitive status * Creating a status with spoiler text * A status with no spoiler text gets an empty string for spoiler text * Creating a status with custom visibility * Creating a status for an application * Processing mentions * Processing Hashtags * Pinging PuSH hubs * Crawling links * Attaching media
2017-04-07DRY up reblog vs original status checkJoël Quenneville
Checking reblog vs original status was happening in multiple places across the app. For views, this logic was encapsulated in a helper method named `proper_status` but in the other layers of the app, the logic was duplicated. Because the logic is used at all layers of the app, we extracted it into a `Status#proper` method on the model and changed all uses of the logic to use this method. There is now a single source of truth for this condition. We added test coverage to untested methods that got refactored.
2017-04-07Add specs for media attachment validationsChad Pytel
There are currently not specs for the two media validations that are performed by `PostStatusService`. This adds specs for the validations that ensure that you cannot attach more than four files, and that a status cannot have both image and video attachments.
2017-04-07Update heroku instructionsMatt Jankowski
2017-04-07Merge branch 'master' into masterfoxiehkins
2017-04-07Moved into a comment per feedbackJason Rhodes
2017-04-07Merge pull request #1146 from tootsuite/fix-object-type-nil-exceptionEugen
Fix nil#object_type error
2017-04-07Merge pull request #1145 from tootsuite/feature-customized-default-localeEugen
Allow setting of default language through config
2017-04-07Merge branch 'master' into fix-object-type-nil-exceptionEugen
2017-04-07Merge branch 'master' into feature-customized-default-localeEugen
2017-04-07Fix nil#object_type errorEugen Rochko
2017-04-07Update Finnish translations, add sample Minio config (#954)Jantso Porali
2017-04-07Allow setting of default language through configEugen Rochko
Setting of locale in controller extracted to Localized concern, the doorkeeper authorized applications controller moved under custom namespace with inclusion of Localized, which resolves the "it sometimes appears in a different random language" bug
2017-04-07Re-add forgotten <author> element on standalone <entry>Eugen Rochko
2017-04-07Force UTF8 encoding on generated XML (#1140)Eugen
2017-04-07Rewrite Atom generation from stream entries to use Ox instead of Nokogiri ↵Eugen
(#1124) * Rewrite Atom generation from stream entries to use Ox instead of Nokogiri::Builder StreamEntry is now limited to only statuses, which allows some optimization. Removed extra queries on AccountsController#show. AtomSerializer instead of AtomBuilderHelper used in AccountsController#show, StreamEntriesController#show, StreamEntryRenderer and PubSubHubbub::DistributionWorker PubSubHubbub::DistributionWorker moves n+1 DomainBlock query to PubSubHubbub::DeliveryWorker instead. All Salmon slaps that aren't based on StreamEntry still use AtomBuilderHelper and Nokogiri * All Salmon slaps now use Ox instead of Nokogiri. No touch from status on account
2017-04-06Email service options :PJason Rhodes
Small addition in case people want email service options, sparkpost.com gives you 100k/mo free
2017-04-07Low-hanging fruit of query optimization, these indices were missingEugen Rochko
2017-04-06Merge pull request #1100 from mjankowski/mj-reduce-image-sizeEugen
Reduce size of background-photo.jpeg
2017-04-06Merge pull request #1103 from alimony/vagrant-tweaks-01Eugen
Add a couple of network performance tweaks to Vagrantfile.
2017-04-06Add a couple of network performance tweaks to Vagrantfile.Markus Amalthea Magnuson
2017-04-06Reduce size of background-photo.jpegMatt Jankowski
Reduced by running through `guetzli` image optimizer.
2017-04-06Merge pull request #1088 from Wonderfall/masterEugen
Add metadata to Dockerfile
2017-04-06add Docker microbadger to README.mdWonderfall
2017-04-06add metadata to DockerfileWonderfall
2017-04-06Merge pull request #1038 from wade-r/optimize-dockerfileEugen
Optimize Dockerfile
2017-04-06Merge pull request #1042 from johnsudaar/feature/scalingo_one_clickEugen
Cosmetic changes to the scalingo deployment
2017-04-06Merge branch 'master' into patch-1VirtuBox
2017-04-06Merge pull request #1048 from ashfurrow/slugignoreEugen
Updates slugignore
2017-04-06Merge pull request #1070 from alexgleason/patch-4Eugen
Linux users must enable NFS for Vagrant
2017-04-06Linux users must enable NFS for VagrantAlex Gleason
2017-04-06Updates slugignore.Ash Furrow
2017-04-06Optimize DockerfileRyan Wade
Optimize Dockerfile, reduce build time.
2017-04-06Update List-of-Mastodon-instances.mdMarkus R
2017-04-06Add mastodon.elao.com instanceGuewen FAIVRE
2017-04-06Add infinimatix.net to instance listDerek Lewis
2017-04-06Fix wrong pubsub channel on public timelinesEugen Rochko
2017-04-06Merge pull request #1013 from blackle/masterEugen
Catch more errors in process_follows so it doesn't fail
2017-04-06Fix notifications delivered to wrong pubsub channel, optimized ↵Eugen Rochko
RemoveStatusService, slightly optimized FanOutOnWriteService again
2017-04-05Catch more errors in process_follows so it doesn't failblackle