Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-07 | Fix unintended cache (#6214) | Yamagishi Kazutoshi | |
2018-01-07 | Update Simplified Chinese translations (#6215) | SerCom_KC | |
* i18n: (zh-CN) Add translations of #6125 * i18n: (zh-CN) Add translations of #6132 * i18n: (zh-CN) Add translations of #6099 * i18n: (zh-CN) Add translations of #6071 * i18n: (zh-CN) Improve translations | |||
2018-01-07 | Merge remote-tracking branch 'ykzts/fix-unintended-cache' into gs-master | David Yip | |
2018-01-07 | Fix unintended cache | Yamagishi Kazutoshi | |
2018-01-07 | Merge remote-tracking branch 'tootsuite/master' into glitchsoc/master | Jenkins | |
2018-01-07 | Translate Korean (#6212) | Jeong Arm | |
2018-01-06 | Fixes to search dropdown | kibigo! | |
2018-01-06 | fix typo in vanilla names.yml | beatrix | |
2018-01-06 | fixed ctrl enter | Ondřej Hruška | |
2018-01-06 | Fix the always-threaded bug | Ondřej Hruška | |
2018-01-07 | Update ja.js | ncls7615 | |
2018-01-06 | Merge pull request #296 from glitch-soc/thread-mode | beatrix | |
Threaded mode~ | |||
2018-01-06 | Merge pull request #302 from KnzkDev/fix/search-popout | beatrix | |
Fix search popout | |||
2018-01-06 | appease eslint | beatrix | |
2018-01-06 | Fix search popout | ncls7615 | |
2018-01-06 | Read max_toot_chars from root object. Fixes #297. | David Yip | |
max_toot_chars is present in the root of the initial state object. (Previously, we were trying to read it from the meta child object.) | |||
2018-01-05 | my global .gitignore excluded this file ;_; | kibigo! | |
2018-01-05 | Threaded mode~ | kibigo! | |
2018-01-05 | Fixed improper dropdown func binding for #293 + toot button spacing | kibigo! | |
2018-01-05 | Styling and autosuggest fixes for #293 | kibigo! | |
2018-01-05 | Fixes composer mounting issue with #293 | kibigo! | |
2018-01-05 | Merge remote-tracking branch 'personal/merge/tootsuite/master' into gs-master | David Yip | |
2018-01-05 | Merge pull request #290 from chriswmartin/web-push-updates | beatrix | |
Web push updates | |||
2018-01-05 | Merge pull request #295 from chriswmartin/getting-started-key-fix | beatrix | |
unique ColumnLink keys in getting_started | |||
2018-01-05 | Merge pull request #293 from glitch-soc/compose-refactor | beatrix | |
Compose refactor | |||
2018-01-05 | Merge remote-tracking branch 'tootsuite/master' into glitchsoc/master | Jenkins | |
2018-01-05 | Fix PuSH workers (#6200) | ThibG | |
2018-01-05 | When fetching an ActivityPub-enabled status, do not re-request it as ↵ | ThibG | |
text/html (#6196) | |||
2018-01-05 | Represent numbers by strings in instance activity API (#6198) | TheKinrar | |
Fixes #6197. | |||
2018-01-05 | Fixed overflow issue | kibigo! | |
2018-01-05 | Styling fixes | kibigo! | |
2018-01-05 | Merge pull request #243 from m4sk1n/glitch-pl | beatrix | |
i18n: 🇵🇱 | |||
2018-01-05 | add key to lists div | cwm | |
2018-01-05 | change how list ColumnLink keys are determined | cwm | |
2018-01-05 | l10n Occitan language: mailer update (#6193) | Quenty31 | |
* Create email_changed.oc.html.erb * Create email_changed.oc.text.erb * Update email_changed.oc.html.erb * Update email_changed.oc.html.erb * Create reconfirmation_instructions.oc.html.erb * Create reconfirmation_instructions.oc.text.erb * Update confirmation_instructions.oc.html.erb * Update confirmation_instructions.oc.text.erb * Update confirmation_instructions.oc.html.erb * Update reconfirmation_instructions.oc.html.erb * Update reconfirmation_instructions.oc.text.erb * Update reconfirmation_instructions.oc.html.erb | |||
2018-01-04 | WIP <Compose> Refactor; Fin~ | kibigo! | |
2018-01-05 | Fix RFC 5646 Regular Expression (#6190) | Yamagishi Kazutoshi | |
2018-01-04 | WIP <Compose> Refactor; 1000 tiny edits | kibigo! | |
2018-01-04 | WIP <Compose> Refactor; <ActionsModal>; dropdowns | kibigo! | |
2018-01-04 | WIP <Compose> Refactor; SCSS ed. | kibigo! | |
2018-01-04 | WIP <Compose> Refactor; <OnboardingModal> ed. | kibigo! | |
2018-01-04 | WIP <Compose> Refactor; <Drawer> ed. | kibigo! | |
2018-01-04 | WIPgit status <Compose> Refactor; <Composer> ed. | kibigo! | |
2018-01-04 | Merge remote-tracking branch 'tootsuite/master' into glitchsoc/master | Jenkins | |
2018-01-05 | Small translation fixes for Serbian (and sr@Latn too) (#6188) | Branko Kokanovic | |
2018-01-05 | Fix email confirmation link not updating email (#6187) | Patrick Figel | |
A change introduced in #6125 prevents `Devise::Models::Confirmable#confirm` from being called for existing users, which in turn leads to `email` not being set to `unconfirmed_email`, breaking email updates. This also adds a test that would've caught this issue. | |||
2018-01-04 | Fix overflowing audit logs (#6184) | Lynx Kotoura | |
2018-01-04 | Fix accessibility of column headers | Nolan Darilek | |
As a screen reader user new to Mastodon, I encountered the following issues with the column headers as designed: * Jumping between them was difficult. FOr instance, passing my home timeline to reach notification settings was difficult to impossible, especially considering infinite scrolling. * There doesn't appear to be any means for triggering the control via the keyboard. the `titleClick` handler only responds to mouse clicks. * I didn't even realize there was a Settings toggle until I made this change. Thanks for using ARIA in your designs. It's a huge help. But adding a `button` role doesn't add keyboard handling and other button behavior. Also, because the role was on the heading container, it obscured the controls within the container itself. This fix resolve that. It also exposes the headings as headings rather than buttons, enabling skipping columns by using screen readers' heading navigation commands. Since I myself am blind, if this fix requires additional visual styling, I'd like help applying that so it can be merged. I'd consider it an essential accessibility fix for my and other blind users' existence on the platform. Thanks! | |||
2018-01-04 | Fallback default thumbnail in instance status API (#6177) | Yamagishi Kazutoshi | |
2018-01-04 | i18n: Update Polish translation | Marcin Mikołajczak | |
Signed-off-by: Marcin Mikołajczak <me@m4sk.in> |