Giter Site home page Giter Site logo

vitalyvaryvdin / cashew Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jameskokoska/cashew

0.0 0.0 0.0 133.21 MB

๐Ÿ’ธ An app created to help users manage a budget and purchases

Home Page: https://cashewapp.web.app/

License: GNU General Public License v3.0

Ruby 0.04% Python 0.09% Objective-C 0.01% Kotlin 0.25% Dart 99.42% Swift 0.03% HTML 0.17% Batchfile 0.01%

cashew's Introduction

Cashew

Icon


Promo banner


Cashew is a full-fledged, feature-rich application designed to empower users in managing their finances effectively. Built using Flutter - with Drift's SQL package, and Firebase - this app offers a seamless and intuitive user experience across various devices. Development started in September 2021.


Features

Review Video

Cashew was featured on YouTube on 'The Best Apps of 2023!'


Review Video

Cashew was featured on YouTube on 'Top Android Apps! (November 2023)'


Play Store Feature

Cashew was featured on Google Play's Editorial 'New Apps We Love' (November 2023)!

Release

Check out the official website!

This application is available on the App Store, Google Play, GitHub and as a Web App (PWA).

Changelog

Changes and progress about development is all heavily documented in GitHub commits and in the changelog

Key Features

๐Ÿ’ธ Budget Management

  • Custom Budgets and Time Periods: Set up personalized budgets with flexible time periods, such as monthly, weekly, daily, or any custom time period that suits your financial planning needs. A custom time period is useful if you plan on setting a one-time travel budget!
  • Added Budgets: Selectively add transactions to specific budgets, allowing you to focus on specific expense categories.
  • Category Spending Limits per Budget: Set limits for each category within a budget, ensuring responsible spending.
  • Past Budget History Viewing: Analyze your spending habits over time by accessing past budget history, enabling comparison and tracking of financial progress.
  • Goals: Create spending and saving goals and put transactions towards different purchases or savings. Track your progress towards achieving your financial goals.

๐Ÿ’ฐ Transaction Management

  • Support for Different Transaction Types: Categorize transactions effectively based on types such as upcoming, subscription, repeating, debts (borrowed), and credit (lent). Each type behaves in certain ways in the interface. Pay your upcoming transactions when you're ready, or mark your lent out transactions as collected.
  • Custom Categories: Create personalized categories to organize transactions according to your unique spending habits. Search through multiple icons and select the default option as expenses or income when adding transactions.
  • Custom Titles: Automatically assign transactions with the same name to specific categories, saving time and ensuring consistency. These titles are stored in memory and popup when you add another transaction with a similar name.
  • Search and Filters: Easily search and filter transactions based on various criteria such as date, category, amount, or custom tags, enabling quick access to information.
  • Easy Editing: Long-press and swipe to select multiple budgets, edit accordingly as needed or delete multiple at once.

๐Ÿ’ฑ Financial Flexibility

  • Multiple Currencies and Accounts: Manage finances across different currencies and accounts with up-to-date conversion rates for accurate calculations and effortless currency conversions. The interface shows the original amount added and the converted amount to the selected account.
  • Switch Accounts and Currencies with Ease: On the homepage, easily select a different account and currency and everything will be converted automatically in an instant.

๐Ÿ”’ Enhanced Security and Accessibility

  • Biometric Lock: Secure budget data using biometric authentication, adding an extra layer of privacy.
  • Google Login: Conveniently log in to the app using your Google account, ensuring a streamlined and hassle-free authentication process.

๐ŸŽจ User Experience and Design

  • Material You Design: Enjoy a visually appealing and modern interface, following the principles of Material You design for a delightful user experience.
  • Custom Accent Color: Personalize the app by selecting a custom accent color that suits your style, or follow that of the system.
  • Light and Dark Mode: Seamlessly switch between light and dark themes to optimize visibility and reduce eye strain.
  • Customizable Home Screen: Tailor the home screen layout and widgets to display the financial information that matters most to you, providing a personalized and efficient dashboard.
  • Detailed Graph Visuals: Gain valuable insights into spending patterns through detailed and interactive graphs, visualizing financial data at a glance.
  • Beautiful Adaptive UI: A responsive user interface that adapts flawlessly to both web and mobile platforms, providing an immersive and consistent user experience across devices.

