about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Reapply "Modify hosting provider text for better localization" (#7928)Minseo Lee2025-04-011-19/+17
| | | | | | | | | * Update HostingProvider.tsx * Update src/components/forms/HostingProvider.tsx --------- Co-authored-by: Hailey <hailey@blueskyweb.xyz>
* Translate number joined starter pack string and add plural formatting (#7984)surfdude292025-04-012-6/+11
| | | | | | | | | | | * translate number joined starter pack string * also add plural formatting in StarterPackScreen.tsx * import Plural * tweak * tweak
* Add plural formatting for `STARTER_PACK_MAX_SIZE` toast (#8000)surfdude292025-04-011-3/+4
| | | | | | | * add plural formatting for starter pack max size toast * tweak * try again
* add plural formatting for too long handle error (#7999)surfdude292025-04-011-2/+6
|
* Add plural formatting for "too long" error messages when editing profile ↵surfdude292025-04-011-5/+11
| | | | | | | | | info (#7998) * add plural formatting for profile max graphemes errors * add missing tag * simplify
* [Reactions] Get reactions in chat list working again with new lexicon (#8093)Samuel Newman2025-04-015-74/+81
| | | | | * get chat list reactions working again with new lexicon * fix weird android bug where background wasn't clipped
* Fix loading jumps and footer on feeds tab (#8063)Samuel Newman2025-04-013-81/+86
| | | | | * Fix loading jumps and footer on feeds tab * same for lists/starter packs
* Fix suggested follows scrolling (#8036)Eric Bailey2025-04-011-28/+30
|
* add `msg` macro in EmojiPopup.android.tsx (#8091)surfdude292025-04-011-3/+3
|
* fix warnings (#8092)Samuel Newman2025-04-012-3/+3
|
* Fix broken error screen in DMs (#8071)Samuel Newman2025-04-011-9/+18
|
* Nightly source-language updatepfrazee2025-03-291-34/+91
|
* Remove double decode of URI (#8068)Jason Culverhouse2025-03-281-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | At this point the URI is already decoded and decoding again will alter the uri ``` let link = req.query.u ``` example of a link that has `%` encoding... the initial redirect link is properly encoded. ``` curl -vv "https://go.bsky.app/redirect?u=https%3A%2F%2Fsurf.social%2Ffeed%2Fsurf%252Fcustom%252F01jpz5vyjwvw5yaa8bfkha5xn4" ``` The result is "double decoded", the proper link in this case should be `https://surf.social/feed/surf%2Fcustom%2F01jpz5vyjwvw5yaa8bfkha5xn4` ``` <html><head><meta http-equiv="refresh" content="0; URL='https://surf.social/feed/surf/custom/01jpz5vyjwvw5yaa8bfkha5xn4'" /><style>:root { color-scheme: light dark; }</style></head></html> ``` After changes: ``` curl -s "http://localhost:3000/redirect?u=https%3A%2F%2Fsurf.social%2Ffeed%2Fsurf%252Fcustom%252F01jpz5vyjwvw5yaa8bfkha5xn4" <html><head><meta http-equiv="refresh" content="0; URL='https://surf.social/feed/surf%2Fcustom%2F01jpz5vyjwvw5yaa8bfkha5xn4'" /><style>:root { color-scheme: light dark; }</style></head></html> ```
* Preload emoji picker data for reactions on web (#8079)Eric Bailey2025-03-282-0/+27
| | | | | * Preload emoji picker data for reactions on web * Sort imports
* Put applied reactions inside context menu wrapper on native (#8078)Eric Bailey2025-03-281-71/+72
|
* Design tweaks to applied reactions (#8077)Eric Bailey2025-03-281-4/+8
| | | | | * Adjust styles of applied reactions * Tweaks for applied reactions styles
* Some design tweaks to web emoji picker (#8076)Eric Bailey2025-03-283-48/+96
| | | | | | | | | * Tighten up and reverse action items on web * Tweak web styles for emoji bar * Might as well make disabled more obvious * Format
* [DMs] Reactions - link up API (attempt 2) (#8074)Samuel Newman2025-03-2817-123/+659
| | | | | | | | | | | | | | | | | | | | | | | | | | | * update package * wire up APIs * get reactions to display * allow removing emoji * handle limits better * listen to reactions in log * update convo list with reactions * tweaks to reaction display * Handle empty message fallback case * update package * shift reacts up by 2px --------- Co-authored-by: Eric Bailey <git@esb.lol>
* [DMs] Emoji reaction picker (#8023)Samuel Newman2025-03-2816-198/+698
|
* Nightly source-language updatepfrazee2025-03-281-41/+41
|
* Instrument signup (#8037)Samuel Newman2025-03-278-57/+182
|
* Allow selecting `ContextMenu` options via press-and-hold (#8020)Samuel Newman2025-03-273-103/+332
| | | | | | | | | * save locations of menu items * enable panning to select items * rm unused type * fix haptic overfiring
* Make sure Sentry's auth token is set on process (#8040)Eric Bailey2025-03-274-3/+4
| | | | | * Make sure Sentry's auth token is set on process * Pass in token explicitly
* fix people list footer (#8039)Samuel Newman2025-03-271-11/+18
|
* Nightly source-language updatepfrazee2025-03-251-72/+72
|
* make the sidebar smaller when offset, reduce total offset (#8052)Samuel Newman2025-03-243-5/+9
|
* Extract center column offset, reduce by 20px (#7974)Samuel Newman2025-03-246-7/+19
| | | | | * extract offset, reduce by 20px * move constant to `Layout/const.ts`
* fix:Conversations don't refresh when going offline and back online (#7985)omar04042025-03-241-3/+8
|
* Revert "Small revert to be on the safe side (#7932)" (#7958)Samuel Newman2025-03-244-28/+41
| | | This reverts commit 0014b8b9cd0a5858ea7fad31361e5b611296e912.
* change touch device detection method (#5919)Bas van den Wollenberg2025-03-241-2/+1
|
* haptics on external link card (#8049)Samuel Newman2025-03-241-4/+12
|
* Nightly source-language updatepfrazee2025-03-221-18/+39
|
* bump version to 1.100.0 (#8038)Samuel Newman2025-03-211-1/+1
|
* New `ContextMenu` menu type for DM messages (#8014)Samuel Newman2025-03-2115-296/+1091
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * get context menu somewhat working ish * take screenshot rather than double rendering * get animations somewhat working * get transform animation working * rm log * upwards safe area * get working on android * get android working once and for all * fix positioning on both platforms * use dark blur on ios always, fix dark mode * allow closing with hardware back press * try and fix type error * add note about ts-ignore * round post * add image capture error handling * extract magic numbers * set explicit embed width, rm top margin * Message embed width tweaks * Format * fix position of embeds * same as above for web --------- Co-authored-by: Eric Bailey <git@esb.lol>
* Add eslint consistent type import rules (#8035)Samuel Newman2025-03-213-5/+966
| | | | | * add eslint-plugin-import * turn off eslint/no-usused-vars
* Nightly source-language updatepfrazee2025-03-211-20/+20
|
* blink: use meta for redirect (#8031)Hailey2025-03-203-3/+16
| | | | | | | | | * try using meta * color scheme * revert test change * escape
* blink: redirect on root route (#8029)Hailey2025-03-202-0/+16
| | | | | | | | | * make root route redirect to 301 * use config * end * add a comment
* Fix post thread item hider line height crop (#8028)Samuel Newman2025-03-203-4/+5
|
* Nightly source-language updatepfrazee2025-03-201-4/+4
|
* rm bad ref in render usage (#8024)Samuel Newman2025-03-191-14/+2
|
* Nightly source-language updatepfrazee2025-03-181-1/+1
|
* remove from iab (#8017)Hailey2025-03-171-2/+2
|
* remove .parse usage (#8016)Hailey2025-03-173-4/+4
| | | | | * remove .parse usage * add one more usage
* Don't poll for latest for Discover (#7993)Eric Bailey2025-03-171-1/+16
|
* Update i18n (#7992)Paul Frazee2025-03-1439-6442/+6328
| | | | | * Pull latest from crowdin * Run intl:extract:all
* A few good metrics (#7897)Eric Bailey2025-03-1416-334/+441
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Align dist and release tags on all platforms * Upload web sourcemaps * Debug code * Send debug and error logging to Sentry * Let .env do the work * Try straight env * Try copy in Dockerfile * Ok ok ok * Debug Dockerfile * Proper setup * See where we're at * Reference var correctly * Fall back to package version * Verbose force env * Should be working native builds * Comments * Remove unused deps * Revert unneeded changes * Remove debug code * Clarify intent * Remove deprecated files * Add sentry vars to OTA * Debug * Revert "Debug" This reverts commit 2d5857fb0fb0858ac3e2f98bc56bde913078d0a7. * Use included CLI to upload native source maps post-OTA build * Use included bin script See https://github.com/getsentry/sentry-react-native/commit/0d87adb516b2a5ea61353e25098c31f9aeb7e503 * Bump sentry, update script * Comment * fix failing CI * Pin sentry, update patch, update lock --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com>
* Fix missing RecordWithMedia media embed preview in notifications view (#7988)Eric Bailey2025-03-142-11/+20
|
* Add checks for invalid syntax post-i18n builds (#7935)Eric Bailey2025-03-144-5/+15
|
* Nightly source-language updatepfrazee2025-03-141-51/+51
|