| Age | Commit message | Author | Files | +/- |
|---|---|---|---|---|
feat(mobile): make the settings menu look more native (#2307) …* feat(mobile): make the settings menu look more native * more fixes * review comments |
Mohamed Bassem | 5 | -103/+234 | |
| feat(mobile): Show shared lists under a subsection | Mohamed Bassem | 1 | -8/+66 | |
feat: add server version display to mobile app settings (#2276) …- Created useServerVersion hook to fetch server version from /api/version - Display both app version (from expo-constants) and server version - Added version info at the bottom of settings page - Server version shows loading state and handles errors gracefully Co-authored-by: Claude <noreply@anthropic.com> |
Mohamed Bassem | 2 | -0/+43 | |
feat: Add unified reader settings with local overrides (#2230) …* Add initial impl * fix some format inconsistencies, add indicator in user settings when local is out of sync * Fix sliders in user settings, unify constants and formatting * address CodeRabbit suggestions * add mobile implementation * address coderabbit nitpicks * fix responsiveness of the reader settings popover * Move more of the web UI strings to i18n * update translations for more coverage * remove duplicate logic/definitions * fix android font family * add shared reading setting hook between web and mobile * unify reader settings context for both web and mobile * remove unused export * address coderabbit suggestions * fix tests |
Evan Simkowitz | 30 | -199/+4866 | |
feat(mobile): Add highlights page to mobile app (#2156) …* feat: Add highlights page to mobile app This commit adds a new highlights page to the mobile app where users can view all their highlights with the following features: - HighlightCard component: Displays individual highlights with colored borders, text, optional notes, timestamps, and a link to the source bookmark - HighlightList component: Renders a scrollable list of highlights with pull-to-refresh and infinite scroll pagination - UpdatingHighlightList component: Handles data fetching using tRPC infinite queries with automatic cache invalidation - New /dashboard/highlights route with large header title - Added navigation link in Settings tab under "App Settings" All components follow the existing mobile app patterns and integrate with the existing highlights API. * make it a tab --------- Co-authored-by: Claude <noreply@anthropic.com> |
Mohamed Bassem | 4 | -1/+276 | |
feat(mobile): Add tags screen to mobile app (#2163) …* feat: Add tags screen to mobile app Add a new Tags tab to the mobile app that displays all tags sorted by usage. The screen includes: - Paginated tag list with infinite scroll - Display of tag names and bookmark counts - Pull-to-refresh functionality - Navigation to individual tag detail screens - Empty state and loading indicators This brings tag browsing functionality to the mobile app, similar to the existing Lists tab. * feat: Add search functionality to mobile tags screen Add a search input to the tags screen that allows users to filter tags by name. The search includes: - Debounced search input (300ms delay) to reduce API calls - Real-time filtering as the user types - Sort by relevance when searching, by usage when not searching - Smooth animated clear button This enhances the tags browsing experience by making it easy to find specific tags in a large collection. * format --------- Co-authored-by: Claude <noreply@anthropic.com> |
Mohamed Bassem | 2 | -1/+148 | |
feat(mobile): Add smart list creation in mobile app (#2153) …* feat: Add smart list creation and display in mobile app This commit adds support for creating and displaying smart lists in the mobile application: - Enhanced list creation screen to support both manual and smart list types - Added type selector with manual/smart toggle buttons - Implemented conditional search query input for smart lists - Added query validation to ensure smart lists have valid queries - Improved error handling to display validation errors from the backend - Added visual indicators (sparkle icon) for smart lists in the lists tab - Implemented smart list query display in list detail view with sparkle badge - Enhanced UI with contextual help text for smart list queries The implementation follows the web app pattern while adapting the UI for mobile best practices. * fixes --------- Co-authored-by: Claude <noreply@anthropic.com> |
Mohamed Bassem | 2 | -4/+69 | |
feat: display notes on bookmark card (#2083) …* feat: display notes on bookmark card * apply styling * include mobile impl * apply pr comments * add display options menu into PR * put it under app setting * cleanup * address pr comments * change the default for show notes to false * make the in-card note font lighter --------- Co-authored-by: Mohamed Bassem <me@mbassem.com> |
xuatz | 13 | -25/+268 | |
feat(mobile): Retheme the mobile app (#1872) …* Add nativewindui * migrate to nativewindui text * Replace buttons with nativewindui buttons * Use nativewindui search input * fix the divider color * More changes * fix manage tag icon * fix styling of bookmark card * fix ios compilation * fix search clear * fix tag pill border color * Store theme setting in app settings * fix setting color appearance * fix coloring of search input * fix following system theme * add a save button to info * fix the grey colors on android * fix icon active tint color * drop the use of TextField |
Mohamed Bassem | 47 | -433/+1991 | |
| fix(mobile): Fix image quality slider showing lots of decimal places. fixes… | Mohamed Bassem | 1 | -1/+1 | |
feat(mobile): Add user setting for default bookmark view mode (#1723) …* feat(mobile): add user setting for default bookmark view mode * regen db migration script * clean up implementation * Update docs/docs/07-Development/01-setup.md * Update GEMINI.md * use local setting instead of storing value in db * improve start-dev.sh to also handle for db migration * rename mobileBookmarkClickDefaultViewMode to defaultBookmarkView for consistency |
xuatz | 11 | -10/+214 | |
| chore: Rename hoarder packages to karakeep | MohamedBassem | 230 | -644/+654 | |
fix(mobile): margin for "Lists" tab content (#927) …* fix: left margin for list items * refactor: move type into func definition * fix: missing return type Co-authored-by: Joseph Chambers <5374985+imcodingideas@users.noreply.github.com> * style: remove trailing space --------- Co-authored-by: Joseph Chambers <5374985+imcodingideas@users.noreply.github.com> |
Daniel Vigaru | 2 | -1/+42 | |
| fix(mobile): useLayoutEffect for navigator changes | MohamedBassem | 4 | -12/+18 | |
| ui(mobile): Make page titles more native | MohamedBassem | 8 | -61/+67 | |
deps(mobile): Upgrade to Expo 52 (#692) …* fix(mobile): Sharing bookmark modal * WIP: Upgrade to 52 * post ugprade fixes * more fixes * fix padding in tabbar |
Mohamed Bassem | 15 | -4802/+3830 | |
ui(mobile): Replace bottom sheet with native screens (#690) …* Remove bottom sheet from bookmark info page * Remove bottom sheet from manage lists page * Remove bottom sheet from new list page * Remove bottom sheet from new bookmark page * Drop bottom-sheets * Improve the look of the modals * Make the search page fade from bottom |
Mohamed Bassem | 19 | -914/+746 | |
| ui(mobile): Remove the dedicated search page and add a search bar in home | MohamedBassem | 5 | -71/+88 | |
| fix(mobile): Drop the floating add button. Fixes #439 | MohamedBassem | 1 | -15/+3 | |
| fix(mobile): Fix some icon colors in dark mode | MohamedBassem | 3 | -4/+10 | |
| feature(mobile): Add settings page for configuring the theme | MohamedBassem | 5 | -11/+106 | |
| feature(mobile): Add proper error handling for server errors | MohamedBassem | 6 | -13/+58 | |
| feature(mobile): Add a floating button for quickly adding new bookmarks | MohamedBassem | 1 | -2/+8 | |
| feature(mobile): Allow configuring uploaded image quality in the mobile app | MohamedBassem | 6 | -12/+84 | |
| feature(mobile): Add ability to create basic lists from the app | MohamedBassem | 3 | -5/+111 | |
| ui(mobile): Merge the editors for notes and links | MohamedBassem | 3 | -32/+30 | |
| ui(mobile): Change the add/edit note editor dialogs to be bottom sheets | MohamedBassem | 5 | -125/+154 | |
| feature(mobile): Show server address in the settings | MohamedBassem | 1 | -1/+8 | |
| ui(mobile): Add horizontal margins to the bookmark cards | MohamedBassem | 4 | -3/+10 | |
| fix(mobile): Add a bigger button to collable the nested list | MohamedBassem | 1 | -6/+5 | |
| fix(mobile): Fix the color of the collapsible triangle to respect dark mode | MohamedBassem | 1 | -9/+15 | |
| feature(mobile): Add support for nested listed on mobile | MohamedBassem | 1 | -18/+89 | |
| mobile: Add dark mode support | MohamedBassem | 22 | -56/+188 | |
| format: Add missing lint and format, and format the entire repo | MohamedBassem | 57 | -192/+255 | |
| mobile(android): Getting the android app ready for submission | MohamedBassem | 19 | -43/+109 | |
| fix(mobile): Fix active tab tint color | MohamedBassem | 1 | -1/+5 | |
| fix(mobile): Fix setting propagatin | MohamedBassem | 11 | -135/+91 | |
| fix(mobile): Fix flicker on search | MohamedBassem | 8 | -70/+105 | |
Feature: Add support for uploading images and automatically inferring their… …* feature: Experimental support for asset uploads * feature(web): Add new bookmark type asset * feature: Add support for automatically tagging images * fix: Add support for image assets in preview page * use next Image for fetching the images * Fix auth and error codes in the route handlers * Add support for image uploads on mobile * Fix typing of upload requests * Remove the ugly dragging box * Bump mobile version to 1.3 * Change the editor card placeholder to mention uploading images * Fix a typo * Change ios icon for photo library * Silence typescript error |
Mohamed Bassem | 31 | -79/+2736 | |
| refactor: Prepare for pagination by dropping querying bookmarks by id | MohamedBassem | 16 | -100/+155 | |
| ui(mobile): New header style in the app | MohamedBassem | 12 | -114/+163 | |
| fix(mobile): Scroll to the top when the main tab is clicked | MohamedBassem | 3 | -9/+15 | |
| ui(mobile): Change the creation buttons to be under a menu | MohamedBassem | 2 | -12/+42 | |
| ui(mobile): Add a chevron to the list items in the list view | MohamedBassem | 1 | -1/+3 | |
| mobile: Revert the margins around the cards | MohamedBassem | 5 | -9/+7 | |
| lint: Lint and format the entire repo with the new configs | MohamedBassem | 122 | -411/+424 | |
| structure: Create apps dir and copy tooling dir from t3-turbo repo | MohamedBassem | 396 | -9511/+10350 |