about summary refs log tree commit diff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Switch to react-native default animation tools for composer and post controlsPaul Frazee2022-12-064-59/+103
|
* Fix mention-creation and implement mentions in notificationsPaul Frazee2022-12-063-4/+22
|
* Better empty state in profilesPaul Frazee2022-12-061-1/+7
|
* Ensure all feed views can refreshPaul Frazee2022-12-062-28/+49
|
* Add build version to menuPaul Frazee2022-12-063-3/+15
|
* Add context to replies when appearing in the feedPaul Frazee2022-12-064-40/+140
|
* Implement terms-of-service and privacy-policy links in signupPaul Frazee2022-12-062-0/+66
|
* Update API buildPaul Frazee2022-12-0665-11598/+3804
|
* Upload profile image (#29)João Ferreiro2022-12-065-16/+269
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add editable button profile picture * add editable button cover picture * upload profile photos (save them locally) * rollback pbxproj changes * rollback podfile checksum (for git only) * move edit photos onto edit profile modal * adjust edit icon and image cropping size * added temporary (react state) image * added IMAGES_ENABLED flag * minor lint fix * save local photos on edit profile upload (wip) * save profile photos on profile view state (wip) * remove unecessary computed * save photo in state before pushing it to viewmodel * refactor profile pictures's state * remove unnecessary isMe prop * removing old comments * tweak icon size & position * A few styling tweaks and a fix to mobx state management Co-authored-by: Paul Frazee <pfrazee@gmail.com>
* Fix to unicode zero-width characters in expanded postsPaul Frazee2022-12-061-1/+0
|
* Never allow undefined values in me modelPaul Frazee2022-12-061-12/+12
|
* Rework the 'main menu' to be a screen that's always in historyPaul Frazee2022-12-067-379/+300
|
* Enlarge the small emoji-only repliesPaul Frazee2022-12-051-0/+7
|
* Dismiss keyboard in search on scrollPaul Frazee2022-12-051-3/+12
|
* Add 'copy post text' toolPaul Frazee2022-12-056-0/+32
|
* Better sized and more informative character counterPaul Frazee2022-12-053-28/+24
|
* Switch to System font to fix emoji renderingPaul Frazee2022-12-054-13/+3
|
* Fix: never attempt update on 0 itemsPaul Frazee2022-12-052-0/+6
|
* Increase touch-size of the 'load new posts' buttonPaul Frazee2022-12-051-1/+6
|
* Ensure the UI always renders, even in bad network conditions (close #6)Paul Frazee2022-12-0513-72/+259
|
* Merge branch 'upload-image' into mainPaul Frazee2022-12-052-8/+12
|\
| * Hide images behind a build flag until readyPaul Frazee2022-12-022-8/+12
| |
| * CleanupPaul Frazee2022-12-022-13/+11
| |
| * moving placeholder conditionJoão Ferreiro2022-11-291-7/+7
| |
| * crop every photo;João Ferreiro2022-11-292-29/+72
| | | | | | | | make use of useCallback
| * react-hooks/exhaustive-deps fixesJoão Ferreiro2022-11-291-7/+4
| |
| * use runInAction in getPhotos modelJoão Ferreiro2022-11-292-12/+9
| |
| * change post test with photo attached;João Ferreiro2022-11-291-1/+7
| | | | | | | | remove auto linking settings
| * Merge branch 'main' into upload-imageJoão Ferreiro2022-11-292-15/+32
| |\
| * | fix typescript issue; force mediatype photoJoão Ferreiro2022-11-291-12/+17
| | |
| * | fixing add photo using cameraJoão Ferreiro2022-11-291-1/+4
| | |
| * | move show carousel out of the componentJoão Ferreiro2022-11-293-13/+11
| | |
| * | Merge branch 'main' into upload-imageJoão Ferreiro2022-11-292-7/+5
| |\ \
| * | | further refactoring code into different componentsJoão Ferreiro2022-11-293-154/+147
| | | |
| * | | reafctor image carousel into new component;João Ferreiro2022-11-292-169/+220
| | | | | | | | | | | | | | | | fix photo overlapping text in composer
| * | | Merge branch 'main' into upload-imageJoão Ferreiro2022-11-2916-137/+255
| |\ \ \
| * \ \ \ Merge branch 'main' into upload-imageJoão Ferreiro2022-11-2824-428/+396
| |\ \ \ \
| * | | | | upload images in composer v1João Ferreiro2022-11-283-3/+209
| | | | | |
* | | | | | Remove loading-placeholder animation; according to some issues, animated ↵Paul Frazee2022-12-051-45/+6
| | | | | | | | | | | | | | | | | | | | | | | | linear-gradients may cause crashes
* | | | | | Fix 'swipe back to nothing' bugPaul Frazee2022-12-051-0/+1
| | | | | |
* | | | | | Make 'backswipe' a little easier to triggerPaul Frazee2022-12-051-2/+2
| | | | | |
* | | | | | Enlarge click targets for post controls and view headerPaul Frazee2022-12-053-6/+27
| | | | | |
* | | | | | Upload image in composer (#27)João Ferreiro2022-12-025-9/+304
| |_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upload images in composer v1 * fix android compile * reafctor image carousel into new component; fix photo overlapping text in composer * revert android changes * further refactoring code into different components * move show carousel out of the component * fixing add photo using camera * fix typescript issue; force mediatype photo * change post test with photo attached; remove auto linking settings * use runInAction in getPhotos model * react-hooks/exhaustive-deps fixes * crop every photo; make use of useCallback * moving placeholder condition * Cleanup Co-authored-by: Paul Frazee <pfrazee@gmail.com>
* | | | | Improvements to link and mention detection regarding surrounding punctuationPaul Frazee2022-11-291-8/+30
| | | | |
* | | | | Relax the requirement that post entities match their valuePaul Frazee2022-11-291-7/+2
| |_|_|/ |/| | |
* | | | Decode html entities in link embedsPaul Frazee2022-11-292-7/+5
| |_|/ |/| |
* | | Improve handling of deleted postsPaul Frazee2022-11-288-60/+93
| | |
* | | Fixes to edit profile modalPaul Frazee2022-11-282-2/+8
| | |
* | | Fix jank in notifications loading-state renderingPaul Frazee2022-11-281-1/+1
| | |
* | | Use a persistent notifications model to improve load times of the ↵Paul Frazee2022-11-284-41/+49
| | | | | | | | | | | | notifications view