about summary refs log tree commit diff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* fix: small profile followup fixes (#8735)Elijah Seed-Arita2025-07-292-2/+3
| | | | | | | * fix: small profile followup fixes * fix: change platform-specific compensation for profileHeaderDisplayName marginBottom to target all native * fix: apply suggestion for consistent cross-platform profile username margin
* Fix parent read more occurring further up the tree (#8729)Eric Bailey2025-07-281-5/+10
|
* Fix blur handling (#8730)Eric Bailey2025-07-281-1/+2
|
* Ensure preference overrides cause re-renders (#8724)hailey2025-07-281-3/+6
| | | | | | | | | * make sure request is fetched before returning true * Ensure preferences object skips equality checks if overridden --------- Co-authored-by: Eric Bailey <git@esb.lol>
* Nightly source-language updatepfrazee2025-07-261-31/+36
|
* add web hook, action tweaks (#8723)hailey2025-07-251-0/+9
|
* fix type error (#8722)hailey2025-07-251-0/+3
|
* simplify logic for pull request OTAs (#8720)hailey2025-07-251-57/+24
| | | | | | | * simplify logic for pull request OTAs * just render deep link in the text * dont download update until approved
* fix final final final (#8719)hailey2025-07-242-7/+36
|
* Nightly source-language updatepfrazee2025-07-251-109/+133
|
* Merge pull request #8714 from ↵jim2025-07-242-5/+6
|\ | | | | | | | | internet-development/c/app-1332-handle-autocomplete-broken-for-handles-with-hyphens Fix some auto complete issues on mobile
| * fix some auto complete issuesChenyu Huang2025-07-242-5/+6
| |
* | OTA deployments on PR comment action (#8713)hailey2025-07-243-32/+173
| |
* | [APP-1157] disable searches for logged out users, prompt them to sign in (#8697)Chenyu2025-07-242-1/+109
| |
* | fix(lint): remove unused importCaidan Williams2025-07-241-1/+0
| |
* | feat(ui): increase the trending videos card sizeCaidan Williams2025-07-241-1/+1
| |
* | feat(ui): update TrendingVideos dismiss button styleCaidan Williams2025-07-241-3/+3
| | | | | | | | | | | | Changed the TrendingVideos dismiss button to use solid variant and square shape for improved visibility. Also set ButtonIcon size to "sm" for better alignment with the new button style.
* | feat(ui): remove the header iconCaidan Williams2025-07-241-6/+3
| | | | | | | | | | Replace the header's flex row with a single bold text element for "Trending Videos", removing the Graph icon and extra container.
* | fix(ui): adjust TrendingVideos padding and gap sizesCaidan Williams2025-07-241-3/+3
| | | | | | | | | | | | Reduced top padding from large to small and updated horizontal padding handling for the TrendingVideos component. Increased card gap and snap interval from small to medium.
* | feat(ui): add border to video post and trending cardsCaidan Williams2025-07-242-0/+10
| | | | | | | | | | | | Added a border and low contrast border color to CompactVideoPostCard, CompactVideoPostCardPlaceholder, and TrendingVideos card components for improved visual separation.
* | feat(ui): add shadow to video post trending cardsCaidan Williams2025-07-242-1/+3
| | | | | | | | | | | | | | Added a small shadow (shadow_sm) to the CompactVideoPostCard and the "View more" card in TrendingVideos for improved visual depth and consistency. This enhances the card appearance and aligns with the design system.
* | fix(ui): overflow for TrendingVideos scroll containerCaidan Williams2025-07-241-1/+3
| | | | | | | | | | | | | | Added overflow_hidden to the main container and set overflow_visible on the FlatList to ensure proper display of horizontally scrolling cards. This resolves clipping issues and improves the visual layout of trending videos.
* | feat(atoms): add overflow_visible utilityCaidan Williams2025-07-241-0/+3
| | | | | | | | | | | | Added the `overflow_visible` atom to the atoms utility object for setting CSS overflow to 'visible'. This complements the existing `overflow_hidden` atom and improves flexibility for layout styling.
* | style(ui): use larger border radius on video post cardCaidan Williams2025-07-242-4/+4
|/ | | | | Updated CompactVideoPostCard to use a larger border radius by replacing rounded_md with rounded_lg.
* fix: general profile component layout fixes, and ability to disable the ↵Elijah Seed-Arita2025-07-245-13/+20
| | | | inset border for UserAvatar (#8711)
* fix moderation preferences for non-AA'd users (#8712)hailey2025-07-242-7/+9
|
* Merge pull request #8708 from internet-development/@APiligrim/chat-request-uijim2025-07-231-11/+25
|\ | | | | [APP-1317] update: chat request ui to hide chat requests when there are no messages
| * update: comment with a nameAna2025-07-231-0/+1
| |
| * update: chat request uiAna2025-07-231-11/+24
| |
* | If birth date is not set, ensure AA still shows (#8709)Eric Bailey2025-07-231-1/+2
| |
* | [APP-1291] prevent GestureActionView from hijacking swipe in a direction ↵Elijah Seed-Arita2025-07-231-5/+10
| | | | | | | | | | | | which no actions are specified (#8705) Co-authored-by: hailey <hailey@blueskyweb.xyz>
* | Clean up AA gate (#8707)Eric Bailey2025-07-233-14/+6
| |
* | Replace `resumeSession` with `getSession` in the email check (#8670)Samuel Newman2025-07-237-65/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | * replace resumeSession with getSession * copy lil type tweak from the other PR * Add partialRefreshSession to session API context, use session state to infer state further down tree * Review --------- Co-authored-by: Eric Bailey <git@esb.lol>
* | Include app version in metrics (#8699)Eric Bailey2025-07-231-0/+3
| |
* | Nightly source-language updatepfrazee2025-07-231-41/+41
| |
* | feat(ui): remove like count from trending videos (#8689)Caidan2025-07-221-29/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * feat(ui): add showLikeCount flag to CompactVideoPostCard Introduced a showLikeCount flag to control the display of like count in the CompactVideoPostCard component. The like count is now only shown if both likeCount > 0 and showLikeCount are true. This allows for more flexible UI configurations and easier toggling of like count visibility. * fix(ui): hide gradient shadow when hiding like count * fix(ui): increase trending video profile pic size from 20 -> 24 * fix(ui): add small drop shadow to trending video profile pic * fix(ui): a.shadow_sm -> t.atoms.shadow_sm based on PR feedback
* | Release 1.105.0 (#8693)Paul Frazee2025-07-2146-19495/+32324
| | | | | | | | | | * Tests fixes * Pull latest translations
* | add margin between messages in the composer thread (#8691)Chenyu2025-07-211-0/+5
| |
* | Nightly source-language updatepfrazee2025-07-221-32/+31
| |
* | introduce context for "Following" as a feed name. (#8262) (#8690)Eric Bailey2025-07-212-2/+4
| | | | | | | | | | | | | | "Following" has different translations as a name of a feed and the state of following someone in other languages like Turkish. This allows "Following" as a feed name translated correctly. (cherry picked from commit d92a7f163ed9e28ee4ebab230758b1f00bdd9966) Co-authored-by: Sedat Kapanoğlu <sedat@kapanoglu.com>
* | tweak accessibility label (#8242)surfdude292025-07-211-1/+1
| |
* | add `action` context for `Repost` string in RepostButton.web.tsx (#8427)surfdude292025-07-211-2/+8
|/
* tweak app language names (#8436)surfdude292025-07-211-17/+17
|
* remove title casing of `Intl.DisplayNames` language names (#8433)surfdude292025-07-211-2/+1
|
* Nicer error message for backend video too large error (#8596)Samuel Newman2025-07-211-6/+12
| | | | | * nicer error message for backend video too large * use same string for same error
* fix emoji popup scroll (#8636)Samuel Newman2025-07-211-4/+6
|
* Follow redirects for soundcloud shortlinks (#8614)Samuel Newman2025-07-211-13/+19
| | | | | * follow redirects for soundcloud shortlinks * clear timeout in `finally`
* Nightly source-language updatepfrazee2025-07-191-37/+50
|
* Age assurance tweaks (#8671)Eric Bailey2025-07-182-7/+78
| | | | | | | * Refetch state while in pending status * Add success state to redirect, just have user close, nicer experience * Stop refetching after pending
* Handle missed error branch (#8663)Eric Bailey2025-07-181-7/+13
|