about summary refs log tree commit diff
path: root/app
AgeCommit message (Collapse)Author
2018-04-23Paginate descendant statuses in public page (#7148)Akihiko Odaki
2018-04-23🌍: Make 🇵🇱 translation more consistent (#7239)Marcin Mikołajczak
Signed-off-by: Marcin Mikołajczak <me@m4sk.in>
2018-04-23Update dependencies for Ruby (2018-04-23) (#7237)Yamagishi Kazutoshi
* Update annotate to version 2.7.3 * Update aws-sdk-s3 to version 1.9.2 * Update browser to version 2.5.3 * Update capistrano to version 3.10.2 * Update domain_name to version 0.5.20180417 * Update http to version 3.2.0 * Update lograge to version 0.10.0 * Update oj to version 3.5.1 * Update parallel_tests to version 2.21.3 * Update puma to version 3.11.4 * Update rubocop to version 0.55.0 * Update scss_lint to version 0.57.0 * Update simplecov to version 0.16.1 * Update tty-command to version 0.8.0 * Update tty-prompt to version 0.16.0 * Update pkg-config to version 1.3.0 * Update fog-local to version 0.5.0 * Update fog-openstack to version 0.1.25 * Update devise-two-factor to version 3.0.3 * bundle update
2018-04-23Detect and prevent image bombs, max. processable dimension 4096^2 (#7229)Eugen Rochko
2018-04-23Refactor resizeImage method (#7236)Yamagishi Kazutoshi
- Use URL.createObjectURL (replace from FileReader) - Use HTMLCanvasElement.prototype.toBlob (replace from HTMLCanvasElement.prototype.toDataURL) - Use Promise (replace callback interface)
2018-04-23Improve relative timestamps in web UI (#7233)Eugen Rochko
Use short instead of numeric month, display year when different year E.g.: "Apr 4" instead of "4/4", "Apr 4, 2017" if different year
2018-04-23Resize images before upload in web UI to reduce bandwidth (#7223)Eugen Rochko
* Resize images before upload in web UI to reduce bandwidth Fix #7218 * Fix issues * Do not resize GIFs in JS
2018-04-22[Glitch] Fix the hot key (j, k) does not function correctly when there is a ↵Thibaut Girka
pinned toot in account timeline. Port 23106844a10606dd0e04c8382281d5ff80d4bdd9 to glitch-soc
2018-04-22[Glitch] Do not set emoji as inline-blockThibaut Girka
Port 597948fb1316d2e1de76be330db441786c571132 to glitch-soc
2018-04-22Remove "nsfw" category for sensitive statuses in OStatus serializer (#7048)Eugen Rochko
Fix #7011
2018-04-22[Glitch] Do not overwrite some status attributes in reducerThibaut Girka
Backport 386365090c9c9063941e3f7425c2e33c7d5c5b2a
2018-04-22Add show more/less toggle for entire threads in web UIThibaut Girka
Inspired from b6003afcdb1b89eb967a2b211e3b4e26aed9ac9d but using component properties instead of redux store for hidden/revealed state.
2018-04-22Refactor the infamous three-valued boolean into two booleans, trying to ↵Thibaut Girka
simplify the logic
2018-04-22[Glitch] Fix style of legacy column headersThibaut Girka
Backports daefbd66a653b11a17be73b7b0a4ca200b466cec
2018-04-22[Glitch] Fix button hiding when header title is too longThibaut Girka
Port ffb2b8ef8c3c7cd6f57860240378fac8d5964105 to glitch-soc
2018-04-22[Glitch] Fix column headers accessibilityThibaut Girka
Port 08e4c78e78358c2847967e9cc34b4a6497be97e2 to glitch-soc. SCSS fix inspired by 69f13e7bca90f4855e05a49dd69bba66f843134a.
2018-04-22Merge pull request #432 from ThibG/glitch-soc/features/reblog-privatebeatrix
Glitchsoc-specific changes to allow boosting own private toots
2018-04-22Merge pull request #421 from ThibG/glitch-soc/features/custom-emoji-apibeatrix
[Glitch] retrieve custom emoji list via API instead of before page load
2018-04-22Merge pull request #427 from ThibG/glitch-soc/fixes/scroll-behaviorbeatrix
Improve ScrollableList behavior
2018-04-22Merge pull request #434 from ThibG/glitch-soc/fixes/public-inline-videobeatrix
Fix video player on toot public views
2018-04-22Merge pull request #433 from ThibG/glitch-soc/fixes/status-filteringbeatrix
Status filtering fixes from upstream
2018-04-22Merge pull request #435 from ThibG/glitch-soc/features/public-modalsbeatrix
[Glitch] Show media modal on public pages
2018-04-22Add fade and margin to collapsed statusesUna Thompson
2018-04-22Rescue Mastodon::LengthValidationError in Remoteable (#7228)Eugen Rochko
Fix #7198 by allowing records with optional attachments to save
2018-04-22Fix text colors (#7227)Lynx Kotoura
2018-04-22Do not set emoji as inline-block (fixes #5743) (#7207)ThibG
2018-04-21Separate high contrast theme (#7213)Lynx Kotoura
2018-04-21Force convert to JPG for preview card thumbnails to avoid animations (#7109)Eugen Rochko
* Force convert to JPG for preview card thumbnails to avoid animations Fix #7093 * Conditionally convert to JPG only if original is GIF Coalesce and strip on all formats to ensure no animated APNGs
2018-04-22one grammar fix (#7212)goofy-bz
2018-04-20Ignore keyevents during text composition (#7205)unarist
KeyboardEvent.key may be physical key name (Escape, Tab, etc.) even in text composition and it causes hotkeys or suggestion selection. So we need to check e.which or e.isComposing. Checking e.which also allows us to avoid Esc key on compositionend in Safari.
2018-04-20Fix spec for sr-Latn (#7203)Yamagishi Kazutoshi
2018-04-20Fix the hot key (j, k) does not function correctly when there is a pinned ↵TakesxiSximada
toot in account timeline. (#7202) * Fix the hot key (j, k) does not function correctly when there is a pinned toot in account timeline. * Fix typo * Add custom attribute prefix
2018-04-20Fix video player on toot public viewsThibaut Girka
2018-04-20[Glitch] Show media modal on public pagesThibaut Girka
Port ff7941e652af1d54d9c991254556e7932a8b183c to glitch-soc
2018-04-20Fix #6157: boosting own private toots (#7200)mayaeh
* Fix boosting own private toots. * Run yarn manage:translations and update Japanese translations.
2018-04-20Fix Esc hotkey behavior (#7199)unarist
This fixes following cases which causes hotkey action accidentally: * hitting Esc key to cancel text composition (mostly in CJK) Although events on cancelling composition are still heavily browser / input method dependent, but this implementation would covers current UI Events spec and some exceptions. * hitting Esc key to close autocomplete suggestions This PR changes to use keydown event instead of keyup event as well as other hotkeys.
2018-04-20Improve report layout (#7188)Eugen Rochko
* Use table for statuses in report * Display reported account and reporter in the same table * Split accounts and general report info into two tables again * Redesign report statuses table, notes, merge notes and action log * Remove unused translations * Fix code style issue * Fix code style issue * Fix code style issue
2018-04-20Replace preload link tag to Rails helper (#7192)Yamagishi Kazutoshi
2018-04-19Merge remote-tracking branch 'tootsuite/master' into glitchsoc/masterJenkins
2018-04-19Fix webkit scrollbars (#7191)beatrix
* Revert "Make scroll bars wider (#7060)" This reverts commit 11715454d033784bf6176b75a954e5c28b5d79e5. * for real make webkit scrollbar wider
2018-04-19[Glitch] Fix status filtering in contexts reducerThibaut Girka
Port 1a37d7e252aa41fd1c66e780e1a2a1426d8f3545 to glitch-soc
2018-04-19[Glitch] Do not filter the status collection after muting and blockingThibaut Girka
Port fd87e5a53bcaafb886a675c76e9256015e9db897 to glitch-soc
2018-04-19Reports: Merge contents and comment columns (#7189)Emelia Smith
2018-04-19Fix auto-collapsed toots making the TL jump (fixes #417)Thibaut Girka
2018-04-19Clean up dead codeThibaut Girka
2018-04-19Use React's new lifecycles for scrollable listsThibaut Girka
2018-04-19Glitchsoc-specific changes to allow boosting own private tootsThibaut Girka
2018-04-19Only compute height dynamically for standalone mediaThibaut Girka
This prevents changing the status' height and triggering jumps in the TL
2018-04-19[Glitch] Make detailed status' media gallery standaloneThibaut Girka
2018-04-19[Glitch] Center thumbnails on focus pointThibaut Girka
Port the display part of the following commits to glitch-soc: * 90f12f2e5a41115a9a756f9dd38054736080d4f9 * b170627ceb8838c358aef1fcca9673ce4aa61ab8 * 11697d68942db7b97a4c7384e4fb4148a97b9122 * 56eb5c3f344f0342ac6f26a05748bc21c585a729