Releases: kevinschaich/mintable
Logging Improvements
This release is a refactor to make logging easier and more consistent.
Instead of the old logging format:
Using config /home/travis/build/kevinschaich/mintable/mintable.config.json...
Fetching Account Balances...
Fetching Transactions...
Success! Fetched current sheets.
Success! 2019.04!A:G cleared.
Success! 2019.03!A:G cleared.
Success! 94 cells updated.
Success! 790 cells updated.
Success! 1951421725 sheet formatted.
Success! 1056284638 sheet formatted.
Success! 1951421725 columns resized.
Success! 1056284638 columns resized.
Done in 3.72s.
Now it will look much nicer & more consistent:
Using config /Users/kschaich/mintable/mintable.config.json.
✔ Fetching current config
✔ Fetching balance for account CHASE
✔ Fetching balance for account AMEX
✔ Fetching balance for account DISCOVER
✔ Fetching balances for accounts
✔ Fetching transactions for account CHASE
✔ Fetching transactions for account AMEX
✔ Fetching transactions for account DISCOVER
✔ Fetching transactions for accounts
✔ Fetching sheets for spreadsheet ID 1EJCWpP9rU5T0b5iXG7_UBdpFd8wBdZdxsucchJpR59k
✔ Clearing range 2019.04!A:G
✔ Clearing range 2019.03!A:G
✔ Updating cell ranges
✔ Updating cell ranges
✔ Formatting sheet 729699241
✔ Formatting sheet 4568723
✔ Resizing columns for sheet 729699241
✔ Resizing columns for sheet 4568723
View your spreadsheet at https://docs.google.com/spreadsheets/d/1EJCWpP9rU5T0b5iXG7_UBdpFd8wBdZdxsucchJpR59k
✨ Done in 21.33s.
Promises and failures are also handled in a more consistent way, and JSON requests and responses from Express are more consistent.
Fixes #22
Documentation Improvements
1.0.3 Bump package.json version
Bug fix for CATEGORY_OVERRIDES
This release fixes a small (and rare) bug.
If CATEGORY_OVERRIDES
was set before v1.0.0, scripts/migrate.js
would double-escape it and it gets interpreted at runtime as a string (not an object).
Fixes for CI Providers
v1.0.0
v1.0.0 of Mintable is here! 🎉
With it comes a massive refactor & overhaul of the onboarding experience. Say goodbye to configuring environment variables in the terminal, v1.0.0 brings in a fresh web-based configuration framework for authenticating with providers & changing settings.
To try it out, run
yarn setup
which will launch a web server & open a page in your web browser to walk you through the set-up.
Enjoy!
Initial Release 🍃
0.0.1 Expand on existing credits section in README, add alternatives and FA…