aboutsummaryrefslogtreecommitdiffstats
path: root/src/app
Commit message (Collapse)AuthorAgeFilesLines
* feat: initialise a new totals tab with basic UI (#94)Anurag2024-02-286-0/+165
| | | | | | | | | | | | | | | * feat: initialise a new totals tab with basic UI * fix: update group tabs and add stats page * fix: styling within the new elements * Prettier * Display active user expenses only if active user is set --------- Co-authored-by: Sebastien Castiel <sebastien@castiel.me>
* Optimize docker image size (#91)Jan T2024-02-142-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Move prisma to runtime dependencies * Optimize Dockerfile and build script * Fix: remove mention of generated next-env.d.ts in Dockerfile * Add missing reset.d.ts file to Dockerfile * Remove compression steps from Dockerfile and entrypoint script * Add an env file with mocked env vars added for Docker production builds * Use server actions to get runtime env vars * Refactor types and names * Rollback serverActions, use parsed Zod object for runtime env * Reintroduce featureFlags object to avoid passing secret envs to the frontend * Improve string to boolean coercion Co-authored-by: Sebastien Castiel <sebastien@castiel.me> * Run prettier autoformat * Fix type issue, rename function to match behaviour better --------- Co-authored-by: Lauri Vuorela <lauri.vuorela@gmail.com> Co-authored-by: Sebastien Castiel <sebastien@castiel.me>
* Round totals rather than expense by expense (#88)Lauri Vuorela2024-02-131-2/+7
| | | | | | | | | * do balance rounding only on full balances rather than on every expense * use "public balances" calculated from reimbursements to show on balance page * fixes for totals that did not work as expected * prettier
* Limit file upload size on the client (#84)Sebastien Castiel2024-02-061-1/+14
|
* format currency with thousand separators (#81)Lauri Vuorela2024-02-044-11/+8
|
* Automatic category from expense title (#80)Mert Demir2024-02-042-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * environment variable * random category draft * get category from ai * input limit and documentation * use watch * use field.name * prettier * presigned upload, readme warning, category to string util * prettier * check whether feature is enabled * use process.env * improved prompt to return id only * remove console.debug * show loader * share class name * prettier * use template literals * rename format util * prettier
* Add splash screen for iOS PWASebastien Castiel2024-02-042-0/+100
|
* Update start_url to /groups page (#77)Raymond Berger2024-02-031-1/+1
|
* Support for additional S3 providers (#71)Mert Demir2024-01-311-0/+4
| | | | | | | | | * support for other s3 providers * remove redundant route options * use type safe env * prettier
* Improve receipt scanningSebastien Castiel2024-01-301-21/+46
|
* Create expense from receipt (#69)Sebastien Castiel2024-01-304-10/+340
| | | | | | | * Create expense from receipt * Add modal * Update README
* Use React’s cache to avoid some queries to the databaseSebastien Castiel2024-01-307-14/+37
|
* Fix uploaded image namesSebastien Castiel2024-01-291-2/+5
|
* Attach documents to expenses (#64)Sebastien Castiel2024-01-281-0/+8
| | | | | | | | | * Upload documents to receipts * Improve documents * Make the feature opt-in * Fix file name issue
* Improve recent groups designSebastien Castiel2024-01-262-2/+6
|
* Disable prefetch on export linkSebastien Castiel2024-01-261-0/+1
|
* Fix search functionality (#62)Vid Čufar2024-01-261-74/+68
| | | | | | | | | | * Improve README instructions for local setup * Fix search functionality #61 - use 'includes' for expense filtering * Ensure expense groups with no matching expenses are hidden after filtering * Improve README instructions for local setup
* Join group by URL (Closes #55)Sebastien Castiel2024-01-245-37/+180
|
* Upgrade Next.js to 14.1.0Sebastien Castiel2024-01-247-20/+30
|
* Fix image size to prevent warning in the consoleSebastien Castiel2024-01-231-2/+2
|
* Add date and bring back group name in exported filename (#54)Sebastien Castiel2024-01-231-1/+5
|
* Fix export file name (Fix #54)Sebastien Castiel2024-01-221-1/+1
|
* Added search bar for expense list page (#52)Ankit Bahl2024-01-191-73/+91
| | | | | | | | | * Added search bar for expense list page * Change search input styling --------- Co-authored-by: Sebastien Castiel <sebastien@castiel.me>
* Update GitHub repository URLSebastien Castiel2024-01-192-28/+2
|
* Bring back NEXT_PUBLIC_BASE_URL (continued)Sebastien Castiel2024-01-191-0/+2
|
* Bring back NEXT_PUBLIC_BASE_URLSebastien Castiel2024-01-192-13/+11
|
* Remove varianle NEXT_PUBLIC_BASE_URLSebastien Castiel2024-01-194-23/+27
|
* Clean project from marketing content (#50)Sebastien Castiel2024-01-193-192/+9
| | | | | * Clean project from marketing content * Remove some dependencies
* Merge feedback and support dialogsSebastien Castiel2024-01-182-8/+21
|
* Improve UI of expense listSebastien Castiel2024-01-173-6/+10
|
* Group expenses (#48)Brandon Eng2024-01-171-60/+117
| | | | | | | | | | | | | | | * Group expenses my date * Group expenses my date * typescript errors * prettier * getExpenseGroup * update logic to use dayjs * clean up
* Add GitHub actionsSebastien Castiel2024-01-161-2/+5
|
* Update contributorsSebastien Castiel2024-01-161-0/+6
|
* Ability to archive groups when they’re settled up (#45)Brandon Eng2024-01-166-175/+331
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Settled up icon on group card * remove logs * archived groups * remove settled up * remove more settled up * recent-group-list-card * sortGroups * archiveGroup * unarchiveGroup * clean up * more clean up * Prettier, fix TS errors, add titles --------- Co-authored-by: Sebastien Castiel <sebastien@castiel.me>
* Export group expenses as JSON (Closes #42)Sebastien Castiel2024-01-152-3/+47
|
* Add donation button (closes #40)Sebastien Castiel2024-01-141-28/+36
|
* Update home page & READMESebastien Castiel2024-01-111-0/+12
|
* Add category iconsSebastien Castiel2024-01-112-0/+149
|
* Assign categories to expenses (#28)Chris Johnston2024-01-112-3/+6
| | | | | | | | | | | | | * add expense categories * set category to Payment for reimbursements * Insert categories as part of the migration * Display category groups --------- Co-authored-by: Sebastien Castiel <sebastien@castiel.me>
* Update contributorsSebastien Castiel2024-01-111-1/+7
|
* Add contributors linkSebastien Castiel2024-01-111-0/+8
|
* Remove group (Fix #38)Sebastien Castiel2024-01-112-5/+76
|
* Improve design for expense listSebastien Castiel2024-01-102-13/+21
|
* Feedback buttonSebastien Castiel2024-01-092-3/+9
|
* Add contributors on home pageSebastien Castiel2024-01-091-2/+54
|
* Ask the user who they are when opening a group for the first time (#7)Sebastien Castiel2024-01-093-41/+187
|
* Add activeUser for default payer per group (#16)Ankit Bahl2024-01-091-1/+16
| | | | | | | | | * Add activeUser for default payer per group * Prettier, change labels, use useEffect --------- Co-authored-by: Sebastien Castiel <sebastien@castiel.me>
* Fix how dates are displayed (Fix #33)Sebastien Castiel2024-01-091-5/+9
|
* Mark a group as favorite (fixes #29)Sebastien Castiel2024-01-082-44/+124
|
* Add Expense Date (#26)Chris Johnston2024-01-082-2/+5
| | | | | | | | | | | | | * add expense date * Improve date formatting * Prettier * Change field description --------- Co-authored-by: Sebastien Castiel <sebastien@castiel.me>