aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Don’t count reimbursements in stats (fixes #118) (#119)HEADmainSebastien Castiel2024-02-291-2/+6
|
* Minor: reorder Dockerfile layers for better cache use (#116)Jan T2024-02-281-1/+2
|
* Fix the default value for the expense shares field (#113)sashkent32024-02-281-2/+5
| | | | | | | * fix default shares value * fix default shares value for reimbursements * prettier
* Fix decimal separator issue in numeric form fields (#115)Jan T2024-02-282-6/+22
| | | | | | | | | | | | | | | | | * Revert 5b65b8f, fix comma issue with type="text" and onChange * Fix comma issue in "paid for" input * Run prettier autoformat * Allow only digits and dots in currency inputs * Fix behaviour in paidFor field * Fix duplicated onChange prop --------- Co-authored-by: Sebastien Castiel <sebastien@castiel.me>
* add a prettier script for ease of use (#105)Lauri Vuorela2024-02-281-0/+1
|
* Add onClick-event to select all to amount input (#104)Lauri Vuorela2024-02-281-0/+1
| | | | | * add onfocus-event to select all to amount input * use onClick instead of onFocus
* feat: initialise a new totals tab with basic UI (#94)Anurag2024-02-288-0/+245
| | | | | | | | | | | | | | | * 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-1412-74/+143
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Add cancel button on expense form (fixes #92)Sebastien Castiel2024-02-142-7/+18
|
* Round totals rather than expense by expense (#88)Lauri Vuorela2024-02-132-6/+37
| | | | | | | | | * 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
* Replace commas with dots in expense form schema amount field (#90)Jan T2024-02-131-2/+4
|
* Limit file upload size on the client (#84)Sebastien Castiel2024-02-063-1/+41
|
* format currency with thousand separators (#81)Lauri Vuorela2024-02-045-11/+17
|
* Automatic category from expense title (#80)Mert Demir2024-02-048-15/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-315-10/+35
| | | | | | | | | * support for other s3 providers * remove redundant route options * use type safe env * prettier
* Improve receipt scanningSebastien Castiel2024-01-302-21/+151
|
* Create expense from receipt (#69)Sebastien Castiel2024-01-3010-518/+657
| | | | | | | * Create expense from receipt * Add modal * Update README
* Use React’s cache to avoid some queries to the databaseSebastien Castiel2024-01-308-15/+40
|
* Sort expenses by expense date, then by creation date (partial workaround for ↵Sebastien Castiel2024-01-291-1/+1
| | | | #67)
* Fix uploaded image namesSebastien Castiel2024-01-291-2/+5
|
* Use carousel to display images (fix dimensions)Sebastien Castiel2024-01-281-3/+3
|
* Use carousel to display imagesSebastien Castiel2024-01-284-28/+362
|
* Production target for Dockerfile (#57)Lauri Vuorela2024-01-284-11/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add production build * add back updates and use slim image * udpate command * ignore scripts * add workdir * fix workdirs * docker image improvements * use .example instead * use dummy data instead * remove unused env var and add comment * fix entrypoints * change name of script and add possibility for different commands * change to safer default for volume * add instructions for the dev docker container * update copy * add empty lines under topics to keep uniformity * most RUN's in a single command * add comment about volumes for dev target * remove dev workflow * remove dev workflow from readme * Prettify README --------- Co-authored-by: Sebastien Castiel <sebastien@castiel.me>
* Attach documents to expenses (#64)Sebastien Castiel2024-01-2815-26/+1942
| | | | | | | | | * 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-262-78/+72
| | | | | | | | | | * 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
* paid for all, split evenly (#59)Mert Demir2024-01-261-1/+5
|
* Join group by URL (Closes #55)Sebastien Castiel2024-01-245-37/+180
|
* Upgrade Next.js to 14.1.0Sebastien Castiel2024-01-2410-163/+1037
|
* 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-233-1/+45
|
* Fix export file name (Fix #54)Sebastien Castiel2024-01-221-1/+1
|
* Update FUNDING.ymlSebastien Castiel2024-01-191-1/+1
|
* Update README.mdSebastien Castiel2024-01-191-1/+4
|
* Update FUNDING.ymlSebastien Castiel2024-01-191-2/+2
|
* Update README.mdSebastien Castiel2024-01-191-0/+1
|
* Added search bar for expense list page (#52)Ankit Bahl2024-01-192-73/+124
| | | | | | | | | * 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-193-35/+9
|
* Bring back NEXT_PUBLIC_BASE_URL (continued)Sebastien Castiel2024-01-191-0/+2
|
* Bring back NEXT_PUBLIC_BASE_URLSebastien Castiel2024-01-193-13/+19
|
* Update README.mdSebastien Castiel2024-01-191-1/+1
|
* Add deploy with Vercel buttonSebastien Castiel2024-01-191-0/+2
|
* Remove varianle NEXT_PUBLIC_BASE_URLSebastien Castiel2024-01-198-27/+36
|
* Clean project from marketing content (#50)Sebastien Castiel2024-01-1912-1327/+25
| | | | | * Clean project from marketing content * Remove some dependencies
* Merge feedback and support dialogsSebastien Castiel2024-01-187-362/+316
|
* Fix mobile keyboard on shares field (Fix #49)Sebastien Castiel2024-01-181-2/+12
|
* Remove unused codeSebastien Castiel2024-01-181-9/+0
|