about summary refs log tree commit diff
path: root/src/view/com/modals/LinkWarning.tsx
Commit message (Collapse)AuthorAgeFilesLines
* Present in-app browser as sheet (#5718)Samuel Newman2024-10-111-1/+1
| | | | | | | * use page sheet presentation * move to its own file rather than sitting in prefs * whoops, missed one
* Open share sheet when long pressing link (#3317)Samuel Newman2024-04-041-14/+32
| | | | | | | | | | | | | | | | | | | | | * uitextview use library w/ fixes bump bump multiple uitextview fixes * bump * Open share sheet on link long press * rm package manager field * add link warning to longpress --------- Co-authored-by: Hailey <me@haileyok.com>
* Update src/view/com/modals/LinkWarning.tsxMinseo Lee2024-02-151-1/+1
| | | Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>
* Update src/view/com/modals/LinkWarning.tsxMinseo Lee2024-02-151-1/+1
| | | Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>
* Mark more texts for localizationMinseo Lee2024-02-141-2/+2
|
* (optional) In app browser (#2490)Paul Frazee2024-01-121-2/+4
| | | | | | | | | | | | | * add expo web browser + modal * add in app browser option to settings * don't show toggle on web * Tweak browser-choice UIs --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com>
* Fix some type errors (#1952)Eric Bailey2023-11-171-1/+3
| | | | | * Fix some low-hanging type errors * Override scrollRef types on profile
* Remove deprecated models and mobx usage (react-query refactor) (#1934)Paul Frazee2023-11-161-9/+2
| | | | | | | | | | | | | | | | | | | | | * Update login page to use service query * Update modal to use session instead of store * Move image sizes cache off store * Update settings to no longer use store * Update link-meta fetch to use agent instead of rootstore * Remove deprecated resolveName() * Delete deprecated link-metas cache * Delete deprecated posts cache * Delete all remaining mobx models, including the root store * Strip out unused mobx observer wrappers
* Internationalization & localization (#1822)Ansh2023-11-091-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | * install and setup lingui * setup dynamic locale activation and async loading * first pass of automated replacement of text messages * add some more documentaton * fix nits * add `es` and `hi`locales for testing purposes * make accessibilityLabel localized * compile and extract new messages * fix merge conflicts * fix eslint warning * change instructions from sending email to opening PR * fix comments
* Add modal state provider, replace usage except methods (#1833)Eric Bailey2023-11-081-4/+4
| | | | | | | | | | | | | * Add modal state provider, replace usage except methods * Replace easy spots * Fix sticky spots * Replace final usages * Memorize context objects * Add more warnings
* Warn the user on links that dont match their text (#1573)Paul Frazee2023-10-021-0/+162
* Add link warning modal when URLs do not match their text * Simplify the misleading link case for clarity * Fix typecheck * fix dark mode * Give a stronger visual indication of the root domain in the link warning * More rigorous URL mismatch logic * Remove debug --------- Co-authored-by: Ansh Nanda <anshnanda10@gmail.com>