about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features
AgeCommit message (Collapse)Author
2018-07-12Add an option restricting secondary toot privacy to that of the toot being ↵Thibaut Girka
replied to
2018-07-12Use options rather than a booleanThibaut Girka
This prepares for a third option that would restrict privacy to privacyPreference(replyPrivacy, sideArmBasePrivacy)
2018-07-12Do not store duplicate reply_privacyThibaut Girka
2018-07-12add option to enable auto visibility on secondary toot buttonAsh Levy
2018-07-10Display reply indicator even when replying to contentless toot (fixes #564)Thibaut Girka
2018-07-10[Glitch] Fix filters not affecting notifications in web UIThibaut Girka
Port cfeb3beb4e1c3a05392546e6e4584de537049989 to glitch-soc
2018-07-10Add client-side custom filter support to glitch-socThibaut Girka
Port cdb101340a20183a82889f811d9311c370c855e5 to glitch-soc, but without dropping support for regexp filters yet.
2018-07-10add keybind in composer textarea for secondary submitAsh Levy
2018-06-21[Glitch] Submit report using meta keyThibaut Girka
Port 64d7a63f1830e970a6196448cae443ca5d55d1f9 to glitch-soc
2018-06-16[Glitch] Add redraft functionThibaut Girka
Port bd0791d800902cdbdf6666e65d201df3ec22789c to glitch-soc
2018-06-12Port emojimart 2.6.1 changes to glitch flavourDavid Yip
See also the following commits: - 0c3ce41031d292734e0e4cc70d227228d1993bea - 268d90e8103770e8b90f6d5680a466c1ec83c6ff
2018-06-06Merge pull request #509 from ThibG/glitch-soc/fixes/router-history-navigationDavid Yip
Use history.state to decide whether we should goBack() or go to / (fixes #247)
2018-05-31Make active bookmarks red (fixes #493)Thibaut Girka
2018-05-31Use history.state to decide whether we should goBack() or go to / (fixes #247)Thibaut Girka
So far, glitch-soc used history.length to decide whether to call `goBack()` or go to / in order to not leave the webUI. This made clicking the “Back” button go to the “Getting started” column instead of going back in the browser's history when such an action would leave the web UI, but also when: - The WebUI is refreshed (F5) - A tab is restored - The history length reaches its maximum (e.g., 50 in Firefox) This commit fixes these shortcomings by checking `window.history.state`. Indeed, we only want to go back in the browser's history when the current location has been reached from within the WebUI, which only happens via `pushState` as far as I know. Since browser store the serialized state in the browser history, this also survives page reload and session restoration.
2018-05-31Use props.router instead of context.router, as we are using withRouterThibaut Girka
2018-05-31Fix direct timelineThibaut Girka
2018-05-29[Glitch] Fix low-contrasted cancel button of reply indicatorThibaut Girka
Port 86efccce2a874d16aa783d989ff4824bcfac40b5 to glitch-soc
2018-05-29[Glitch] Improve load gap styling in web UIThibaut Girka
Port 45c9f16f714dd6de15391b5e2ae2bf0d30ef20fb to glitch-soc
2018-05-29[Glitch] Do not crash in getStatusIds when there is a gap in the timelineThibaut Girka
Port b1938d7853f1d52f9bd99244c550cc609dd81202 to glitch-soc
2018-05-29[Glitch] Fix LoadMore on account media galleryThibaut Girka
Port 3523aa440ba3f52bf28fe1e9707506d327c4431f to glitch-soc
2018-05-29[Glitch] Allow clients to fetch notifications made while they were offlineThibaut Girka
Port cbf97c03bba35a642e6f1d1a698aad7a69ad13a3 to glitch-soc
2018-05-29[Glitch] Allow clients to fetch statuses made while they were offlineThibaut Girka
Port 9a1a55ce526c956ac6b35897d483c316b7ad4394 to glitch-soc
2018-05-27[Glitch] Replace onScrollToBottom with onLoadMoreThibaut Girka
Port b0664a5e6cee9be602098fb9a2f98a9e61b2ab9b to glitch-soc
2018-05-27Do not needlessly refresh pinned tootsThibaut Girka
Port missing part of 6ae70a92c91233d4c299e679b3e04ba8e2a7002f to glitch-soc
2018-05-27[Glitch] Change icon for domain blocksThibaut Girka
Port fa04945365bc552748b9d312f936a74cfd8d35b1 to glitch-soc
2018-05-27[Glitch] Add option to show only local toots in timeline previewThibaut Girka
Port missing changes from 4e4f1b0dcb386464d653fcce765ca775e566a03c to glitch-soc
2018-05-27[Glitch] Use streaming API for standalone timelines on /about and /tag pagesThibaut Girka
Port 0128b86d3098042cdbc3a1629f74b70f665f8dfb to glitch-soc
2018-05-27Change direct message warning to match upstreamThibaut Girka
2018-05-27Port upstream's result section headers (fixes #366)Thibaut Girka
2018-05-26Fix caret position after inserting suggestions (fixes #281)Thibaut Girka
2018-05-26Remove unneeded code now that attachment URL isn't appended to tootsThibaut Girka
2018-05-25[Glitch] Use .star-icon instead of hardcoding color in detailed statusesThibaut Girka
Port 2587fcdd27613e52d620e3c93bb089932be48db0 to glitch-soc
2018-05-17[Glitch] Open video modal on public UIThibaut Girka
Port d9b2f84c92f24067b12be81837240bf6c8930236 to glitch-soc
2018-05-16Merge pull request #405 from ThibG/glitch-soc/features/dm-from-menuThibG
[Glitch] Feature: Direct message from menu
2018-05-16[Glitch] Reword the direct message warningThibaut Girka
Port 53c2164e9c8e2538de386a526a97db187ecae470 to glitch-soc
2018-05-16[Glitch] Feature: Direct message from StatusesThibaut Girka
Port 904a2479dd2085dfc94f33746ad6f7a755e72609 to glitch-soc
2018-05-16[Glitch] Feature: Direct message from menuThibaut Girka
Port d1f34151aee564bb1e60ee48107797681c869a81 to glitch-soc
2018-05-15Fix modals testing for props.noEsc (fixes #482)Thibaut Girka
2018-05-11Merge pull request #479 from ThibG/glitch-soc/fixes/modal-root-keyupThibG
Fix root modal's keyup handling (Fixes #478)
2018-05-11Fix root modal's keyup handling (Fixes #478)Thibaut Girka
2018-05-10[Glitch] Use plaintext value for field value tooltips in web UIThibaut Girka
Port d185f3ddafc941e280de7efc6d448449ab5ce2c9 to glitch-soc This doesn't change anything for glitch-style fields, but those will go away eventually
2018-05-10Add bot badge to account headers in the WebUIThibaut Girka
2018-05-10Adapt account fields rendering code in the WebUI to match upstreamThibaut Girka
2018-05-07Hide media in report modal regardless of whether they are marked sensitiveThibaut Girka
The rationale behind this is that if the user wants to report violent media, they might not want to see it repeatedly. The “sensitive” property is still kept, displaying different messages for hidden media depending on whether they are marked as sensitive.
2018-05-07[Glitch] Also display replies in report modalThibaut Girka
Port c88e12fca622c46a361a5c751a529e77aa5bf2ba to glitch-soc
2018-05-06Merge pull request #461 from ThibG/glitch-soc/fixes/emoji-picker-placementbeatrix
[Glitch] Place emoji picker top if it is closer to the bottom of the viewport
2018-05-05[Glitch] Place emoji picker top if it is closer to the bottom of the viewportThibaut Girka
Port ad5d3134e406c2bcfceca6a1b7dd3dceb6ec1061 to glitch-soc
2018-04-29Implement tootsuite-style account fieldsThibaut Girka
glitch-soc-style still in backup, both sharing the same SCSS style
2018-04-26Merge pull request #401 from ThibG/glitch-soc/features/unfold-threadbeatrix
Port the “unfold thread” feature from Mastodon's UI to glitch-soc flavour
2018-04-23Fix actions modal on mobile (fixes #441)Thibaut Girka