about summary refs log tree commit diff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Add French localization (#2265)Ansh2023-12-229-83/+2558
|
* Web composer improvements (#2257)Paul Frazee2023-12-202-2/+2
| | | | | * Keep the emoji picker in the tablet width (close #1880) * Support pressing tab to select a mention (close #1831)
* Fix the is13 check in account creation (close #2258) (#2259)Paul Frazee2023-12-201-1/+1
|
* Fix image is cropped in alt text modal (#1963)Kev2023-12-201-0/+1
|
* Restore autofocus on emoji drop down (#1821)Elie Michel2023-12-201-1/+1
|
* Invalid handle autocomplete (#2251)Samuel Newman2023-12-203-3/+6
| | | | | * refactor invalid handle check from a previous PR to use util function * add invalid handle check to `prefixMatch`
* Try to fix scroll indicator on Feeds page (#2245)Eric Bailey2023-12-192-0/+2
| | | | | * Try to fix scroll indicator on Feeds page * Apply to List
* Bump build numbers for ios and androidPaul Frazee2023-12-183-24/+39
|
* Use same source for pinned feeds on Home and tab/sidebars (#2235)Eric Bailey2023-12-182-4/+10
|
* Move label appeal to post dropdown (#2236)Eric Bailey2023-12-186-67/+132
| | | | | | | | | | | * Move appeal from post to dropdown * Translate * Tweak copy on the appeal label modal --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
* Add search button to logged out view (#2237)Eric Bailey2023-12-181-3/+44
|
* Set numberOfLines for Android text input (#2238)Eric Bailey2023-12-181-1/+7
| | | | | * Set numberOfLines for Android text input * Let's go with 4
* Tweak splash speed (#2241)Eric Bailey2023-12-181-13/+20
|
* Fix 2231 Modal overlap on double modal open (#2239)Ansh2023-12-181-1/+1
| | | | | * add same multiple snapPoints to Confirm modal * snapToIndex instead of confirm
* fix Create Account metrics (#2242)Ansh2023-12-183-6/+3
|
* use `s.likeColor` everywhere (#2234)Samuel Newman2023-12-182-11/+5
|
* Add credits to localization doc (#2233)Ansh2023-12-183-0/+3
| | | | | * change name of file to localization * run `intt:build`
* Fix `Logotype` fill for dark mode (#2230)Eric Bailey2023-12-185-6/+7
| | | | | * Fix fill of Logotype in dark mode * Update default Logotype fill
* Hide label appeal on self-labeled posts (#2232)Eric Bailey2023-12-182-2/+6
| | | | | * Hide appeal for self-labeled post, update copy * Use correct logic
* Fix & Add: Japanese Translation (3) (#2226)Hima2023-12-181-258/+258
|
* Fix: Some display issues (#2219)Hima2023-12-182-3/+2
| | | | | * Update LeftNav.tsx * Update RightNav.tsx
* Update splash screen tagline, update translations, bump ios build numberPaul Frazee2023-12-174-229/+268
|
* Tweaks (#2225)Eric Bailey2023-12-171-4/+4
| | | | | | | | | | | * Gradient * Tweak animation speed * Rotate * Linear * Linear
* Traffic reduction and tuned caching strats (#2215)Paul Frazee2023-12-158-150/+82
| | | | | | | | | | | | | * Update the feed to only check latest on focus after 30s, but to do a full reset on focus after 1 hour to avoid very stale data * Remove the isFeedPublic query * Fix: avoid double next-page fetches * Reduce some poll intervals to reduce server load * Guard against double-fires of fetchNextPage * Reduce polling on blurred screens
* Super secret changes don't look (#2218)Eric Bailey2023-12-151-16/+26
| | | | | * Swap in new assets * Refine
* Log post creation failures (#2205)Eric Bailey2023-12-142-0/+12
|
* Some brand, some pwi (#2212)Eric Bailey2023-12-147-154/+296
| | | | | | | | | | | | | | | * Add logo to left nav in logged out * Protect last routes * Hide links in left nav, hide nav * Replace bottom bar for pwi * Remove same links from drawer * Hide reply prompt * Allow search
* 🤫 (#2211)Eric Bailey2023-12-1412-66/+292
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add new assets * Add splashiness * Add butter icon, spread it * Cream together eggs, sugar, and vanilla * Hi, I'd like to place and order. Yeah, none pizza with left beef, plz. * test * Refine animation * tweak * tweak * tweak * Tweak * Simplify * Cleanup * Fix android logo --------- Co-authored-by: Ansh Nanda <anshnanda10@gmail.com>
* PWI behavior updates (#2207)Paul Frazee2023-12-1422-438/+834
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Enable PWI * Disable access to feeds on PWI * Remove feeds nav item from drawer when signed out * Replace discover feed on home with a CTA * Wire up the sign in and create account buttons to go straight to their respective screens * Give a custom ScreenHider interface for no-pwi * Add side borders on desktop to the screen hider * Filter accounts in the autocomplete according to mod settings * Trim replies in the post thread that are pwi opt-out * Show 'learn more' on the content hider when no-override is enabled * Apply the moderation filter on profile cards * Disable post search on logged-out view * Update locale files * Bump api pkg * Ensure feeds with no posts don't show as NSFPublic * Fix types --------- Co-authored-by: Eric Bailey <git@esb.lol>
* Make scroll handling contextual (#2200)dan2023-12-1326-354/+280
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add an intermediate List component * Fix type * Add onScrolledDownChange * Port pager to use onScrolledDownChange * Fix on mobile * Don't pass down onScroll (replacement TBD) * Remove resetMainScroll * Replace onMainScroll with MainScrollProvider * Hook ScrollProvider to pager * Fix the remaining special case * Optimize a bit * Enforce that onScroll cannot be passed * Keep value updated even if no handler * Also memo it
* Revert change to how notifications are loaded on mobilePaul Frazee2023-12-131-2/+2
|
* 1.59Paul Frazee2023-12-133-24/+24
|
* Feed bugfixes (#2204)Paul Frazee2023-12-133-4/+15
| | | | | * Dont show both an error and empty message in the feed * Add a sanity check when attempting to fill the first 30
* More notifications improvements (#2198)Paul Frazee2023-12-134-28/+27
| | | | | * On mobile, never replace the notifs under the user due to focus events * Use the server's seenAt response to calculate isRead state locally
* Rework the rightnav overflow behavior to not obscure the scroll region (#2199)Paul Frazee2023-12-131-67/+65
|
* Hotfix: Merge conflict in translation file (#2203)Ansh2023-12-136-7564/+127
| | | | | * remove unused translation files * re-run extract and compile
* Memoize usePalette (#2201)dan2023-12-131-34/+38
|
* Add fallback to email reminder modal (#2193)Eric Bailey2023-12-122-0/+17
| | | | | * Add fallback to email reminder modal * Add more debug
* Clean up pager refs to fix crash (#2195)dan2023-12-121-12/+23
|
* Re-rendering improvements for like/unlike (#2180)dan2023-12-127-87/+160
| | | | | | | | | | | | | | | * Add a few memos * Memo PostDropdownBtn better * More memo * More granularity * Extract PostContent * Fix a usage I missed * oops
* add scrollview to moderation screen (#2187)Ansh2023-12-121-72/+75
|
* disable modal profile popup android (#2188)Ansh2023-12-121-2/+2
|
* Go back to content-driven slice keys in feeds (#2190)Paul Frazee2023-12-122-11/+11
| | | | | * Go back to deterministic react keys * Quick fix to cases when custom feeds serve empty responses
* Japanese localization (#2003)Ansh2023-12-137-14/+2429
| | | | | | | | | | | | | | | | | | | | | | | | | | * add japanese to list of languages * add japanese translations * change `jp` to `ja` * minor changes to Japanese translation * minor changes to Japanese translation * update japanese strings with feedback * Update languages.ts * Extract translations * Gitignore new compiled file * allow switching to japanese --------- Co-authored-by: Jake Gold <jake@blueskyweb.xyz> Co-authored-by: Eric Bailey <git@esb.lol>
* Fix View Full Thread (#2181)dan2023-12-121-5/+5
|
* Make right nav scrollable on short screens (#2186)Eric Bailey2023-12-121-60/+63
|
* Stub broadcast channel for unspported contexts (#2175)Eric Bailey2023-12-123-12/+15
|
* i18n settings improvements (#2184)Eric Bailey2023-12-127-39/+79
| | | | | | | | | * Handle language selector * Improve type safety * Add a little more safety * Update comment
* 1.58Paul Frazee2023-12-112-100/+100
|
* Double the footer on the list members flatlistPaul Frazee2023-12-111-1/+1
|