โ˜ Backup and Syncing

  • Cross-Device Sync: Keep budget data synchronized across all devices, ensuring access to financial information wherever you go.
  • Google Drive Backup: Safeguard budget data by utilizing Google Drive's backup functionality, allowing easy restoration of data if needed.
  • Discontinued: Budget Sharing (Alpha): Collaborate with family members, friends, or colleagues by sharing budgets, enabling collective tracking and management of shared expenses.

๐Ÿ’ฟ Smart Automation

  • Notifications: Stay informed about important financial events and receive timely reminders for budget goals, transactions, and upcoming due dates.
  • Import CSV Files: Seamlessly import financial data by uploading CSV files, facilitating a smooth transition from other applications or platforms.
  • Import Google Sheets: Seamlessly import Google Sheets tables, quickly importing many transactions from a spreadsheet.
  • Unsupported: Auto Email Transaction Parsing (Beta): Automatically parse transaction details from email receipts, making expense tracking effortless and efficient.

Bundled Packages

This repository contains, bundled in, modified versions of the discontinued packages listed below. They can be found in the folder /budget/packages

Translations

The translations are available here: https://docs.google.com/spreadsheets/d/1QQqt28cmrby6JqxLm-oxUXCuM3alniLJ6IRhcPJDOtk/edit?usp=sharing. If you would like to help translate, please reach out on email: [email protected]

To Update Translations

  1. Run budget\assets\translations\generate-translations.py
  2. Restart the application

Developer Notes

Pull Requests and Contributions

Unfortunately, I am currently not accepting contributions due to licensing and credits. Since this application turns some profits, I want to avoid any muddy water when it comes to compensation for contributions. You are free to submit an issue and I can consider it!

Android Release

  • To build an app-bundle Android release, run flutter build appbundle --release

Note: required Android SDK.

iOS Release

  • To build an IPA iOS release, run flutter build ipa

Note: requires MacOS.

Firebase Deployment

  • To deploy to firebase, run firebase deploy

Note: required Firebase.

GitHub release

Scripts

deploy_and_build_windows.bat

  • Deploy to Firebase and build the apk and appbundle

open_release_builds.bat

  • Opens the location of the built apk and appbundle

update_translations.bat

  • Downloads the latest version of Cashew translations. Runs budget\assets\translations\generate-translations.py

Develop Wirelessly on Android

  • adb tcpip 5555
  • adb connect <IP>
  • Get the phone's IP by going to About Phone > Status Information > IP Address

Migrate Database

  1. Make any database changes to the schema and tables
  2. Bump the schema version
    • Change int schemaVersionGlobal = ...+1 in tables.dart
  3. Make sure you are in application root directory
    • cd .\budget\
  4. Generate database code
    • Run dart run build_runner build
  5. Export the new schema
  6. Generate step-by-step migrations
    • Run dart run drift_dev schema steps drift_schemas/ lib\database\schema_versions.dart
  7. Implement migration strategy
    • Edit await stepByStep(...) function in tables.dart and add the migration strategy for the new version migration

Get Platform

  • Use getPlatform() from functions.dart
  • Since Platform is not supported on web, we must create a wrapper and always use this to determine the current platform

Push Route

  • If we want to navigate to a new page, stick to pushRoute(context, page) function from functions.dart
  • It handles the platform routing and PageRouteBuilder

Wallets vs. Accounts

  • Wallets have been been renamed to Accounts on the front-end but internally, the name Wallet is still used.

Objectives vs. Goals

  • Objectives have been been renamed to Goals on the front-end but internally, the name Objectives is still used.

Long Term Loans

  • Long term loans create a goal. However, the goals total is not used. Instead the total of the goal is calculated by totalling the proper polarity of transactions of the opposite type. For example, if it was a loan of 100$ lent out, the initial transaction would be 100$ of negative polarity (expense) and that would be the total of the goal. When a payment is made, it is made in the opposite (positive) polarity (income) and added to the total 'paid back'. We can easily find how much is remaining by taking the difference (or the addition including polarities).

cashew's People

Contributors

jameskokoska avatar yuying-liang avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.